diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 6a2f8423..42036b49 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -219,7 +219,10 @@ RESEARCH + ------------------------ /WIKI --------------------------- + + todo: document that emojis can be used in any text field and key combo on windows is winkey-period -other os's too? todo: make the navigation pane sticky so it remembers the last setting of hidden or showing in large view size @@ -261,6 +264,9 @@ todo: ATTACHMENTS - Maybe thumbnail pictures in the UI for easier download when viewing the list of attachments - Consider ability to show attachment links / thumbnails at bottom of edit forms +todo: AFTER ATTACHMENTS + - Go back and finish off wiki image attachment UI and code + TODO: PRIORITIZE THE FOLLOWING BLOCK AND move INTO appropriate STAGES (these items came up looking through the raven priority 1 cases for general UI stuff) diff --git a/ayanova/src/api/translation.js b/ayanova/src/api/translation.js index 5dde5868..ecbc6cec 100644 --- a/ayanova/src/api/translation.js +++ b/ayanova/src/api/translation.js @@ -167,7 +167,7 @@ export default { "InsertImage", "ImageUrl", "ImageDescription", - "File" + "AttachFile" ], //////////////////////////////////////////////////////// diff --git a/ayanova/src/components/wiki-control.vue b/ayanova/src/components/wiki-control.vue index 1630460c..992e746a 100644 --- a/ayanova/src/components/wiki-control.vue +++ b/ayanova/src/components/wiki-control.vue @@ -215,7 +215,7 @@
URL - {{ $ay.t("File") }} + {{ $ay.t("Attachments") }}
@@ -230,7 +230,18 @@ >
- FILE SELECT HERE FILE UPLOAD HERE + + { this.imageMenu = true; }); + }, + availableAttachments() { + return [ + { id: 0, name: "Stub attachment one" }, + { id: 1, name: "Stub attachment two" }, + { id: 2, name: "Stub attachment three" } + ]; } } }; @@ -763,6 +783,7 @@ todo: Undo / redo (ctrl-z / ctrl-y) ability? todo: wiki controls showing before widget form has loaded causing annoying ability to click but then doesn't work right away - wiki controls (and indeed nothing at all) should show on form until the object is finished loading +todo: widget form, remove wiki menu option todo: Add wikiContent field to form defintions at server so can hide or show in form customization - Also for dataLists? (for reporting not grid I mean)