aboutsummaryrefslogtreecommitdiff
path: root/src/lib.ts
AgeCommit message (Collapse)Author
2022-07-07Add auto-hiding of ancestors on leaf-clickTerry Truong
2022-07-07Add somewhat-dynamic font-sizes in headersTerry Truong
2022-07-06Use URLSearchParams instead of plain stringsTerry Truong
2022-07-05Add loading-from-server indicatorTerry Truong
2022-07-04Add help-info contentTerry Truong
2022-07-03Add SCollapsible componentTerry Truong
Also update info-modal source-info styling
2022-07-03Add styling, mainly for TileInfoModal and SettingsTerry Truong
2022-07-02Adjust tutorial contentTerry Truong
2022-07-01Account for compound-node info-lookup sub-name-denoted node absenceTerry Truong
Return a null entry in such cases, and have client indicate this with tile-info message.
2022-07-01Generate 3 reduced trees, keeping the original, and serve only thoseTerry Truong
Generate a 'trimmed' reduced tree instead of changing the original. Generate an 'images-only' reduced tree, and use it as the default. Combine 'picked' reduced tree code with that of other reduced trees. Adapt server API to allow selecting between more than 2 trees. Add client setting for selecting between 3 trees.
2022-06-30For large screens, place tutorial-pane on bottom-rightTerry Truong
2022-06-30Add ui-option touchDeviceTerry Truong
2022-06-29Add setting for disabling keyboard shortcutsTerry Truong
Avoid showing the setting on touch devices
2022-06-29Refactor to provide default-option access to non-top-level componentsTerry Truong
2022-06-29Avoid layout/ui-option saved-string name-collisionsTerry Truong
Assistively add OptionType type
2022-06-28Use double-taps on mobileTerry Truong
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