refactor(client): use common method for checking if launch bar config

This commit is contained in:
Elian Doran 2025-01-04 21:52:41 +02:00
parent cfeb4eb51f
commit c2315a9341
No known key found for this signature in database
5 changed files with 16 additions and 5 deletions

View File

@ -7,6 +7,7 @@ import cssClassManager from "../services/css_class_manager.js";
import { Froca } from '../services/froca-interface.js';
import FAttachment from './fattachment.js';
import FAttribute, { AttributeType } from './fattribute.js';
import utils from '../services/utils.js';
const LABEL = 'label';
const RELATION = 'relation';
@ -983,7 +984,7 @@ class FNote {
}
isLaunchBarConfig() {
return this.type === 'launcher' || ['_lbRoot', '_lbAvailableLaunchers', '_lbVisibleLaunchers', "_lbMobileRoot", "_lbMobileAvailableLaunchers", "_lbMobileVisibleLaunchers" ].includes(this.noteId);
return this.type === 'launcher' || utils.isLaunchBarConfig(this.noteId);
}
isOptions() {

View File

@ -24,7 +24,7 @@ async function moveBeforeBranch(branchIdsToMove: string[], beforeBranchId: strin
return;
}
if (['root', '_lbRoot', '_lbAvailableLaunchers', '_lbVisibleLaunchers', "_lbMobileRoot", "_lbMobileAvailableLaunchers", "_lbMobileVisibleLaunchers" ].includes(beforeBranch.noteId)) {
if (beforeBranch.noteId === "root" || utils.isLaunchBarConfig(beforeBranch.noteId)) {
toastService.showError(t("branches.cannot-move-notes-here"));
return;
}

View File

@ -590,6 +590,13 @@ function isUpdateAvailable(latestVersion: string, currentVersion: string): boole
return compareVersions(latestVersion, currentVersion) > 0;
}
function isLaunchBarConfig(noteId: string) {
return [
"_lbRoot", "_lbAvailableLaunchers", "_lbVisibleLaunchers",
"_lbMobileRoot", "_lbMobileAvailableLaunchers", "_lbMobileVisibleLaunchers"
].includes(noteId);
}
export default {
reloadFrontendApp,
parseDate,
@ -632,5 +639,6 @@ export default {
createImageSrcUrl,
downloadSvg,
compareVersions,
isUpdateAvailable
isUpdateAvailable,
isLaunchBarConfig
};

View File

@ -6,6 +6,7 @@ import SpacedUpdate from "../services/spaced_update.js";
import appContext from "../components/app_context.js";
import branchService from "../services/branches.js";
import shortcutService from "../services/shortcuts.js";
import utils from "../services/utils.js";
const TPL = `
<div class="note-title-widget">
@ -73,7 +74,7 @@ export default class NoteTitleWidget extends NoteContextAwareWidget {
async refreshWithNote(note) {
const isReadOnly = (note.isProtected && !protectedSessionHolder.isProtectedSessionAvailable())
|| ['_lbRoot', '_lbAvailableLaunchers', '_lbVisibleLaunchers', "_lbMobileRoot", "_lbMobileAvailableLaunchers", "_lbMobileVisibleLaunchers" ].includes(note.noteId)
|| utils.isLaunchBarConfig(note.noteId)
|| this.noteContext.viewScope.viewMode !== 'default';
this.$noteTitle.val(

View File

@ -392,7 +392,8 @@ export default class NoteTreeWidget extends NoteContextAwareWidget {
autoExpandMS: 600,
preventLazyParents: false,
dragStart: (node, data) => {
if (['root', '_hidden', '_lbRoot', '_lbAvailableLaunchers', '_lbVisibleLaunchers', "_lbMobileRoot", "_lbMobileAvailableLaunchers", "_lbMobileVisibleLaunchers" ].includes(node.data.noteId)
if (node.data.noteId === "root"
|| utils.isLaunchBarConfig(node.data.noteId)
|| node.data.noteId.startsWith("_options")) {
return false;
}