Skip to content
Extraits de code Groupes Projets
Valider 870ad3d9 rédigé par Dennis Collinson's avatar Dennis Collinson
Parcourir les fichiers

DC DG; some fixes, mentioning works.

parent 51332931
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -54,8 +54,7 @@ app.views.Publisher = Backbone.View.extend({ ...@@ -54,8 +54,7 @@ app.views.Publisher = Backbone.View.extend({
// close publishing area (CSS) // close publishing area (CSS)
this.close(); this.close();
// clear mentions (TO BE REMOVED!!) Publisher.clear()
Publisher.autocompletion.mentionList.clear()
return this; return this;
}, },
......
var Mentions = { var Mentions = {
initialize: function(mentionsInput) { initialize: function(mentionsInput) {
mentionsInput.mentionsInput(Mentions.options); mentionsInput.mentionsInput(Mentions.options);
Mentions.fetchContacts();
},
fetchContacts : function(){
$.getJSON($(".selected_contacts_link").attr("href"), function(data) { $.getJSON($(".selected_contacts_link").attr("href"), function(data) {
Mentions.contacts = data; Mentions.contacts = data;
}); });
......
...@@ -5,39 +5,22 @@ ...@@ -5,39 +5,22 @@
//TODO: make this a widget //TODO: make this a widget
var Publisher = { var Publisher = {
bookmarklet : false, bookmarklet : false,
cachedForm : false,
form: function(){ form: function(){
if(!Publisher.cachedForm){ return Publisher.cachedForm = Publisher.cachedForm || $('#publisher');
Publisher.cachedForm = $('#publisher');
}
return Publisher.cachedForm;
}, },
cachedInput : false,
input: function(){ input: function(){
if(!Publisher.cachedInput){ return Publisher.cachedInput = Publisher.cachedInput || Publisher.form().find('#status_message_fake_text');
Publisher.cachedInput = Publisher.form().find('#status_message_fake_text');
}
return Publisher.cachedInput;
}, },
cachedHiddenInput : false,
hiddenInput: function(){ hiddenInput: function(){
if(!Publisher.cachedHiddenInput){ return Publisher.cachedHiddenInput= Publisher.cachedHiddenInput || Publisher.form().find('#status_message_text');
Publisher.cachedHiddenInput = Publisher.form().find('#status_message_text');
}
return Publisher.cachedHiddenInput;
}, },
cachedSubmit : false,
submit: function(){ submit: function(){
if(!Publisher.cachedSubmit){ return Publisher.cachedSubmit = Publisher.cachedSubmit || Publisher.form().find('#status_message_submit');
Publisher.cachedSubmit = Publisher.form().find('#status_message_submit');
}
return Publisher.cachedSubmit;
}, },
determineSubmitAvailability: function(){ determineSubmitAvailability: function(){
...@@ -54,7 +37,8 @@ var Publisher = { ...@@ -54,7 +37,8 @@ var Publisher = {
clear: function(){ clear: function(){
$("#photodropzone").find('li').remove(); $("#photodropzone").find('li').remove();
Publisher.input().removeClass("with_attachments") Publisher.input()
.removeClass("with_attachments")
.css('paddingBottom', '') .css('paddingBottom', '')
.mentionsInput("reset"); .mentionsInput("reset");
}, },
...@@ -165,16 +149,21 @@ var Publisher = { ...@@ -165,16 +149,21 @@ var Publisher = {
Publisher.toggleAspectIds(li); Publisher.toggleAspectIds(li);
}); });
}, },
beforeSubmit: function(){ beforeSubmit: function(){
if($("#publisher .content_creation form #aspect_ids_").length == 0){ if($("#publisher .content_creation form #aspect_ids_").length == 0){
alert(Diaspora.I18n.t('publisher.at_least_one_aspect')); alert(Diaspora.I18n.t('publisher.at_least_one_aspect'));
return false; return false;
} }
},
keyUp : function(){
Publisher.determineSubmitAvailability()
Publisher.input().mentionsInput("val", function(value) { Publisher.input().mentionsInput("val", function(value) {
Publisher.hiddenInput().val(value); Publisher.hiddenInput().val(value);
}); });
}, },
onSubmit: function(data, json, xhr){ onSubmit: function(data, json, xhr){
$("#photodropzone").find('li').remove(); $("#photodropzone").find('li').remove();
Publisher.input().removeClass("with_attachments").css('paddingBottom', ''); Publisher.input().removeClass("with_attachments").css('paddingBottom', '');
...@@ -217,8 +206,8 @@ var Publisher = { ...@@ -217,8 +206,8 @@ var Publisher = {
//Stream.setUpImageLinks(); //Stream.setUpImageLinks();
Stream.setUpAudioLinks(); Stream.setUpAudioLinks();
}, },
bindAjax: function(){ bindAjax: function(){
//Publisher.form().bind('submit', Publisher.beforeSubmit);
Publisher.form().bind('ajax:loading', Publisher.onSubmit); Publisher.form().bind('ajax:loading', Publisher.onSubmit);
Publisher.form().bind('ajax:failure', Publisher.onFailure); Publisher.form().bind('ajax:failure', Publisher.onFailure);
Publisher.form().bind('ajax:success', Publisher.onSuccess); Publisher.form().bind('ajax:success', Publisher.onSuccess);
...@@ -277,10 +266,7 @@ var Publisher = { ...@@ -277,10 +266,7 @@ var Publisher = {
} }
Publisher.input().autoResize({'extraSpace' : 10}); Publisher.input().autoResize({'extraSpace' : 10});
Publisher.input().keyup(Publisher.keyUp)
Publisher.form().find("textarea").bind("focus", function(evt) {
Publisher.open();
});
} }
}; };
......
...@@ -174,259 +174,4 @@ describe("Publisher", function() { ...@@ -174,259 +174,4 @@ describe("Publisher", function() {
expect(Publisher.input().length).toBe(1); expect(Publisher.input().length).toBe(1);
}); });
}); });
describe("autocompletion", function(){
describe("searchTermFromValue", function(){
beforeEach(function(){
this.func = Publisher.autocompletion.searchTermFromValue;
});
it("returns nothing if the cursor is before the @", function(){
expect(this.func('not @dan grip', 2)).toBe('');
});
it("returns everything up to the cursor if the cursor is a word after that @", function(){
expect(this.func('not @dan grip', 13)).toBe('dan grip');
});
it("returns up to the cursor if the cursor is after that @", function(){
expect(this.func('not @dan grip', 7)).toBe('da');
});
it("returns everything after an @ at the start of the line", function(){
expect(this.func('@dan grip', 9)).toBe('dan grip');
});
it("returns nothing if there is no @", function(){
expect(this.func('dan', 3)).toBe('');
});
it("returns nothing for just an @", function(){
expect(this.func('@', 1)).toBe('');
});
it("returns nothing if there are letters preceding the @", function(){
expect(this.func('ioj@asdo', 8)).toBe('');
});
it("returns everything up to the cursor if there are 2 @s and the cursor is between them", function(){
expect(this.func('@asdpo aoisdj @asodk', 8)).toBe('asdpo');
});
it("returns everything from the 2nd @ up to the cursor if there are 2 @s and the cursor after them", function(){
expect(this.func('@asod asdo @asd asok', 15)).toBe('asd');
});
});
describe("mentionList", function(){
beforeEach(function(){
spec.loadFixture('aspects_index');
this.list = Publisher.autocompletion.mentionList;
this.visibleInput = Publisher.input();
this.hiddenInput = Publisher.hiddenInput();
this.mention = { visibleStart : 0,
visibleEnd : 5,
mentionString : "@{Danny; dan@pod.org}"
};
this.list.mentions = [];
this.list.push(this.mention);
this.visibleVal = "Danny loves testing javascript";
this.visibleInput.val(this.visibleVal);
this.hiddenVal = "@{Danny; dan@pod.org} loves testing javascript";
this.hiddenInput.val(this.hiddenVal);
});
describe("selectionDeleted", function(){
beforeEach(function(){
this.func = this.list.selectionDeleted;
this.visibleVal = "Danny Daniel David Darren";
this.visibleInput.val(this.visibleVal);
this.list.mentions = [];
this.danny = {
visibleStart : 0,
visibleEnd : 5,
mentionString : "@{Danny; danny@pod.org}"
};
this.daniel = {
visibleStart : 6,
visibleEnd : 12,
mentionString : "@{Daniel; daniel@pod.org}"
};
this.david = {
visibleStart : 13,
visibleEnd : 18,
mentionString : "@{David; david@pod.org}"
};
this.darren = {
visibleStart : 19,
visibleEnd : 25,
mentionString : "@{Darren; darren@pod.org}"
};
_.each([this.danny, this.daniel, this.david, this.darren], function(person){
this.list.push(person);
}, this);
});
it("destroys mentions within the selection", function(){
this.func(4,11);
expect(this.list.sortedMentions()).toEqual([this.darren, this.david])
});
it("moves remaining mentions back", function(){
this.func(7,14);
var length = 11 - 4;
expect(this.danny.visibleStart).toBe(0);
expect(this.darren.visibleStart).toBe(19-length);
});
});
describe("generateHiddenInput", function(){
it("replaces mentions in a string", function(){
expect(this.list.generateHiddenInput(this.visibleVal)).toBe(this.hiddenVal);
});
});
describe("push", function(){
it("adds mention to mentions array", function(){
expect(this.list.mentions.length).toBe(1);
expect(this.list.mentions[0]).toBe(this.mention)
});
});
describe("mentionAt", function(){
it("returns the location of the mention at that location in the mentions array", function(){
expect(this.list.mentions[this.list.mentionAt(3)]).toBe(this.mention);
});
it("returns null if there is no mention", function(){
expect(this.list.mentionAt(8)).toBeFalsy();
});
});
describe("insertionAt", function(){
it("does nothing if there is no visible mention at that index", function(){
this.list.insertionAt(8);
expect(this.visibleInput.val()).toBe(this.visibleVal);
expect(this.hiddenInput.val()).toBe(this.hiddenVal);
});
it("deletes the mention from the hidden field if there is a mention", function(){
this.list.insertionAt(3);
expect(this.visibleInput.val()).toBe(this.visibleVal);
expect(this.list.generateHiddenInput(this.visibleInput.val())).toBe(this.visibleVal);
});
it("deletes the mention from the list", function(){
this.list.insertionAt(3);
expect(this.list.mentionAt(3)).toBeFalsy();
});
it("calls updateMentionLocations", function(){
mentionTwo = { visibleStart : 8,
visibleEnd : 15,
mentionString : "@{SomeoneElse; other@pod.org}"
};
this.list.push(mentionTwo);
spyOn(this.list, 'updateMentionLocations');
this.list.insertionAt(3,4, 60);
expect(this.list.updateMentionLocations).toHaveBeenCalled();
});
});
describe("updateMentionLocations", function(){
it("updates the offsets of the remaining mentions in the list", function(){
mentionTwo = { visibleStart : 8,
visibleEnd : 15,
mentionString : "@{SomeoneElse; other@pod.org}"
};
this.list.push(mentionTwo);
this.list.updateMentionLocations(7, 1);
expect(mentionTwo.visibleStart).toBe(9);
expect(mentionTwo.visibleEnd).toBe(16);
});
});
});
describe("keyUpHandler", function(){
beforeEach(function(){
spec.loadFixture('aspects_index');
Publisher.initialize();
this.input = Publisher.input();
this.submit = Publisher.submit();
Publisher.open();
});
it("keep the share button disabled when adding only whitespaces", function(){
expect(this.submit.attr('disabled')).toBeTruthy();
this.input.val(' ');
this.input.keyup();
expect(this.submit.attr('disabled')).toBeTruthy();
});
it("enable the share button when adding non-whitespace characters", function(){
expect(this.submit.attr('disabled')).toBeTruthy();
this.input.val('some text');
this.input.keyup();
expect(this.submit.attr('disabled')).toBeFalsy();
});
it("should toggle share button disable/enable when playing with input", function(){
expect(this.submit.attr('disabled')).toBeTruthy();
this.input.val(' ');
this.input.keyup();
expect(this.submit.attr('disabled')).toBeTruthy();
this.input.val('text');
this.input.keyup();
this.expect(this.submit.attr('disabled')).toBeFalsy();
this.input.val('');
this.input.keyup();
expect(this.submit.attr('disabled')).toBeTruthy();
});
});
describe("addMentionToInput", function(){
beforeEach(function(){
spec.loadFixture('aspects_index');
this.func = Publisher.autocompletion.addMentionToInput;
this.input = Publisher.input();
this.replaceWith = "Replace with this.";
Publisher.autocompletion.mentionList.mentions = [];
});
it("replaces everything up to the cursor if the cursor is a word after that @", function(){
this.input.val('not @dan grip');
var cursorIndex = 13;
this.func(this.input, cursorIndex, this.replaceWith);
expect(this.input.val()).toBe('not ' + this.replaceWith);
});
it("replaces everything between @ and the cursor if the cursor is after that @", function(){
this.input.val('not @dan grip');
var cursorIndex = 7;
this.func(this.input, cursorIndex, this.replaceWith);
expect(this.input.val()).toBe('not ' + this.replaceWith + 'n grip');
});
it("replaces everything up to the cursor from @ at the start of the line", function(){
this.input.val('@dan grip');
var cursorIndex = 9;
this.func(this.input, cursorIndex, this.replaceWith);
expect(this.input.val()).toBe(this.replaceWith);
});
it("replaces everything between the first @ and the cursor if there are 2 @s and the cursor is between them", function(){
this.input.val('@asdpo aoisdj @asodk');
var cursorIndex = 8;
this.func(this.input, cursorIndex, this.replaceWith);
expect(this.input.val()).toBe(this.replaceWith + 'aoisdj @asodk');
});
it("replaces everything after the 2nd @ if there are 2 @s and the cursor after them", function(){
this.input.val('@asod asdo @asd asok');
var cursorIndex = 15;
this.func(this.input, cursorIndex, this.replaceWith);
expect(this.input.val()).toBe('@asod asdo ' + this.replaceWith + ' asok');
});
});
});
}); });
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
# - dist/**/*.js # - dist/**/*.js
# #
src_files: src_files:
- public/javascripts/vendor/underscore.js
- public/javascripts/vendor/jquery-1.7.1.min.js - public/javascripts/vendor/jquery-1.7.1.min.js
- public/javascripts/vendor/jquery-ui-1.8.9.custom.min.js - public/javascripts/vendor/jquery-ui-1.8.9.custom.min.js
- public/javascripts/vendor/bootstrap/bootstrap-popover.js - public/javascripts/vendor/bootstrap/bootstrap-popover.js
...@@ -20,11 +21,11 @@ src_files: ...@@ -20,11 +21,11 @@ src_files:
- public/javascripts/vendor/jquery.autoresize.js - public/javascripts/vendor/jquery.autoresize.js
- public/javascripts/vendor/jquery.expander.js - public/javascripts/vendor/jquery.expander.js
- public/javascripts/vendor/jquery.charcount.js - public/javascripts/vendor/jquery.charcount.js
- public/javascripts/vendor/jquery.mentionsInput.js
- public/javascripts/vendor/timeago.js - public/javascripts/vendor/timeago.js
- public/javascripts/vendor/facebox.js - public/javascripts/vendor/facebox.js
- public/javascripts/vendor/markdown/* - public/javascripts/vendor/markdown/*
- public/javascripts/jquery.infieldlabel-custom.js - public/javascripts/jquery.infieldlabel-custom.js
- public/javascripts/vendor/underscore.js
- public/javascripts/vendor/backbone.js - public/javascripts/vendor/backbone.js
- public/javascripts/vendor/handlebars-1.0.0.beta.6.js - public/javascripts/vendor/handlebars-1.0.0.beta.6.js
- public/javascripts/fileuploader-custom.js - public/javascripts/fileuploader-custom.js
...@@ -50,6 +51,7 @@ src_files: ...@@ -50,6 +51,7 @@ src_files:
- public/javascripts/mobile.js - public/javascripts/mobile.js
- public/javascripts/contact-list.js - public/javascripts/contact-list.js
- public/javascripts/view.js - public/javascripts/view.js
- public/javascripts/mentions.js
- public/javascripts/publisher.js - public/javascripts/publisher.js
- public/javascripts/stream.js - public/javascripts/stream.js
- public/javascripts/validation.js - public/javascripts/validation.js
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter