aboutsummaryrefslogtreecommitdiff
path: root/src/lib.ts
AgeCommit message (Collapse)Author
2022-06-28Add getImagePath() to lib.tsTerry Truong
2022-06-28Convert server code to CGI scriptTerry Truong
Also adjust server-client API, for clarity/consistency
2022-06-27Enable client directly using server URL, while avoiding CORS restrictionsTerry Truong
2022-06-26Clean up code in SearchModalTerry Truong
Also allow cycling to top/bottom of search suggestions
2022-06-26Refactor TileInfoModalTerry Truong
Also change server info-response format to include sub-node common-names
2022-06-25Clean up code in layout.ts and util.tsTerry Truong
2022-06-25Clean up code in App.vueTerry Truong
2022-06-25Reduce degrees-of-variance in options setTerry Truong
Also add size prop to IconButton
2022-06-25Convert UI options towards using bg/alt-color setTerry Truong
2022-06-24Adjust some option namesTerry Truong
2022-06-24Move utility functions into util.tsTerry Truong
2022-06-24Add type annotations for UI optionsTerry Truong
2022-06-23Make default settings screen-size dependentTerry Truong
Also, only save settings when the user has made a change.
2022-06-20Increase type-consistency via server-classes and client-typesTerry Truong
2022-06-17Avoid capitalisation of apostrophe-s in tile-namesTerry Truong
2022-05-27Add back code that dynamically gets scrollbar widthsTerry Truong
Was deleted due to apparent redundancy. Turns out it was still needed for overflown-node layout.
2022-05-27Use static-layout for ancestry-bar and tutorial-paneTerry Truong
2022-05-24Clean up tutorial disabled/trigger-action codeTerry Truong
2022-05-23Make tutorial disable features until introducedTerry Truong
Also add tutorial finish button and close icon
2022-03-28Split lib.ts into layout.ts and util.tsTerry Truong
2022-03-28Move TolNode code to tol.tsTerry Truong
2022-03-28Enable auto-mode to trigger expand/collapse-fail animationsTerry Truong
Done by sending a signal to a failed-operation's LayoutNode's Tile component via a watched property on LayoutNode. Also added code to prevent auto-mode from retrying a failed expand/collapse. Not an ideal solution, but signalling via LayoutNode is more general, and arguably cleaner, than the previous method of triggering fail animations by getting Tile to pass a callback upward as event data.
2022-03-28Make auto-mode more uniformly random and avoid undoing previous actionsTerry Truong
2022-03-27Add faster rect-layout algorithmTerry Truong
2022-03-26Make auto-mode current-node-based, with focus indicationTerry Truong
2022-03-26Highlight search resultTerry Truong
2022-03-26Add LayoutMap to lib.ts, with updating via tryLayout()Terry Truong
Did this to allow convenient updating of layout map after expand-to-view, or other cases where tryLayout() is used with allowCollapse enabled.
2022-03-25Add tolNode parent pointers, tolMap, and layoutMapTerry Truong
2022-03-23Make parent-bar-tile clicks restore hidden parentsTerry Truong
2022-03-23Move root-tile boundary-offset handling to TileTreeTerry Truong
2022-03-22Replace LayoutTree class with plain functionsTerry Truong
2022-03-22Hide ancestors on double-clickTerry Truong
2022-03-22Enable layouting with allowCollapseTerry Truong
2022-03-22Add more adaptive min-cell-size for rect-layoutTerry Truong
2022-03-21Fix minor empSpc miscalculation and some commentsTerry Truong
2022-03-21Rename layout functionsTerry Truong
2022-03-21Avoid changing DOM-bound tree before new layout is determinedTerry Truong
Also made layout functions modify the passed-in tree instead of generating a new tree. And added type LayoutTreeChg.
2022-03-20Fix small tile-alignment bugTerry Truong
2022-03-19Add alternating background colors and 'depth' field. Add small image shadows.Terry Truong
2022-03-18Make commenting format more conventionalTerry Truong
2022-03-18Clean up rectLayoutFn() and sweepLayoutFn() code. Tweak sweptNodesPrio settings.Terry Truong
2022-03-16Clean up sqrLayoutFn() codeTerry Truong
2022-03-16Clean up .vue code, make root tile hide overflowTerry Truong
2022-03-16Add swept-nodes-priority optionTerry Truong
2022-03-16Use outlines and pseudo-divs instead of bordersTerry Truong
2022-03-16Fix center-prop typescript error, add allocated-array type annotationsTerry Truong
2022-03-15Make compacted sweep-to-parent work recursively. Fix various spacing ↵Terry Truong
inconsistencies.
2022-03-15Make sweep-to-parent layout waste less spaceTerry Truong
2022-03-15Make layout funcs return node with best-fit dims, remove usedDimsTerry Truong
2022-03-14Change layout.ts to lib.tsTerry Truong