aboutsummaryrefslogtreecommitdiff
path: root/_wui/index.html
AgeCommit message (Collapse)Author
2023-12-22_wui: implement button to stop executionShulhan
The Stop button call "DELETE /awwan/api/execute?id=" with id is the previous execution ID. Implements: https://todo.sr.ht/~shulhan/awwan/9
2023-12-01_wui: disable button "Local" and "Play" when clickedShulhan
Once the execution completed, both buttons will be enabled again. While at it, add an icon to show the execution status.
2023-11-21_wui: update editor componentShulhan
Changes, * fix paste that always end with newline * fix editor content that got wrapped due to width * update layout without using float * replace execCommand with Selection
2023-11-20_wui: refactoring the layout once and for allShulhan
Last weeked, I spent one day to fix the resizer to works with flex layout, and its hard and not optimal.
2023-11-19_wui: various improvementsShulhan
Changes, * Add fixed height on output wrapper * Add space between Encrypt and Decrypt button * Add padding in Execute actions component * Change the wording of "Execute" to "Execute line"
2023-11-19_wui: wrap path if its overflow instead of using scrollShulhan
If we dive into many sub directories, the path in VFS may have horizontal scroll in it. To minimize scroll, make the crumbs wrapped to bottom.
2023-11-19_wui: fix editor content grow outside browser widthShulhan
When file opened and the content length is greater than browser length, the editor width also growth based on the content. This changes fix this issue by using flex-basis (similar to setting width) and "overflow:auto" on the class awwan-content.
2023-11-17_wui: add vertical resizer, to resize between VFS and editorShulhan
While at it, refactoring the layout using flex.
2023-11-15_wui: update vfs componentShulhan
This changes allow user browse the crumb in path and item in the list using tab key. While at it, fix the layout to make VFS and editor aligned.
2023-11-11_wui: implement file filterShulhan
This changes move the text input for creating new file above the list. Filling the text field will filter the list based on the node name using regular expression. Another changes is for node with type directory now suffixed with "/".
2023-11-11_wui: various enhancementsShulhan
Changes, * The "File" tag now highlighted to distinguish with file name. * The "Execute" action moved to replace the Output, so we have some additional horizontal space. * The "Output" tag removed. * Fix layout on mobile devices where height is set to static.
2023-10-29all: rename directory "_www" to "_wui"Shulhan
Since we now have website, the directory name "_www" become misleading. The actual website files is located under "_www/doc", the "_www" directory is for web-user interface which includes documentation that has the same content as our websites.