- Apr 03, 2023
-
-
Konrad Mohrfeldt authored
Schedules that only run for a single day should display when that day is. refs #121
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
closes #133
-
Konrad Mohrfeldt authored
The tests could fail if some environment variables were already set or if the tests have already been executed.
-
- Mar 28, 2023
-
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
We’ve decided to move the show selector into the navbar because the selected show is the primary state of the dashboard from which almost all other state is derived. Apart from that we now have support for filtering the list based on active and inactive shows (and possible other criteria in the future) as it was suggested in #122.
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
see 3c5042e5
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
The playlist data is only available for the currently selected show. Any playlists used in other shows will not be available and we should gracefully handle that. This is a quick fix to address #132. A more permanent and helpful resolution is outlined in #135 and #136.
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
We currently don’t include the tailwind base module because it would interfere with the bootstrap styles. Unfortunately the tailwind base module also contains a lot of CSS properties that are used in various utility classes to allow fine-grained manipulation like `tw-translate-x-2` which would only set the `tw-translate-x` CSS property and all the real work happening in the `tw-transform` class which applies all these properties in a single `transform` rule. As we can’t include the tailwind base module because of said conflict, we should at least define some of the missing CSS properties.
-
- Mar 27, 2023
-
-
Konrad Mohrfeldt authored
Auto-formatters can’t know if we rely on any special white-space handling in our code, so they take the safe route and assume we do. In this case we don’t, so we can apply formatting that looks a little more sensible.
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
Some iteration semantics got mixed up when replacing remaining uses of `var` variable declarations in ae37fb6c. `var foo in bar` cannot be replaced with `const foo of bar` because the first will assign the iteration index of the current item to foo, whereas the second will assign the actual iteration item.
-
- Mar 24, 2023
-
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
- Feb 28, 2023
-
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
This re-implements the auth store with pinia. Other notable changes: * the OIDC client configuration and setup is now part of separate module that can be included by the OIDC callback routes and ensures that we always use the same OIDC client configuration. * Authorization headers for the steering and tank REST APIs are now set with an axios interceptor instead of specifying them for each API store action. refs #127
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
The show selection mechanism relied on the parent component to notify other components, even though the selected show is already part of the store and all component state can and should be derived from there.
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-