Resolve "Have Zettel selection dialog not add unnecessary IDs to its list" #14
1 changed files with 11 additions and 11 deletions
16
zettel.qml
16
zettel.qml
|
@ -124,22 +124,22 @@ QtObject {
|
|||
// ---- Internal Functions ----
|
||||
// ----------------------------
|
||||
|
||||
function zettelSelectorDialog(editableTextBox, zettelArray) {
|
||||
if (zettelArray == null) {
|
||||
zettelArray = [];
|
||||
function zettelSelectorDialog(isEditableTextBox) {
|
||||
let backingIDs = [];
|
||||
let zettelArray = [];
|
||||
fetchZettelIDs().forEach(function (noteId){
|
||||
let note = script.fetchNoteById(noteId);
|
||||
zettelArray.push(note.name + " --id:"+note.id);
|
||||
zettelArray.push(note.name);
|
||||
backingIDs.push(note.id);
|
||||
});
|
||||
}
|
||||
|
||||
if (zettelArray.length == 0) {
|
||||
script.informationMessageBox("No valid Zettel found.");
|
||||
}
|
||||
|
||||
let selected = script.inputDialogGetItem("Zettel", "Select a Zettel", zettelArray, 0, editableTextBox);
|
||||
// FIXME dont display id in names - rather, go getNotebyName(name) -> (get its id) -> set note to it
|
||||
return script.fetchNoteById(selected.substring(selected.search(/--id:/)+5));
|
||||
let selected = script.inputDialogGetItem("Zettel", "Select a Zettel", zettelArray, 0, isEditableTextBox);
|
||||
|
||||
return script.fetchNoteById(backingIDs[zettelArray.indexOf(selected)]);
|
||||
}
|
||||
|
||||
function extractAnchorFromString(text) {
|
||||
|
|
Loading…
Reference in a new issue