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

213 Zeilen
6,4 KiB
Text

import ComposerEditor from "discourse/components/composer-editor";
2020-11-11 12:37:30 +01:00
import {
bind,
2020-11-11 12:37:30 +01:00
default as discourseComputed,
on,
} from "discourse-common/utils/decorators";
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 "discourse/models/site";
2021-12-01 08:19:14 +01:00
import { uploadIcon } from "discourse/lib/uploads";
import { dasherize } from "@ember/string";
import showModal from "discourse/lib/show-modal";
const IMAGE_MARKDOWN_REGEX = /!\[(.*?)\|(\d{1,4}x\d{1,4})(,\s*\d{1,3}%)?(.*?)\]\((upload:\/\/.*?)\)(?!(.*`))/g;
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,
topic: null,
showToolbar: true,
focusTarget: "reply",
canWhisper: false,
lastValidatedAt: "lastValidatedAt",
2019-11-20 13:08:04 +01:00
popupMenuOptions: [],
draftStatus: "null",
2022-06-15 09:08:28 +02:00
replyPlaceholder: alias("field.translatedPlaceholder"),
wizardEventFieldId: null,
composerEventPrefix: "wizard-editor",
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 field = this.field;
2023-03-15 10:30:24 +01:00
this.editorInputClass = `.${dasherize(field.type)}-${dasherize(
field.id
)} .d-editor-input`;
2021-12-01 08:19:14 +01:00
2023-03-15 10:30:24 +01:00
this._uppyInstance.on("file-added", () => {
this.session.set("wizardEventFieldId", field.id);
2021-12-01 08:19:14 +01:00
});
},
@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
@bind
_handleImageDeleteButtonClick(event) {
if (!event.target.classList.contains("delete-image-button")) {
return;
}
const index = parseInt(
event.target.closest(".button-wrapper").dataset.imageIndex,
10
);
const matchingPlaceholder = this.get("composer.reply").match(
IMAGE_MARKDOWN_REGEX
);
this.session.set("wizardEventFieldId", this.field.id);
this.appEvents.trigger(
"composer:replace-text",
matchingPlaceholder[index],
"",
{ regex: IMAGE_MARKDOWN_REGEX, index }
);
},
2019-11-20 13:08:04 +01:00
actions: {
extraButtons(toolbar) {
const component = this;
2020-11-11 12:37:30 +01:00
2022-11-07 15:04:30 +01:00
if (this.allowUpload && this.uploadIcon) {
2019-11-20 13:08:04 +01:00
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: (event) => component.send("showLinkModal", event),
});
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, 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
showLinkModal(toolbarEvent) {
let linkText = "";
this._lastSel = toolbarEvent.selected;
if (this._lastSel) {
linkText = this._lastSel.value;
}
2020-11-11 12:37:30 +01:00
showModal("insert-hyperlink").setProperties({
linkText,
toolbarEvent,
});
},
2020-11-11 12:37:30 +01:00
showUploadModal() {
this.session.set("wizardEventFieldId", this.field.id);
2021-12-01 08:19:14 +01:00
document.getElementById(this.fileUploadElementId).click();
2020-11-11 12:37:30 +01:00
},
},
});