Merge pull request #118 from gamosoft/features/new-note

Features/new note
This commit is contained in:
Guillermo Villar 2025-12-19 15:55:50 +01:00 committed by GitHub
commit 124f2106f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 55 additions and 42 deletions

View File

@ -2248,8 +2248,9 @@ function noteApp() {
setTimeout(() => this.scrollToAnchor(anchor), 100); setTimeout(() => this.scrollToAnchor(anchor), 100);
} }
}); });
} else { } else if (confirm(this.t('notes.create_from_link', { path: notePath }))) {
alert(this.t('notes.not_found', { path: notePath })); // Note doesn't exist - create it (reuses createNote with duplicate check)
this.createNote(null, notePath);
} }
}, },
@ -2825,49 +2826,55 @@ function noteApp() {
// UNIFIED CREATION FUNCTIONS (reusable from anywhere) // UNIFIED CREATION FUNCTIONS (reusable from anywhere)
// ===================================================== // =====================================================
async createNote(folderPath = null) { async createNote(folderPath = null, directPath = null) {
// Use provided folder path, or dropdown target folder context, or homepage folder
// Note: Check dropdownTargetFolder !== null to distinguish between '' (root) and not set
let targetFolder;
if (folderPath !== null) {
targetFolder = folderPath;
} else if (this.dropdownTargetFolder !== null && this.dropdownTargetFolder !== undefined) {
targetFolder = this.dropdownTargetFolder; // Can be '' for root or a folder path
} else {
targetFolder = this.selectedHomepageFolder || '';
}
this.closeDropdown();
const promptText = targetFolder
? this.t('notes.prompt_name_in_folder', { folder: targetFolder })
: this.t('notes.prompt_name_with_path');
const noteName = prompt(promptText);
if (!noteName) return;
// Validate the name/path (may contain / for paths when no target folder)
const validation = targetFolder
? FilenameValidator.validateFilename(noteName)
: FilenameValidator.validatePath(noteName);
if (!validation.valid) {
alert(this.getValidationErrorMessage(validation, 'note'));
return;
}
const validatedName = validation.sanitized;
let notePath; let notePath;
if (targetFolder) {
notePath = `${targetFolder}/${validatedName}.md`; if (directPath) {
// Direct path provided (e.g., from wiki link) - skip prompting
notePath = directPath.endsWith('.md') ? directPath : `${directPath}.md`;
} else { } else {
notePath = validatedName.endsWith('.md') ? validatedName : `${validatedName}.md`; // Use provided folder path, or dropdown target folder context, or homepage folder
// Note: Check dropdownTargetFolder !== null to distinguish between '' (root) and not set
let targetFolder;
if (folderPath !== null) {
targetFolder = folderPath;
} else if (this.dropdownTargetFolder !== null && this.dropdownTargetFolder !== undefined) {
targetFolder = this.dropdownTargetFolder; // Can be '' for root or a folder path
} else {
targetFolder = this.selectedHomepageFolder || '';
}
this.closeDropdown();
const promptText = targetFolder
? this.t('notes.prompt_name_in_folder', { folder: targetFolder })
: this.t('notes.prompt_name_with_path');
const noteName = prompt(promptText);
if (!noteName) return;
// Validate the name/path (may contain / for paths when no target folder)
const validation = targetFolder
? FilenameValidator.validateFilename(noteName)
: FilenameValidator.validatePath(noteName);
if (!validation.valid) {
alert(this.getValidationErrorMessage(validation, 'note'));
return;
}
const validatedName = validation.sanitized;
if (targetFolder) {
notePath = `${targetFolder}/${validatedName}.md`;
} else {
notePath = validatedName.endsWith('.md') ? validatedName : `${validatedName}.md`;
}
} }
// CRITICAL: Check if note already exists // CRITICAL: Check if note already exists (applies to both prompt and direct path)
const existingNote = this.notes.find(note => note.path === notePath); const existingNote = this.notes.find(note => note.path === notePath);
if (existingNote) { if (existingNote) {
alert(this.t('notes.already_exists', { name: validatedName })); alert(this.t('notes.already_exists', { name: notePath }));
return; return;
} }
@ -2879,9 +2886,9 @@ function noteApp() {
}); });
if (response.ok) { if (response.ok) {
if (targetFolder) { // Expand parent folder if note is in a subfolder
this.expandedFolders.add(targetFolder); const folderPart = notePath.includes('/') ? notePath.substring(0, notePath.lastIndexOf('/')) : '';
} if (folderPart) this.expandedFolders.add(folderPart);
await this.loadNotes(); await this.loadNotes();
await this.loadNote(notePath); await this.loadNote(notePath);
} else { } else {

View File

@ -80,6 +80,7 @@
"invalid_name": "Ungültiger Notizname.", "invalid_name": "Ungültiger Notizname.",
"empty_name": "Der Notizname darf nicht leer sein.", "empty_name": "Der Notizname darf nicht leer sein.",
"not_found": "Notiz nicht gefunden: {{path}}", "not_found": "Notiz nicht gefunden: {{path}}",
"create_from_link": "Notiz \"{{path}}\" existiert nicht.\n\nMöchten Sie sie erstellen?",
"no_content": "Kein Inhalt zum Exportieren", "no_content": "Kein Inhalt zum Exportieren",
"open_first": "Bitte öffne zuerst eine Notiz, bevor du Bilder hochlädst." "open_first": "Bitte öffne zuerst eine Notiz, bevor du Bilder hochlädst."
}, },

View File

@ -80,6 +80,7 @@
"invalid_name": "Invalid note name.", "invalid_name": "Invalid note name.",
"empty_name": "Note name cannot be empty.", "empty_name": "Note name cannot be empty.",
"not_found": "Note not found: {{path}}", "not_found": "Note not found: {{path}}",
"create_from_link": "Note \"{{path}}\" doesn't exist.\n\nWould you like to create it?",
"no_content": "No note content to export", "no_content": "No note content to export",
"open_first": "Please open a note first before uploading images." "open_first": "Please open a note first before uploading images."
}, },

View File

@ -80,6 +80,7 @@
"invalid_name": "Nombre de nota inválido.", "invalid_name": "Nombre de nota inválido.",
"empty_name": "El nombre de la nota no puede estar vacío.", "empty_name": "El nombre de la nota no puede estar vacío.",
"not_found": "Nota no encontrada: {{path}}", "not_found": "Nota no encontrada: {{path}}",
"create_from_link": "La nota \"{{path}}\" no existe.\n\n¿Desea crearla?",
"no_content": "No hay contenido para exportar", "no_content": "No hay contenido para exportar",
"open_first": "Por favor, abre una nota antes de subir imágenes." "open_first": "Por favor, abre una nota antes de subir imágenes."
}, },

View File

@ -80,6 +80,7 @@
"invalid_name": "Nom de note invalide.", "invalid_name": "Nom de note invalide.",
"empty_name": "Le nom de la note ne peut pas être vide.", "empty_name": "Le nom de la note ne peut pas être vide.",
"not_found": "Note introuvable : {{path}}", "not_found": "Note introuvable : {{path}}",
"create_from_link": "La note \"{{path}}\" n'existe pas.\n\nVoulez-vous la créer ?",
"no_content": "Aucun contenu à exporter", "no_content": "Aucun contenu à exporter",
"open_first": "Veuillez d'abord ouvrir une note avant de télécharger des images." "open_first": "Veuillez d'abord ouvrir une note avant de télécharger des images."
}, },

View File

@ -80,6 +80,7 @@
"invalid_name": "Neveljavno ime zapisa.", "invalid_name": "Neveljavno ime zapisa.",
"empty_name": "Ime zapisa ne more biti prazno.", "empty_name": "Ime zapisa ne more biti prazno.",
"not_found": "Zapisa ni mogoče najti: {{path}}", "not_found": "Zapisa ni mogoče najti: {{path}}",
"create_from_link": "Zapis \"{{path}}\" ne obstaja.\n\nAli ga želite ustvariti?",
"no_content": "Ni vsebine za izvoz", "no_content": "Ni vsebine za izvoz",
"open_first": "Prosimo, najprej odprite zapis, preden naložite slike." "open_first": "Prosimo, najprej odprite zapis, preden naložite slike."
}, },

View File

@ -80,6 +80,7 @@
"invalid_name": "无效的笔记名称。", "invalid_name": "无效的笔记名称。",
"empty_name": "笔记名称不能为空。", "empty_name": "笔记名称不能为空。",
"not_found": "未找到笔记:{{path}}", "not_found": "未找到笔记:{{path}}",
"create_from_link": "笔记 \"{{path}}\" 不存在。\n\n是否要创建它",
"no_content": "没有可导出的笔记内容", "no_content": "没有可导出的笔记内容",
"open_first": "请先打开一篇笔记,然后再上传图片。" "open_first": "请先打开一篇笔记,然后再上传图片。"
}, },