2020-10-01 07:43:29 +02:00
|
|
|
import ComposerEditor from "discourse/components/composer-editor";
|
2020-11-11 12:37:30 +01:00
|
|
|
import {
|
|
|
|
default as discourseComputed,
|
|
|
|
on,
|
|
|
|
} from "discourse-common/utils/decorators";
|
2022-07-09 10:24:27 +02:00
|
|
|
import { findRawTemplate } from "discourse/plugins/discourse-custom-wizard/legacy/raw-templates";
|
2021-12-22 09:41:38 +01:00
|
|
|
import { scheduleOnce } from "@ember/runloop";
|
2021-04-12 08:26:22 +02:00
|
|
|
import { caretPosition, inCodeBlock } from "discourse/lib/utilities";
|
2020-10-01 07:43:29 +02:00
|
|
|
import highlightSyntax from "discourse/lib/highlight-syntax";
|
2020-10-06 11:30:24 +02:00
|
|
|
import { alias } from "@ember/object/computed";
|
2021-10-06 13:55:50 +02:00
|
|
|
import Site from "../models/site";
|
2021-12-01 08:19:14 +01:00
|
|
|
import { uploadIcon } from "discourse/lib/uploads";
|
|
|
|
import { dasherize } from "@ember/string";
|
2020-10-02 06:40:10 +02:00
|
|
|
|
2019-11-20 13:08:04 +01:00
|
|
|
export default ComposerEditor.extend({
|
2022-06-15 08:59:09 +02:00
|
|
|
layoutName: "wizard/templates/components/wizard-composer-editor",
|
2020-10-01 07:43:29 +02:00
|
|
|
classNameBindings: ["fieldClass"],
|
|
|
|
allowUpload: true,
|
2019-11-20 13:08:04 +01:00
|
|
|
showLink: false,
|
2020-10-01 15:48:20 +02:00
|
|
|
showHyperlinkBox: false,
|
2019-11-20 13:08:04 +01:00
|
|
|
topic: null,
|
|
|
|
showToolbar: true,
|
|
|
|
focusTarget: "reply",
|
|
|
|
canWhisper: false,
|
2020-10-01 07:43:29 +02:00
|
|
|
lastValidatedAt: "lastValidatedAt",
|
2019-11-20 13:08:04 +01:00
|
|
|
popupMenuOptions: [],
|
2020-10-01 07:43:29 +02:00
|
|
|
draftStatus: "null",
|
2022-06-15 09:08:28 +02:00
|
|
|
replyPlaceholder: alias("field.translatedPlaceholder"),
|
2021-12-01 08:19:14 +01:00
|
|
|
uploadingFieldId: null,
|
2020-10-01 07:43:29 +02:00
|
|
|
|
2019-11-20 13:08:04 +01:00
|
|
|
@on("didInsertElement")
|
|
|
|
_composerEditorInit() {
|
|
|
|
const $input = $(this.element.querySelector(".d-editor-input"));
|
2020-10-01 07:43:29 +02:00
|
|
|
|
2019-11-20 13:08:04 +01:00
|
|
|
if (this.siteSettings.enable_mentions) {
|
|
|
|
$input.autocomplete({
|
|
|
|
template: findRawTemplate("user-selector-autocomplete"),
|
2020-10-01 07:43:29 +02:00
|
|
|
dataSource: (term) => this.userSearchTerm.call(this, term),
|
2019-11-20 13:08:04 +01:00
|
|
|
key: "@",
|
2020-10-01 07:43:29 +02:00
|
|
|
transformComplete: (v) => v.username || v.name,
|
2020-10-02 03:38:32 +02:00
|
|
|
afterComplete: (value) => {
|
|
|
|
this.composer.set("reply", value);
|
2019-11-20 13:08:04 +01:00
|
|
|
scheduleOnce("afterRender", () => $input.blur().focus());
|
2020-10-01 07:43:29 +02:00
|
|
|
},
|
2020-10-02 03:38:32 +02:00
|
|
|
triggerRule: (textarea) =>
|
2020-11-11 12:37:30 +01:00
|
|
|
!inCodeBlock(textarea.value, caretPosition(textarea)),
|
2019-11-20 13:08:04 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-10-06 13:55:50 +02:00
|
|
|
const siteSettings = this.siteSettings;
|
|
|
|
if (siteSettings.mentionables_enabled) {
|
|
|
|
Site.currentProp("mentionable_items", this.wizard.mentionable_items);
|
|
|
|
const { SEPARATOR } = requirejs(
|
|
|
|
"discourse/plugins/discourse-mentionables/discourse/lib/discourse-markdown/mentionable-items"
|
|
|
|
);
|
|
|
|
const { searchMentionableItem } = requirejs(
|
|
|
|
"discourse/plugins/discourse-mentionables/discourse/lib/mentionable-item-search"
|
|
|
|
);
|
|
|
|
|
|
|
|
$input.autocomplete({
|
|
|
|
template: findRawTemplate("javascripts/mentionable-item-autocomplete"),
|
|
|
|
key: SEPARATOR,
|
|
|
|
afterComplete: (value) => {
|
|
|
|
this.composer.set("reply", value);
|
|
|
|
scheduleOnce("afterRender", () => $input.blur().focus());
|
|
|
|
},
|
|
|
|
transformComplete: (item) => item.model.slug,
|
|
|
|
dataSource: (term) =>
|
|
|
|
term.match(/\s/) ? null : searchMentionableItem(term, siteSettings),
|
|
|
|
triggerRule: (textarea) =>
|
|
|
|
!inCodeBlock(textarea.value, caretPosition(textarea)),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-12-22 09:41:38 +01:00
|
|
|
$input.on("scroll", this._throttledSyncEditorAndPreviewScroll);
|
2019-11-20 13:08:04 +01:00
|
|
|
this._bindUploadTarget();
|
2021-12-01 08:19:14 +01:00
|
|
|
|
|
|
|
const wizardEventNames = ["insert-text", "replace-text"];
|
|
|
|
const eventPrefix = this.eventPrefix;
|
|
|
|
const session = this.get("session");
|
|
|
|
this.appEvents.reopen({
|
|
|
|
trigger(name, ...args) {
|
|
|
|
let eventParts = name.split(":");
|
|
|
|
let currentEventPrefix = eventParts[0];
|
|
|
|
let currentEventName = eventParts[1];
|
|
|
|
|
|
|
|
if (
|
|
|
|
currentEventPrefix !== "wizard-editor" &&
|
|
|
|
wizardEventNames.some((wen) => wen === currentEventName)
|
|
|
|
) {
|
|
|
|
let wizardName = name.replace(eventPrefix, "wizard-editor");
|
|
|
|
if (currentEventName === "insert-text") {
|
|
|
|
args = {
|
|
|
|
text: args[0],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
if (currentEventName === "replace-text") {
|
|
|
|
args = {
|
|
|
|
oldVal: args[0],
|
|
|
|
newVal: args[1],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
let wizardArgs = Object.assign(
|
|
|
|
{},
|
|
|
|
{
|
|
|
|
fieldId: session.get("uploadingFieldId"),
|
|
|
|
},
|
|
|
|
args
|
|
|
|
);
|
|
|
|
return this._super(wizardName, wizardArgs);
|
|
|
|
} else {
|
|
|
|
return this._super(name, ...args);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
@discourseComputed("field.id")
|
|
|
|
fileUploadElementId(fieldId) {
|
|
|
|
return `file-uploader-${dasherize(fieldId)}`;
|
2019-11-20 13:08:04 +01:00
|
|
|
},
|
2020-11-11 12:37:30 +01:00
|
|
|
|
2020-10-06 11:30:24 +02:00
|
|
|
@discourseComputed
|
|
|
|
allowedFileTypes() {
|
2020-11-11 12:37:30 +01:00
|
|
|
return this.siteSettings.authorized_extensions
|
|
|
|
.split("|")
|
|
|
|
.map((ext) => "." + ext)
|
|
|
|
.join(",");
|
2020-10-06 11:30:24 +02:00
|
|
|
},
|
2020-11-11 12:37:30 +01:00
|
|
|
|
2021-04-12 08:26:22 +02:00
|
|
|
@discourseComputed()
|
|
|
|
uploadIcon() {
|
2020-10-06 12:05:24 +02:00
|
|
|
return uploadIcon(false, this.siteSettings);
|
|
|
|
},
|
2020-11-11 12:37:30 +01:00
|
|
|
|
2020-10-02 02:33:01 +02:00
|
|
|
click(e) {
|
2020-11-11 12:37:30 +01:00
|
|
|
if ($(e.target).hasClass("wizard-composer-hyperlink")) {
|
|
|
|
this.set("showHyperlinkBox", false);
|
2020-10-02 02:33:01 +02:00
|
|
|
}
|
2019-11-20 13:08:04 +01:00
|
|
|
},
|
2020-11-11 12:37:30 +01:00
|
|
|
|
2019-11-20 13:08:04 +01:00
|
|
|
actions: {
|
|
|
|
extraButtons(toolbar) {
|
2020-10-02 06:40:10 +02:00
|
|
|
const component = this;
|
2020-11-11 12:37:30 +01:00
|
|
|
|
2019-11-20 13:08:04 +01:00
|
|
|
if (this.allowUpload && this.uploadIcon && !this.site.mobileView) {
|
|
|
|
toolbar.addButton({
|
|
|
|
id: "upload",
|
|
|
|
group: "insertions",
|
|
|
|
icon: this.uploadIcon,
|
|
|
|
title: "upload",
|
2020-10-02 06:40:10 +02:00
|
|
|
sendAction: (event) => component.send("showUploadModal", event),
|
2019-11-20 13:08:04 +01:00
|
|
|
});
|
|
|
|
}
|
2020-10-01 15:48:20 +02:00
|
|
|
|
|
|
|
toolbar.addButton({
|
|
|
|
id: "link",
|
|
|
|
group: "insertions",
|
|
|
|
shortcut: "K",
|
|
|
|
trimLeading: true,
|
2020-10-02 02:33:01 +02:00
|
|
|
unshift: true,
|
2021-04-12 08:26:22 +02:00
|
|
|
sendAction: () => component.set("showHyperlinkBox", true),
|
2020-10-01 15:48:20 +02:00
|
|
|
});
|
2021-10-06 13:55:50 +02:00
|
|
|
|
|
|
|
if (this.siteSettings.mentionables_enabled) {
|
|
|
|
const { SEPARATOR } = requirejs(
|
|
|
|
"discourse/plugins/discourse-mentionables/discourse/lib/discourse-markdown/mentionable-items"
|
|
|
|
);
|
|
|
|
|
|
|
|
toolbar.addButton({
|
|
|
|
id: "insert-mentionable",
|
|
|
|
group: "extras",
|
|
|
|
icon: this.siteSettings.mentionables_composer_button_icon,
|
|
|
|
title: "mentionables.composer.insert.title",
|
|
|
|
perform: () => {
|
|
|
|
this.appEvents.trigger("wizard-editor:insert-text", {
|
|
|
|
fieldId: this.field.id,
|
|
|
|
text: SEPARATOR,
|
|
|
|
});
|
|
|
|
const $textarea = $(
|
|
|
|
document.querySelector(
|
|
|
|
`.composer-field.${this.field.id} textarea.d-editor-input`
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$textarea.trigger("keyup.autocomplete");
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
2020-10-01 07:43:29 +02:00
|
|
|
},
|
2020-11-11 12:37:30 +01:00
|
|
|
|
2020-10-01 07:43:29 +02:00
|
|
|
previewUpdated($preview) {
|
|
|
|
highlightSyntax($preview[0], this.siteSettings, this.session);
|
2021-10-06 13:55:50 +02:00
|
|
|
|
|
|
|
if (this.siteSettings.mentionables_enabled) {
|
|
|
|
const { linkSeenMentionableItems } = requirejs(
|
|
|
|
"discourse/plugins/discourse-mentionables/discourse/lib/mentionable-items-preview-styling"
|
|
|
|
);
|
|
|
|
linkSeenMentionableItems($preview, this.siteSettings);
|
|
|
|
}
|
2020-10-01 07:43:29 +02:00
|
|
|
this._super(...arguments);
|
|
|
|
},
|
2020-11-11 12:37:30 +01:00
|
|
|
|
2020-10-01 15:48:20 +02:00
|
|
|
addLink(linkName, linkUrl) {
|
|
|
|
let link = `[${linkName}](${linkUrl})`;
|
2020-10-02 06:40:10 +02:00
|
|
|
this.appEvents.trigger("wizard-editor:insert-text", {
|
2020-10-06 11:30:24 +02:00
|
|
|
fieldId: this.field.id,
|
2020-11-11 12:37:30 +01:00
|
|
|
text: link,
|
2020-10-02 06:40:10 +02:00
|
|
|
});
|
2020-10-01 15:48:20 +02:00
|
|
|
this.set("showHyperlinkBox", false);
|
|
|
|
},
|
2020-11-11 12:37:30 +01:00
|
|
|
|
2020-10-01 15:48:20 +02:00
|
|
|
hideBox() {
|
|
|
|
this.set("showHyperlinkBox", false);
|
|
|
|
},
|
2020-11-11 12:37:30 +01:00
|
|
|
|
2020-10-02 06:40:10 +02:00
|
|
|
showUploadModal() {
|
2021-12-01 08:19:14 +01:00
|
|
|
this.session.set("uploadingFieldId", this.field.id);
|
|
|
|
document.getElementById(this.fileUploadElementId).click();
|
2020-11-11 12:37:30 +01:00
|
|
|
},
|
2020-10-01 07:43:29 +02:00
|
|
|
},
|
|
|
|
});
|