0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/assets/javascripts/wizard/components/wizard-composer-editor.js.es6

221 Zeilen
6,7 KiB
Text

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";
2020-05-28 05:06:24 +02:00
import { findRawTemplate } from "discourse-common/lib/raw-templates";
import { scheduleOnce } from "@ember/runloop";
import { caretPosition, inCodeBlock } from "discourse/lib/utilities";
import highlightSyntax from "discourse/lib/highlight-syntax";
import { alias } from "@ember/object/computed";
import Site from "../models/site";
2021-12-01 08:19:14 +01:00
import { uploadIcon } from "discourse/lib/uploads";
import { dasherize } from "@ember/string";
2019-11-20 13:08:04 +01:00
export default ComposerEditor.extend({
classNameBindings: ["fieldClass"],
allowUpload: true,
2019-11-20 13:08:04 +01:00
showLink: false,
showHyperlinkBox: false,
2019-11-20 13:08:04 +01:00
topic: null,
showToolbar: true,
focusTarget: "reply",
canWhisper: false,
lastValidatedAt: "lastValidatedAt",
2019-11-20 13:08:04 +01:00
popupMenuOptions: [],
draftStatus: "null",
replyPlaceholder: alias("field.placeholder"),
2021-12-01 08:19:14 +01:00
uploadingFieldId: null,
2019-11-20 13:08:04 +01:00
@on("didInsertElement")
_composerEditorInit() {
const $input = $(this.element.querySelector(".d-editor-input"));
2019-11-20 13:08:04 +01:00
if (this.siteSettings.enable_mentions) {
$input.autocomplete({
template: findRawTemplate("user-selector-autocomplete"),
dataSource: (term) => this.userSearchTerm.call(this, term),
2019-11-20 13:08:04 +01:00
key: "@",
transformComplete: (v) => v.username || v.name,
afterComplete: (value) => {
this.composer.set("reply", value);
2019-11-20 13:08:04 +01:00
scheduleOnce("afterRender", () => $input.blur().focus());
},
triggerRule: (textarea) =>
2020-11-11 12:37:30 +01:00
!inCodeBlock(textarea.value, caretPosition(textarea)),
2019-11-20 13:08:04 +01: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)),
});
}
$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
@discourseComputed
allowedFileTypes() {
2020-11-11 12:37:30 +01:00
return this.siteSettings.authorized_extensions
.split("|")
.map((ext) => "." + ext)
.join(",");
},
2020-11-11 12:37:30 +01:00
@discourseComputed()
uploadIcon() {
return uploadIcon(false, this.siteSettings);
},
2020-11-11 12:37:30 +01:00
click(e) {
2020-11-11 12:37:30 +01:00
if ($(e.target).hasClass("wizard-composer-hyperlink")) {
this.set("showHyperlinkBox", false);
}
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) {
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",
sendAction: (event) => component.send("showUploadModal", event),
2019-11-20 13:08:04 +01:00
});
}
toolbar.addButton({
id: "link",
group: "insertions",
shortcut: "K",
trimLeading: true,
unshift: true,
sendAction: () => component.set("showHyperlinkBox", true),
});
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-11-11 12:37:30 +01:00
previewUpdated($preview) {
highlightSyntax($preview[0], this.siteSettings, this.session);
if (this.siteSettings.mentionables_enabled) {
const { linkSeenMentionableItems } = requirejs(
"discourse/plugins/discourse-mentionables/discourse/lib/mentionable-items-preview-styling"
);
linkSeenMentionableItems($preview, this.siteSettings);
}
this._super(...arguments);
},
2020-11-11 12:37:30 +01:00
addLink(linkName, linkUrl) {
let link = `[${linkName}](${linkUrl})`;
this.appEvents.trigger("wizard-editor:insert-text", {
fieldId: this.field.id,
2020-11-11 12:37:30 +01:00
text: link,
});
this.set("showHyperlinkBox", false);
},
2020-11-11 12:37:30 +01:00
hideBox() {
this.set("showHyperlinkBox", false);
},
2020-11-11 12:37:30 +01: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
},
},
});