aboutsummaryrefslogtreecommitdiff
path: root/src/components/TileInfoModal.vue
AgeCommit message (Collapse)Author
2022-08-30Display IUCN status in TileInfoModalTerry Truong
2022-07-17Add more 'title' tooltipsTerry Truong
2022-07-12Finalise for version 1.0.0Terry Truong
2022-07-12Increase adherence to Vue's Style GuideTerry Truong
Make components have multi-word names. Make all <v-for>s have a 'key' attribute. Use scoped styles. Also add sourcemap generation.
2022-07-10Update project-level and client-side documentationTerry Truong
2022-07-10Add FAQs section to help infoTerry Truong
2022-07-09Fix search suggestions wrong-text on mobileTerry Truong
Turns out the input wasn't converted to lowercase before being matched with suggestion data, and this was more noticeable on mobile due to auto-capitalisation
2022-07-09Fix links-to-node failing on loadTerry Truong
Was setting SERVER_URL incorrectly Also changed server API to include 'excl' param
2022-07-08Adjust SCollapsible, allowing for v-model and @openTerry Truong
2022-07-06Use URLSearchParams instead of plain stringsTerry Truong
2022-07-06Add link-to-node functionalityTerry Truong
2022-07-05Remove some redundant display:block specifiersTerry Truong
2022-07-04Update IconButton to maintain equal width/heightTerry 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-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-30Avoid displaying empty img-src infoTerry Truong
2022-06-29Refactor to provide default-option access to non-top-level componentsTerry Truong
2022-06-29Remove constant-scrollbar-gap for ancestry-barTerry Truong
Avoided having overflow:auto cause tile-overlapping scrollbar by using less tile-padding. Trying to solve this by dynamically detecting overflow seemed to get messy.
2022-06-29Make links open in new tabTerry Truong
Add external-link icons
2022-06-29Make tile-info image link to source-URLTerry Truong
2022-06-29Resolve info-modal size-jump after getting info responseTerry Truong
Make App get the info response, and pass that into TileInfoModal. Attempting to solve this via transitions doesn't seem to work, as transitioning a height to 'auto' seems disallowed.
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-27Add getServerResponse()Terry Truong
2022-06-27In .vue files, move <template> sections to topTerry 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-25Reduce degrees-of-variance in options setTerry Truong
Also add size prop to IconButton
2022-06-24Move utility functions into util.tsTerry Truong
2022-06-24Add type annotations for UI optionsTerry Truong
2022-06-23Adjust component event namesTerry Truong
2022-06-20Remove scrims from tile-info-modal imagesTerry Truong
2022-06-20Increase type-consistency via server-classes and client-typesTerry Truong
2022-06-11Add links to cc-license pagesTerry Truong
2022-06-11Adjust server+client code to handle merged image setsTerry Truong
2022-06-04Add tile-info otol linksTerry Truong
2022-05-24Don't show blank image in info-modal for for compound-image with only 1 ↵Terry Truong
sub-image
2022-05-23Make tutorial disable features until introducedTerry Truong
Also add tutorial finish button and close icon
2022-05-23Display separate images tile-info for compound-image nodeTerry Truong
2022-05-23Make small info-modal fixesTerry Truong
2022-05-23Display 'compound images'Terry Truong
Adjust genLinkedImgs.py to associate multiple images to compound-nodes. Adjust server to send multiple image filenames for such nodes. Adjust Tile and TileInfoModal to display those compound-images.
2022-05-22Display multiple descriptions for compound-nodesTerry Truong
2022-05-18Add wikipedia-link to tile-info displayTerry Truong
Add 'wiki_id' and 'from_dbp' columns to 'descs' table, adjust dbpedia data to include wikipedia IDs, adjust data generations scripts, make server send extra data, and make TileInfo display it.
2022-05-13Fix info-modal not display image for composite-nodesTerry Truong
2022-05-13Fix inaccurate tile-info data when using reduced treeTerry Truong
2022-05-12Enable info-display for search suggestionsTerry Truong
Add info-icon to SearchModal, sending event when clicked. Change App to allow info-modal display on top of search-modal. Also make info-icon-click events send a node name instead of a LayoutNode, and make TileInfoModal and server get/send additional node info, seeing as the client might not have info about the node's common name, tips, etc, anymore.