| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Frontend: Change navbar links | Baitinq | 2022-10-30 | 1 | -4/+4 |
| | | | | | Now logo points to / and "Made by Baitinq" to the project's git | ||||
| * | Frontend: URL encode and decode the search_query | Baitinq | 2022-10-30 | 1 | -2/+2 |
| | | |||||
| * | Frontend: Implement support for searching with /search/* routes | Baitinq | 2022-10-30 | 2 | -6/+37 |
| | | | | | | | | We now immediately search if we are in a /search/* route. This implementation is not that good as we have to duplicate the code that runs both when creating the component in /search/* route and when submitting a search query. | ||||
| * | Frontend: Update yew to follow master | Baitinq | 2022-10-30 | 2 | -4/+4 |
| | | | | | This enables us to use the new Router API | ||||
| * | Frontend: Setup skeleton route support | Baitinq | 2022-10-30 | 1 | -1/+34 |
| | | | | | | We now have the / and /search/ route boilerplate. This will allow us to switch to the /search/ route when searching. | ||||
| * | Frontend: Move app-specific code to app.rs | Baitinq | 2022-10-30 | 2 | -184/+180 |
| | | |||||
| * | Misc: Add local lib crate to share common structs | Baitinq | 2022-10-30 | 1 | -43/+2 |
| | | |||||
| * | Frontend: Add props to the OSSE Component | Baitinq | 2022-10-30 | 1 | -3/+9 |
| | | | | | We can now set the API endpoint in the props. | ||||
| * | Frontend: Change OSSE component into a struct component | Baitinq | 2022-10-30 | 1 | -76/+88 |
| | | | | | I think this improves readability for components with state. | ||||
| * | Crawler+Indexer+Frontend: Rename structs to follow logical relations | Baitinq | 2022-10-29 | 1 | -10/+10 |
| | | | | | | | Now Resource is CrawledResource as it is created by the crawler, and the previous CrawledResource is now IndexedResource as its created by the indexer. | ||||
| * | Frontend: Use ResultComponent to display search results | Baitinq | 2022-10-29 | 1 | -3/+14 |
| | | |||||
| * | Frontend: Show results in reverse order with priority | Baitinq | 2022-10-28 | 1 | -2/+2 |
| | | |||||
| * | Frontend: Show result website's title and description | Baitinq | 2022-10-28 | 1 | -2/+4 |
| | | |||||
| * | Frontend: Improve responsive layout | Baitinq | 2022-10-28 | 1 | -34/+37 |
| | | | | | | We now kinda use flexbox i think? Needs lots of work regarding centering the search box. Kind of functional for now:) | ||||
| * | Frontend: Make the results state Optional | Baitinq | 2022-10-28 | 1 | -15/+27 |
| | | | | | | We now return "No result!" if the user has actually searched for something and no results were found. | ||||
| * | Misc: Add TODOs | Baitinq | 2022-10-28 | 1 | -0/+2 |
| | | |||||
| * | Frontend: Html: Set footer at the bottom of the page | Baitinq | 2022-10-28 | 1 | -36/+38 |
| | | |||||
| * | Frontend: Logically structure html | Baitinq | 2022-10-28 | 1 | -35/+39 |
| | | |||||
| * | Fronted: Order search results by priority | Baitinq | 2022-10-27 | 1 | -1/+17 |
| | | | | | | | We do this by implementing the PartialOrd and Ord traits into the CrawledResource struct and then using Itertools::sorted() on the display iterator. | ||||
| * | Frontend: Use display_results() function for rendering CrawledResources | Baitinq | 2022-10-27 | 1 | -5/+14 |
| | | |||||
| * | Frontend: Fetch results from indexer | Baitinq | 2022-10-27 | 1 | -32/+46 |
| | | |||||
| * | Frontend: Add results field to the state and set dummy results | Baitinq | 2022-10-26 | 1 | -2/+46 |
| | | |||||
| * | Frontend: Add basic search_query state | Baitinq | 2022-10-26 | 1 | -6/+51 |
| | | |||||
| * | Frontend: Add basic layout | Baitinq | 2022-10-26 | 1 | -1/+37 |
| | | |||||
| * | Client->Frontend: Create yew frontend skeleton | Baitinq | 2022-10-24 | 1 | -0/+12 |
| We have replaced the client with a yew frontend. | |||||