Skip to content

Commit 23cfd08

Browse files
committed
dont block composer for alert
1 parent 8839339 commit 23cfd08

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

static/lib/composer.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ define('composer', [
343343
formatting.addHandler(postContainer);
344344
formatting.addComposerButtons();
345345
preview.handleToggler(postContainer);
346-
346+
postQueue.showAlert(postContainer, postData);
347347
uploads.initialize(post_uuid);
348348
tags.init(postContainer, composer.posts[post_uuid]);
349349
autocomplete.init(postContainer, post_uuid);
@@ -477,7 +477,6 @@ define('composer', [
477477
tagWhitelist: postData.category ? postData.category.tagWhitelist : ajaxify.data.tagWhitelist,
478478
privileges: app.user.privileges,
479479
selectedCategory: postData.category,
480-
exemptFromPostQueue: await postQueue.isExempt(postData),
481480
submitOptions: [
482481
// Add items using `filter:composer.create`, or just add them to the <ul> in DOM
483482
// {

static/lib/composer/post-queue.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
define('composer/post-queue', [], function () {
44
const postQueue = {};
55

6-
postQueue.isExempt = async function (postData) {
6+
postQueue.showAlert = async function (postContainer, postData) {
77
if (!config.postQueue || app.user.isAdmin || app.user.isGlobalMod || app.user.isMod) {
8-
return true;
8+
return;
99
}
10-
return await socket.emit('plugins.composer.isExemptFromPostQueue', { postData: postData });
10+
const shouldQueue = await socket.emit('plugins.composer.shouldQueue', { postData: postData });
11+
postContainer.find('[component="composer/post-queue/alert"]')
12+
.toggleClass('show', shouldQueue);
1113
};
1214

1315
postQueue.onChangeCategory = async function (postContainer, postData) {
1416
if (!config.postQueue) {
1517
return;
1618
}
17-
const isExempt = await postQueue.isExempt(postData);
18-
postContainer.find('[component="composer/post-queue/alert"]')
19-
.toggleClass('hidden', isExempt);
19+
postQueue.showAlert(postContainer, postData);
2020
};
2121

2222
return postQueue;

static/templates/partials/composer-write-preview.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="write-preview-container d-flex gap-2 flex-grow-1 overflow-auto">
22
<div class="write-container d-flex d-md-flex w-50 position-relative">
3-
<div component="composer/post-queue/alert" class="{{{ if exemptFromPostQueue }}}hidden{{{ end }}} m-2 alert alert-info position-absolute top-0 start-0 alert-dismissible">[[modules:composer.post-queue-alert]]<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button></div>
3+
<div component="composer/post-queue/alert" class="m-2 alert alert-info fade position-absolute top-0 start-0 alert-dismissible">[[modules:composer.post-queue-alert]]<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button></div>
44
<div class="draft-icon position-absolute end-0 top-0 mx-2 my-1 hidden-md hidden-lg"></div>
55
<textarea class="write shadow-none rounded-1 w-100 form-control" tabindex="4" placeholder="[[modules:composer.textarea.placeholder]]">{body}</textarea>
66
</div>

websockets.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Sockets.getFormattingOptions = async function () {
6969
return await require('./library').getFormattingOptions();
7070
};
7171

72-
Sockets.isExemptFromPostQueue = async function (socket, data) {
72+
Sockets.shouldQueue = async function (socket, data) {
7373
if (!data || !data.postData) {
7474
throw new Error('[[error:invalid-data]]');
7575
}
@@ -90,5 +90,5 @@ Sockets.isExemptFromPostQueue = async function (socket, data) {
9090
content: postData.content || '',
9191
});
9292
}
93-
return !shouldQueue;
93+
return shouldQueue;
9494
};

0 commit comments

Comments
 (0)