| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2021-08-03 | Implement desired query logic. | -7/+14 | ||
| 2021-08-03 | Convert data structure for query. | -1/+10 | ||
| Was list[str], is now dict[str, set[str]], organized by category. | ||||
| 2021-08-03 | split up checkbox options in query params | -21/+34 | ||
| I have added functionality to the front end to split up the checkbox options into separate query params. This will make it easier to parse what has been selected. | ||||
| 2021-08-03 | Restructure table of resources for new query logic. | -23/+20 | ||
| 2021-08-03 | Create Resource type annotation. | -3/+3 | ||
| 2021-07-25 | remove redundant variable declaration | -2/+1 | ||
| 2021-07-25 | refactor search function for resources | -10/+9 | ||
| 2021-07-25 | working demo of smart resources search | -11/+69 | ||
| I have incorporated a search that allows users to check boxes to filter resources. This is a working version, but the algo for searching likely needs to be modified. The frontend also needs some style updates. All necessary functionality should be present now though. | ||||
| 2021-07-24 | Updated type annotations; get_resources_meta now returns a dict of sorted ↵ | -18/+10 | ||
| lists of strings in title-case. | ||||
| 2021-07-24 | Added type annotations; refactored. | -13/+15 | ||
| 2021-07-24 | Remove extra newline from end of file (there is now one newline). | -1/+0 | ||
| 2021-07-24 | add constant for resource tags. Add Functional front end | -35/+71 | ||
| This change adds a fully functional front end menu for testing. This is a very rough outline and will need a bit of UI and UX love to get working fully. Should act as an example of functionality | ||||
| 2021-07-24 | add function to gather tags from resource yaml files | -0/+23 | ||
| I added a function to utils to load all the tags from the resources, this should allow all the tags to be loaded once and exist in memory. | ||||
| 2021-07-23 | change resources to prepare for smart resource search | -93/+105 | ||