aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2022-05-10Add multiple header-color thresholdsTerry Truong
Also add tips count in info modal
2022-05-10Obtain scrollbar width dynamicallyTerry Truong
2022-05-10Make an overflown-root scroll to a searched nodeTerry Truong
Also make overflown-root header remain visible while scrolling
2022-05-10Remove search-focus upon new actionsTerry Truong
2022-05-10Fix border-shadow clipping by overflow:scrollTerry Truong
2022-05-10Enable display of active-root with overflowTerry Truong
2022-05-06Fix lack server querying when click-holding leavesTerry Truong
2022-05-06Remove redundant layout-retry in sweepLayout()Terry Truong
2022-05-05Avoid case where transitionend doesn't trigger for low animation-delayTerry Truong
2022-05-05Display common namesTerry Truong
Also add capitalizeWords() in util.ts, for more capitalization control
2022-05-05Make image copyright/link info retrieved upon info-modal openTerry Truong
2022-05-05Make server bulk-query for child nodesTerry Truong
Also remove /data/children queries, and query-depth functionality.
2022-05-05Make Tile use transitionend event instead of certain setTimeout()sTerry Truong
Did not replace watch variables with transition start, as this resulted in expanded tiles flashing fully-expanded on screen before getting overflow:hidden.
2022-05-04Make search-enter use user input, instead of first matchTerry Truong
2022-05-04Add prevention from starting search while in search/autoTerry Truong
2022-05-04Capitalize displayed node namesTerry Truong
2022-05-04Prevent search-suggestion-request delay for initial inputsTerry Truong
2022-05-04Add scripts for obtaining/sending/displaying wikipedia descriptionsTerry Truong
Add backend/data/enwiki/ directory containing scripts and instructive READMEs. Adjust some other scripts to generate 'eol_ids' sqlite table separate from 'names'. Make server respond to /data/desc requests, and have client TileInfo component display response data. Also adjust .gitignore entries to be root-relative.
2022-05-01Fix non-inclusion of canonical-names without english alt-namesTerry Truong
Also fix lack of placeholder-image display in tile-info modal.
2022-05-01Reduce some unnecessary tolMap updatesTerry Truong
2022-05-01Make name data English-specificTerry Truong
2022-05-01Add fuzzy-search via sqlite extension spellfix1Terry Truong
Also add delay between client search-suggestion requests when search input undergoes multiple quick changes
2022-05-01Use substring searchTerry Truong
Also display common-name in search suggestions, and add more-results indicator.
2022-05-01Enable search-suggestion sending/displaying/selectionTerry Truong
2022-04-30Make TileInfoModal display more dataTerry Truong
2022-04-30Add scripts for downloading/reviewing/cropping_and_resizing imagesTerry Truong
Also adjust client code to handle new format, and add backend/data/README.md explaining image production process.
2022-04-27Use EOL vernacular-names data for searchingTerry Truong
Add data/eolNamesToSqlite.py to read EOL vernacular-names data and add to sqlite db. Adjust server.py to handle search requests, and adjust SearchModal to make them.
2022-04-26Change data URL path formatTerry Truong
2022-04-26Add small sqrLayout optimisationTerry Truong
2022-04-26Make TolMap have Map typeTerry Truong
2022-04-26Have tol data in sqlite db, and add server script that accesses itTerry Truong
Adapt otol-data-converting script to generate otol.db, add server.py script that provides access to that db, and adapt the app to query the server for tol data when needed.
2022-04-25Add tile visual indicators for many-tiles and phylogenetic-supportTerry Truong
2022-04-25Adapt to handle open-tree-of-life dataTerry Truong
Added data_otol/ with script that converts data from 'Open Tree of Life' release 13.4 into a JSON form. Moved old tree-of-life data and images into data_tol_old/. Added TolMap type to tol.ts, changed TolNode, and adapted other code to handle it. Temporarily disabling tile images until image data is added.
2022-04-24Fix z-index not being higher for tiles being expanded/collapsedTerry Truong
2022-03-29Make Tile's CSS-changes-during-transition apply during search and auto-modeTerry Truong
Implemented by having Tile watch pos+dims fields of it's LayoutNode to determine whether a transition is taking place.
2022-03-29Update comments, adjust names, do minor refactorsTerry Truong
2022-03-28Add info-icon to non-leaf tilesTerry Truong
2022-03-28Simplify info-icon code by removing top-level optionsTerry Truong
2022-03-28Make option passing less irregularTerry Truong
2022-03-28Merge TileImg back into Tile, adding nonAbsPos prop for AncestryBar usageTerry Truong
2022-03-28Convert SVG icons into icon componentsTerry Truong
2022-03-28Split lib.ts into layout.ts and util.tsTerry Truong
2022-03-28Move TolNode code to tol.tsTerry Truong
2022-03-28Rename Settings to SettingsPane, and ParentBar to AncestryBarTerry 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 move-across/down prioritise higher dCountTerry Truong
2022-03-28Make auto-mode more uniformly random and avoid undoing previous actionsTerry Truong
2022-03-27Add faster rect-layout algorithmTerry Truong
2022-03-27Add sweep-to-parent settingTerry Truong
2022-03-27Simplify Tile transition-on-expand/collapse codeTerry Truong