mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-12-06 02:59:29 +00:00
Some checks are pending
Build assets artifact / Build assets artifact (push) Waiting to run
Docker Image Build / docker (push) Waiting to run
Docker Image Build (FrankenPHP) / docker (push) Waiting to run
Static analysis / Static analysis (push) Waiting to run
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.2, mysql) (push) Waiting to run
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.3, mysql) (push) Waiting to run
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.4, mysql) (push) Waiting to run
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.5, mysql) (push) Waiting to run
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.2, postgres) (push) Waiting to run
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.3, postgres) (push) Waiting to run
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.4, postgres) (push) Waiting to run
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.5, postgres) (push) Waiting to run
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.2, sqlite) (push) Waiting to run
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.3, sqlite) (push) Waiting to run
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.4, sqlite) (push) Waiting to run
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.5, sqlite) (push) Waiting to run
122 lines
4.1 KiB
JavaScript
122 lines
4.1 KiB
JavaScript
/*
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
*
|
|
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import {Controller} from "@hotwired/stimulus";
|
|
|
|
import { default as FullEditor } from "../../ckeditor/markdown_full";
|
|
import { default as SingleLineEditor} from "../../ckeditor/markdown_single_line";
|
|
import { default as HTMLLabelEditor } from "../../ckeditor/html_label";
|
|
|
|
import {EditorWatchdog} from 'ckeditor5';
|
|
|
|
import "ckeditor5/ckeditor5.css";;
|
|
import "../../css/components/ckeditor.css";
|
|
|
|
const translationContext = require.context(
|
|
'ckeditor5/translations',
|
|
false,
|
|
//Only load the translation files we will really need
|
|
/(de|it|fr|ru|ja|cs|da|zh|pl|hu)\.js$/
|
|
);
|
|
|
|
function loadTranslation(language) {
|
|
if (!language || language === 'en') {
|
|
return null;
|
|
}
|
|
const lang = language.slice(0, 2);
|
|
const path = `./${lang}.js`;
|
|
if (translationContext.keys().includes(path)) {
|
|
const module = translationContext(path);
|
|
return module.default;
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/* stimulusFetch: 'lazy' */
|
|
export default class extends Controller {
|
|
connect() {
|
|
const mode = this.element.dataset.mode;
|
|
|
|
let EDITOR_TYPE = "Invalid";
|
|
|
|
switch (mode) {
|
|
case "markdown-full":
|
|
EDITOR_TYPE = FullEditor['Editor'];
|
|
break;
|
|
case "markdown-single_line":
|
|
EDITOR_TYPE = SingleLineEditor['Editor'];
|
|
break;
|
|
case "html-label":
|
|
EDITOR_TYPE = HTMLLabelEditor['Editor'];
|
|
break;
|
|
default:
|
|
console.error("Unknown mode: " + mode);
|
|
return;
|
|
}
|
|
|
|
const language = document.body.dataset.locale ?? "en";
|
|
|
|
const emojiURL = new URL('../../ckeditor/emojis.json', import.meta.url).href;
|
|
|
|
const config = {
|
|
language: language,
|
|
licenseKey: "GPL",
|
|
|
|
emoji: {
|
|
definitionsUrl: emojiURL
|
|
}
|
|
}
|
|
|
|
//Load translations if not english
|
|
let translations = loadTranslation(language);
|
|
if (translations) {
|
|
//Keep existing translations (e.g. from other plugins), if any
|
|
config.translations = [window.CKEDITOR_TRANSLATIONS, translations];
|
|
}
|
|
|
|
const watchdog = new EditorWatchdog();
|
|
watchdog.setCreator((elementOrData, editorConfig) => {
|
|
return EDITOR_TYPE.create(elementOrData, editorConfig)
|
|
.then(editor => {
|
|
if(this.element.disabled) {
|
|
editor.enableReadOnlyMode("readonly");
|
|
}
|
|
|
|
//Apply additional styles
|
|
const editor_div = editor.ui.view.element;
|
|
const new_classes = this.element.dataset.ckClass;
|
|
if (editor_div && new_classes) {
|
|
editor_div.classList.add(...new_classes.split(","));
|
|
}
|
|
|
|
//This return is important! Otherwise we get mysterious errors in the console
|
|
//See: https://github.com/ckeditor/ckeditor5/issues/5897#issuecomment-628471302
|
|
return editor;
|
|
})
|
|
.catch(error => {
|
|
console.error(error);
|
|
});
|
|
});
|
|
|
|
watchdog.create(this.element, config).catch(error => {
|
|
console.error(error);
|
|
});
|
|
}
|
|
}
|