Merge branch 'fixes-topic-title-length-too-short' of git://github.com/ZogStriP/discourse
Conflicts: app/assets/javascripts/discourse/controllers/composer_controller.js app/assets/javascripts/discourse/views/composer_view.js config/locales/client.en.yml
This commit is contained in:
commit
1a60301a17
|
@ -18,11 +18,13 @@ Discourse.ComposerController = Discourse.Controller.extend({
|
||||||
this.get('content').importQuote();
|
this.get('content').importQuote();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
resetDraftStatus: function() {
|
||||||
|
this.get('content').resetDraftStatus();
|
||||||
|
},
|
||||||
|
|
||||||
appendText: function(text) {
|
appendText: function(text) {
|
||||||
var c = this.get('content');
|
var c = this.get('content');
|
||||||
if (c) {
|
if (c) return c.appendText(text);
|
||||||
c.appendText(text);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
save: function(force) {
|
save: function(force) {
|
||||||
|
@ -91,6 +93,7 @@ Discourse.ComposerController = Discourse.Controller.extend({
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
closeEducation: function() {
|
closeEducation: function() {
|
||||||
this.set('educationClosed', true);
|
this.set('educationClosed', true);
|
||||||
},
|
},
|
||||||
|
@ -161,6 +164,7 @@ Discourse.ComposerController = Discourse.Controller.extend({
|
||||||
Discourse.Topic.findSimilarTo(title, body).then(function (topics) {
|
Discourse.Topic.findSimilarTo(title, body).then(function (topics) {
|
||||||
composerController.set('similarTopics', topics);
|
composerController.set('similarTopics', topics);
|
||||||
});
|
});
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
saveDraft: function() {
|
saveDraft: function() {
|
||||||
|
|
|
@ -28,7 +28,7 @@ Discourse.Composer = Discourse.Model.extend({
|
||||||
this._super();
|
this._super();
|
||||||
var val = Discourse.KeyValueStore.get('composer.showPreview') || 'true';
|
var val = Discourse.KeyValueStore.get('composer.showPreview') || 'true';
|
||||||
this.set('showPreview', val === 'true');
|
this.set('showPreview', val === 'true');
|
||||||
return this.set('archetypeId', Discourse.get('site.default_archetype'));
|
this.set('archetypeId', Discourse.get('site.default_archetype'));
|
||||||
},
|
},
|
||||||
|
|
||||||
creatingTopic: (function() {
|
creatingTopic: (function() {
|
||||||
|
@ -142,10 +142,7 @@ Discourse.Composer = Discourse.Model.extend({
|
||||||
}).property('action', 'post', 'topic', 'topic.title'),
|
}).property('action', 'post', 'topic', 'topic.title'),
|
||||||
|
|
||||||
toggleText: (function() {
|
toggleText: (function() {
|
||||||
if (this.get('showPreview')) {
|
return this.get('showPreview') ? Em.String.i18n('composer.hide_preview') : Em.String.i18n('composer.show_preview');
|
||||||
return Em.String.i18n('composer.hide_preview');
|
|
||||||
}
|
|
||||||
return Em.String.i18n('composer.show_preview');
|
|
||||||
}).property('showPreview'),
|
}).property('showPreview'),
|
||||||
|
|
||||||
hidePreview: (function() {
|
hidePreview: (function() {
|
||||||
|
@ -159,14 +156,11 @@ Discourse.Composer = Discourse.Model.extend({
|
||||||
if (this.get('loading')) return true;
|
if (this.get('loading')) return true;
|
||||||
|
|
||||||
// Title is required on new posts
|
// Title is required on new posts
|
||||||
if (this.get('creatingTopic')) {
|
if (this.get('creatingTopic') && this.get('titleLength') < Discourse.SiteSettings.min_topic_title_length) return true;
|
||||||
if (this.blank('title')) return true;
|
|
||||||
if (this.get('title').trim().length < Discourse.SiteSettings.min_topic_title_length) return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Otherwise just reply is required
|
// Otherwise just reply is required
|
||||||
if (this.blank('reply')) return true;
|
if (this.get('replyLength') < Discourse.SiteSettings.min_post_length) return true;
|
||||||
if (this.get('reply').trim().length < Discourse.SiteSettings.min_post_length) return true;
|
|
||||||
return false;
|
return false;
|
||||||
}).property('reply', 'title', 'creatingTopic', 'loading'),
|
}).property('reply', 'title', 'creatingTopic', 'loading'),
|
||||||
|
|
||||||
|
@ -434,6 +428,7 @@ Discourse.Composer = Discourse.Model.extend({
|
||||||
saveDraft: function() {
|
saveDraft: function() {
|
||||||
if (this.get('disableDrafts')) return;
|
if (this.get('disableDrafts')) return;
|
||||||
if (!this.get('reply')) return;
|
if (!this.get('reply')) return;
|
||||||
|
if (this.get('titleLength') < Discourse.SiteSettings.min_topic_title_length) return;
|
||||||
if (this.get('replyLength') < Discourse.SiteSettings.min_post_length) return;
|
if (this.get('replyLength') < Discourse.SiteSettings.min_post_length) return;
|
||||||
|
|
||||||
var data = {
|
var data = {
|
||||||
|
@ -453,28 +448,38 @@ Discourse.Composer = Discourse.Model.extend({
|
||||||
return Discourse.Draft.save(this.get('draftKey'), this.get('draftSequence'), data).then((function() {
|
return Discourse.Draft.save(this.get('draftKey'), this.get('draftSequence'), data).then((function() {
|
||||||
composer.set('draftStatus', Em.String.i18n('composer.saved_draft_tip'));
|
composer.set('draftStatus', Em.String.i18n('composer.saved_draft_tip'));
|
||||||
}), (function() {
|
}), (function() {
|
||||||
composer.set('draftStatus', 'drafts offline');
|
composer.set('draftStatus', Em.String.i18n('composer.drafts_offline'));
|
||||||
}));
|
}));
|
||||||
},
|
},
|
||||||
|
|
||||||
resetDraftStatus: (function() {
|
resetDraftStatus: (function() {
|
||||||
var len = Discourse.SiteSettings.min_post_length,
|
// 'title' is focused
|
||||||
replyLength = this.get('replyLength');
|
if ($('#reply-title').is(':focus')) {
|
||||||
|
var titleDiff = Discourse.SiteSettings.min_topic_title_length - this.get('titleLength');
|
||||||
if (replyLength === 0) {
|
if (titleDiff > 0) {
|
||||||
this.set('draftStatus', Em.String.i18n('composer.min_length.at_least', { n: len }));
|
return this.set('draftStatus', Em.String.i18n('composer.min_length.need_more_for_title', { n: titleDiff }));
|
||||||
} else if (replyLength < len) {
|
}
|
||||||
this.set('draftStatus', Em.String.i18n('composer.min_length.more', { n: len - replyLength }));
|
// 'reply' is focused
|
||||||
} else {
|
} else if ($('#wmd-input').is(':focus')) {
|
||||||
this.set('draftStatus', null);
|
var replyDiff = Discourse.SiteSettings.min_post_length - this.get('replyLength');
|
||||||
|
if (replyDiff > 0) {
|
||||||
|
return this.set('draftStatus', Em.String.i18n('composer.min_length.need_more_for_reply', { n: replyDiff }));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
// hide the counters if the currently focused text field is OK
|
||||||
|
this.set('draftStatus', null);
|
||||||
|
|
||||||
}).observes('reply', 'title'),
|
}).observes('reply', 'title'),
|
||||||
|
|
||||||
blank: function(prop) {
|
/**
|
||||||
var p = this.get(prop);
|
Computes the length of the title minus non-significant whitespaces
|
||||||
return !(p && p.length > 0);
|
|
||||||
},
|
@property titleLength
|
||||||
|
**/
|
||||||
|
titleLength: function() {
|
||||||
|
var title = this.get('title') || "";
|
||||||
|
return title.replace(/\s+/img, " ").trim().length;
|
||||||
|
}.property('title'),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Computes the length of the reply minus the quote(s) and non-significant whitespaces
|
Computes the length of the reply minus the quote(s) and non-significant whitespaces
|
||||||
|
@ -482,8 +487,7 @@ Discourse.Composer = Discourse.Model.extend({
|
||||||
@property replyLength
|
@property replyLength
|
||||||
**/
|
**/
|
||||||
replyLength: function() {
|
replyLength: function() {
|
||||||
var reply = this.get('reply');
|
var reply = this.get('reply') || "";
|
||||||
if(!reply) reply = "";
|
|
||||||
while (Discourse.BBCode.QUOTE_REGEXP.test(reply)) { reply = reply.replace(Discourse.BBCode.QUOTE_REGEXP, ""); }
|
while (Discourse.BBCode.QUOTE_REGEXP.test(reply)) { reply = reply.replace(Discourse.BBCode.QUOTE_REGEXP, ""); }
|
||||||
return reply.replace(/\s+/img, " ").trim().length;
|
return reply.replace(/\s+/img, " ").trim().length;
|
||||||
}.property('reply')
|
}.property('reply')
|
||||||
|
@ -543,5 +547,3 @@ Discourse.Composer.reopenClass({
|
||||||
// Draft key
|
// Draft key
|
||||||
REPLY_AS_NEW_TOPIC_KEY: REPLY_AS_NEW_TOPIC_KEY
|
REPLY_AS_NEW_TOPIC_KEY: REPLY_AS_NEW_TOPIC_KEY
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,6 @@
|
||||||
|
|
||||||
{{#if content.editTitle}}
|
{{#if content.editTitle}}
|
||||||
<div class='form-element clearfix'>
|
<div class='form-element clearfix'>
|
||||||
|
|
||||||
{{#if content.creatingPrivateMessage}}
|
{{#if content.creatingPrivateMessage}}
|
||||||
{{view Discourse.TextField id="private-message-users" class="span8" placeholderKey="composer.users_placeholder"}}
|
{{view Discourse.TextField id="private-message-users" class="span8" placeholderKey="composer.users_placeholder"}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
@ -41,7 +40,6 @@
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
||||||
<div class='wmd-controls'>
|
<div class='wmd-controls'>
|
||||||
<div class='textarea-wrapper'>
|
<div class='textarea-wrapper'>
|
||||||
<div class='wmd-button-bar' id='wmd-button-bar'></div>
|
<div class='wmd-button-bar' id='wmd-button-bar'></div>
|
||||||
|
@ -53,7 +51,6 @@
|
||||||
{{#if Discourse.currentUser}}
|
{{#if Discourse.currentUser}}
|
||||||
<a href="#" {{action togglePreview target="controller"}} class='toggle-preview'>{{{content.toggleText}}}</a>
|
<a href="#" {{action togglePreview target="controller"}} class='toggle-preview'>{{{content.toggleText}}}</a>
|
||||||
<div class='saving-draft'></div>
|
<div class='saving-draft'></div>
|
||||||
|
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -61,7 +58,6 @@
|
||||||
<div class='submit-panel'>
|
<div class='submit-panel'>
|
||||||
<button {{action save target="controller"}} tabindex="3" {{bindAttr disabled="content.cantSubmitPost"}} class='btn btn-primary create'>{{view.content.saveText}}</button>
|
<button {{action save target="controller"}} tabindex="3" {{bindAttr disabled="content.cantSubmitPost"}} class='btn btn-primary create'>{{view.content.saveText}}</button>
|
||||||
<a href='#' {{action cancel target="controller"}} class='cancel' tabindex="4">{{i18n cancel}}</a>
|
<a href='#' {{action cancel target="controller"}} class='cancel' tabindex="4">{{i18n cancel}}</a>
|
||||||
|
|
||||||
{{#if view.loadingImage}}
|
{{#if view.loadingImage}}
|
||||||
<div id="image-uploading">
|
<div id="image-uploading">
|
||||||
{{i18n image_selector.uploading_image}} {{view.uploadProgress}}% <a {{action cancelUpload target="view"}}>{{i18n cancel}}</a>
|
{{i18n image_selector.uploading_image}} {{view.uploadProgress}}% <a {{action cancelUpload target="view"}}>{{i18n cancel}}</a>
|
||||||
|
|
|
@ -85,7 +85,13 @@ Discourse.ComposerView = Discourse.View.extend({
|
||||||
$('.composer-popup').css('bottom', sizePx);
|
$('.composer-popup').css('bottom', sizePx);
|
||||||
},
|
},
|
||||||
|
|
||||||
resize: function() {
|
focusIn: (function() {
|
||||||
|
var controller = this.get('controller');
|
||||||
|
if(controller) controller.resetDraftStatus();
|
||||||
|
}),
|
||||||
|
|
||||||
|
|
||||||
|
resize: (function() {
|
||||||
// this still needs to wait on animations, need a clean way to do that
|
// this still needs to wait on animations, need a clean way to do that
|
||||||
return Em.run.next(null, function() {
|
return Em.run.next(null, function() {
|
||||||
var replyControl = $('#reply-control');
|
var replyControl = $('#reply-control');
|
||||||
|
|
|
@ -268,10 +268,11 @@ en:
|
||||||
saved_draft_tip: "saved"
|
saved_draft_tip: "saved"
|
||||||
saved_local_draft_tip: "saved locally"
|
saved_local_draft_tip: "saved locally"
|
||||||
similar_topics: "Similar Topics"
|
similar_topics: "Similar Topics"
|
||||||
|
drafts_offline: "drafts offline"
|
||||||
|
|
||||||
min_length:
|
min_length:
|
||||||
at_least: "enter at least {{n}} characters"
|
need_more_for_title: "{{n}} to go for the title"
|
||||||
more: "{{n}} to go..."
|
need_more_for_reply: "{{n}} to go for the reply"
|
||||||
|
|
||||||
save_edit: "Save Edit"
|
save_edit: "Save Edit"
|
||||||
reply_original: "Reply on Original Topic"
|
reply_original: "Reply on Original Topic"
|
||||||
|
|
|
@ -271,10 +271,11 @@ fr:
|
||||||
saving_draft_tip: "sauvegarde..."
|
saving_draft_tip: "sauvegarde..."
|
||||||
saved_draft_tip: "sauvegardé"
|
saved_draft_tip: "sauvegardé"
|
||||||
saved_local_draft_tip: "sauvegardé en local"
|
saved_local_draft_tip: "sauvegardé en local"
|
||||||
|
drafts_offline: "sauvegardé hors ligne"
|
||||||
|
|
||||||
min_length:
|
min_length:
|
||||||
at_least: "Saisir au moins {{n}} caractères"
|
need_more_for_title: "{{n}} caractères restant pour le titre"
|
||||||
more: "{{n}} restants..."
|
need_more_for_reply: "{{n}} caractères restant pour le message"
|
||||||
|
|
||||||
save_edit: "Sauvegarder la modification"
|
save_edit: "Sauvegarder la modification"
|
||||||
reply_original: Répondre à la discussion initiale
|
reply_original: Répondre à la discussion initiale
|
||||||
|
|
|
@ -52,7 +52,6 @@ describe Report do
|
||||||
|
|
||||||
it 'returns correct data' do
|
it 'returns correct data' do
|
||||||
report.data[0][:y].should == 1
|
report.data[0][:y].should == 1
|
||||||
pending 'breaks in my local 2.0 setup (Sam) - Neil please fix - report.data[1] is nil'
|
|
||||||
report.data[1][:y].should == 2
|
report.data[1][:y].should == 2
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue