1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-31 15:24:31 +03:00

Started code-editor lang favorites system

- Split bash from shell in language list
- Updated code-lang highlighting to be exact match only to prevent
  confusion scenarios (Java matching JavaScript, etc..)
- Added design for favorites
- Changed blade language list to be generated from array.
This commit is contained in:
Dan Brown
2022-07-24 21:15:43 +01:00
parent da6169159d
commit ebc5a53410
4 changed files with 38 additions and 40 deletions

View File

@ -39,6 +39,7 @@ import 'codemirror/addon/scroll/scrollpastend';
// Value can be a mode string or a function that will receive the code content & return the mode string.
// The function option is used in the event the exact mode could be dynamic depending on the code.
const modeMap = {
bash: 'shell',
css: 'css',
c: 'text/x-csrc',
java: 'text/x-java',
@ -88,7 +89,6 @@ const modeMap = {
shell: 'shell',
sh: 'shell',
stext: 'text/x-stex',
bash: 'shell',
toml: 'toml',
ts: 'text/typescript',
typescript: 'text/typescript',

View File

@ -94,15 +94,13 @@ class CodeEditor {
languageInputChange(language) {
this.updateEditorMode(language);
const inputLang = language.toLowerCase();
let matched = false;
for (const link of this.languageLinks) {
const lang = link.dataset.lang.toLowerCase().trim();
const isMatch = inputLang && lang.startsWith(inputLang);
const isMatch = inputLang === lang;
link.classList.toggle('active', isMatch);
if (isMatch && !matched) {
if (isMatch) {
link.scrollIntoView({block: "center", behavior: "smooth"});
matched = true;
}
}
}