Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Update getForm to return form with ancillary data | 2025-08-08 | -1/+15 | |
| | ||||
* | Add some font weights back where they make sense | 2025-07-22 | -1/+5 | |
| | ||||
* | Render section content with markdown renderer | 2025-07-22 | -20/+9 | |
| | ||||
* | include more font weights | 2025-07-22 | -1/+1 | |
| | ||||
* | Support left alignment in section headers | 2025-06-01 | -2/+13 | |
| | ||||
* | Re-map slugged vote options to human form when upstreaming to form | 2024-07-11 | -1/+16 | |
| | ||||
* | Add voteReducer to rootReducer Redux configuration | 2024-07-11 | -1/+3 | |
| | ||||
* | Disable StrictMode for React | 2024-07-11 | -17/+15 | |
| | ||||
* | Handle voting component callbacks | 2024-07-11 | -3/+21 | |
| | ||||
* | Add new vote component and voting redux store | 2024-07-11 | -0/+323 | |
| | ||||
* | Prevent flash of huge loading bar on suspense loaded routes | 2024-07-10 | -6/+95 | |
| | ||||
* | Improve the styles on the radio component to make it easier to use | 2024-07-10 | -22/+46 | |
| | | | | | | | | | Increases the click area, the visibility that an option has been selected, and the visibility that an item has been hovered on. Additionally, adds an instruction ahead of the component instructing users to select an option incase it was no longer clear that the field is a radio select. | |||
* | Unit tests for Navigation component | 2024-07-10 | -1/+49 | |
| | ||||
* | Set Sentry user data when authenticating | 2024-07-10 | -0/+11 | |
| | ||||
* | Add new test suite for testing authorization splash | 2024-07-10 | -0/+62 | |
| | ||||
* | Update App test to render with Redux store | 2024-07-10 | -2/+3 | |
| | ||||
* | Add new testing utility for rendering with Redux stores | 2024-07-10 | -0/+36 | |
| | ||||
* | Gracefully handle user cancelled authorization | 2024-07-10 | -3/+12 | |
| | ||||
* | Add AuthorizationSplash to display above content when auth in progress | 2024-07-10 | -0/+45 | |
| | ||||
* | Send dispatches to store on authorization state attempt changes | 2024-07-10 | -2/+23 | |
| | ||||
* | Wrap application in Redux Provider with new store | 2024-07-10 | -1/+6 | |
| | ||||
* | Add new redux stores and slices for authorization state | 2024-07-10 | -0/+41 | |
| | ||||
* | Reconfigure Sentry with new features | 2024-07-10 | -4/+24 | |
| | ||||
* | Update tests to work with new Jest version | 2024-07-10 | -3/+1 | |
| | ||||
* | Remove unused linting ignores | 2024-07-10 | -3/+1 | |
| | ||||
* | Update code component to use @uiw/react-codemirror | 2024-07-10 | -22/+6 | |
| | ||||
* | Update test to reflect new green | 2024-07-03 | -1/+1 | |
| | ||||
* | Remove unnecessary debug logging from TimeZone | 2024-07-03 | -4/+0 | |
| | ||||
* | Convert TimeZone to functional component to fix lazy loading bug | 2024-07-03 | -70/+87 | |
| | ||||
* | Update success colour | 2024-07-03 | -1/+1 | |
| | ||||
* | Update tests with new OAuth2 message parameters | 2024-07-03 | -1/+2 | |
| | ||||
* | Explicitly tag PyDis messages for integrity | 2024-07-03 | -1/+6 | |
| | ||||
* | Stringify received data in OAuth2 Logging | 2024-07-03 | -1/+1 | |
| | ||||
* | Add more logging for OAuth2 state mismatches | 2024-07-03 | -1/+1 | |
| | ||||
* | Add some debug logging to timezone autoselection | 2024-07-03 | -4/+8 | |
| | ||||
* | Add additional logging for OAuth2 state mismatches | 2024-07-03 | -1/+1 | |
| | ||||
* | Better format copy about timezones | 2024-07-03 | -2/+2 | |
| | ||||
* | Add new field for capturing timezones | 2024-07-03 | -1/+330 | |
| | ||||
* | Add 404 Page | 2022-07-19 | -8/+61 | |
| | | | | Signed-off-by: Hassan Abouelela <[email protected]> | |||
* | Simplify Navigation Component | 2022-07-19 | -120/+101 | |
| | | | | | | | Extract the styles from the navigation component to common styles, and convert it to a function component. Signed-off-by: Hassan Abouelela <[email protected]> | |||
* | Clear Authorization On Error | 2022-07-14 | -2/+14 | |
| | | | | | | | Deletes the OAuth cookies when an error happens during submit. This is a stopgap till we fix the authorization issues. Signed-off-by: Hassan Abouelela <[email protected]> | |||
* | Fix Failing jest.spyOn | 2022-07-14 | -1/+5 | |
| | | | | | | | | | | | Version 1.2.206 of swc introduces a breaking change which makes jest.spyOn not work with our configuration. The response from the swc maintainer seems like a complete mess, so I won't touch it, and just use something else. See issue 5059 on https://github.com/swc-project/swc/issues Signed-off-by: Hassan Abouelela <[email protected]> | |||
* | Wrap Tests In Act | 2022-07-14 | -31/+32 | |
| | | | | | | Wrap the tests that were raising warnings in act statements. Signed-off-by: Hassan Abouelela <[email protected]> | |||
* | Base refresh timeout on diff from current time | 2022-07-02 | -1/+1 | |
| | | | | Previously the logic was using the expiry date's unix timestamp as if it was a number of ms until it expired. This caused the timeout to be far after the actual token expiry. | |||
* | Codify Question State Type | 2022-07-01 | -171/+164 | |
| | | | | | | | | Uses an interface to define the RenderedQuestion component state, to reduce the required type and existence checks in the rest of the codebase. Signed-off-by: Hassan Abouelela <[email protected]> | |||
* | Remove Unused Prop From ErrorPage | 2022-07-01 | -3/+1 | |
| | | | | Signed-off-by: Hassan Abouelela <[email protected]> | |||
* | Improve ErrorMessage Interface | 2022-07-01 | -7/+8 | |
| | | | | | | | Unify the string and element types on the interface to clarify they are mutually exclusive. Signed-off-by: Hassan Abouelela <[email protected]> | |||
* | Style Changes | 2022-07-01 | -3/+3 | |
| | | | | Signed-off-by: Hassan Abouelela <[email protected]> | |||
* | Restructure FormPage | 2022-07-01 | -362/+545 | |
| | | | | | | | | | | | | | The main FormPage component had gotten very out of hand, with many moving parts that were hard to parse, understand, or modify. This refactors breaks things up into separate files with better defined goals. Most changes are just straight copies without much change, however some structural changes have been introduced as a foundation for improving the app. Signed-off-by: Hassan Abouelela <[email protected]> | |||
* | Display Test Names For Unittest Failures | 2022-07-01 | -5/+33 | |
| | | | | Signed-off-by: Hassan Abouelela <[email protected]> |