mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 10:41:45 +08:00
flash draft status when requirements are not met for new users
This commit is contained in:
parent
b30445c3ef
commit
0b222550f7
|
@ -459,6 +459,14 @@ Discourse.Composer = Discourse.Model.extend({
|
|||
});
|
||||
},
|
||||
|
||||
flashDraftStatusForNewUser: function() {
|
||||
var $draftStatus = $('#draft-status');
|
||||
if (Discourse.get('currentUser.trust_level') === 0) {
|
||||
$draftStatus.toggleClass('flash', true);
|
||||
setTimeout(function() { $draftStatus.removeClass('flash'); }, 250);
|
||||
}
|
||||
},
|
||||
|
||||
updateDraftStatus: function() {
|
||||
var $title = $('#reply-title'),
|
||||
$reply = $('#wmd-input');
|
||||
|
@ -467,6 +475,7 @@ Discourse.Composer = Discourse.Model.extend({
|
|||
if ($title.is(':focus')) {
|
||||
var titleDiff = this.get('missingTitleCharacters');
|
||||
if (titleDiff > 0) {
|
||||
this.flashDraftStatusForNewUser();
|
||||
return this.set('draftStatus', Em.String.i18n('composer.min_length.need_more_for_title', { n: titleDiff }));
|
||||
}
|
||||
// 'reply' is focused
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
</div>
|
||||
{{#if Discourse.currentUser}}
|
||||
<a href="#" {{action togglePreview target="controller"}} class='toggle-preview'>{{{content.toggleText}}}</a>
|
||||
<div class='draft-status'></div>
|
||||
<div id='draft-status'></div>
|
||||
{{#if view.loadingImage}}
|
||||
<div id="image-uploading">
|
||||
{{i18n image_selector.uploading_image}} {{view.uploadProgress}}% <a id="cancel-image-upload">{{i18n cancel}}</a>
|
||||
|
|
|
@ -27,7 +27,7 @@ Discourse.ComposerView = Discourse.View.extend({
|
|||
}.property('content.composeState'),
|
||||
|
||||
draftStatus: function() {
|
||||
this.$('.draft-status').text(this.get('content.draftStatus') || "");
|
||||
$('#draft-status').text(this.get('content.draftStatus') || "");
|
||||
}.observes('content.draftStatus'),
|
||||
|
||||
// Disable fields when we're loading
|
||||
|
|
|
@ -96,7 +96,7 @@
|
|||
.requirements-not-met {
|
||||
background-color: rgba(255, 0, 0, 0.12);
|
||||
}
|
||||
.toggle-preview, .draft-status, #image-uploading {
|
||||
.toggle-preview, #draft-status, #image-uploading {
|
||||
position: absolute;
|
||||
bottom: -31px;
|
||||
margin-top: 0px;
|
||||
|
@ -110,9 +110,12 @@
|
|||
font-size: 12px;
|
||||
color: darken($gray, 40);
|
||||
}
|
||||
.draft-status {
|
||||
#draft-status {
|
||||
right: 51%;
|
||||
color: lighten($black, 60);
|
||||
&.flash {
|
||||
color: lighten($red, 20);
|
||||
}
|
||||
}
|
||||
@include transition(height 0.4s ease);
|
||||
width: 100%;
|
||||
|
@ -219,7 +222,7 @@
|
|||
margin-right: auto;
|
||||
float: none;
|
||||
}
|
||||
|
||||
|
||||
// When the post is new (new topic) the sizings are different
|
||||
&.edit-title {
|
||||
&.open {
|
||||
|
|
|
@ -9,8 +9,9 @@ class CurrentUserSerializer < BasicUserSerializer
|
|||
:moderator?,
|
||||
:reply_count,
|
||||
:topic_count,
|
||||
:enable_quoting,
|
||||
:external_links_in_new_tab
|
||||
:enable_quoting,
|
||||
:external_links_in_new_tab,
|
||||
:trust_level
|
||||
|
||||
# we probably want to move this into site, but that json is cached so hanging it off current user seems okish
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user