- Apr 12, 2024
-
-
Konrad Mohrfeldt authored
This highlights events with negative durations. There might be other invalid event states that we could/should visualize so that they are adressed. These event states shoud probably be fixed in steering, but it might be good to spot them if they pop up.
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
Brightness filter doesn’t look good everywhere.
-
- Apr 10, 2024
-
-
Konrad Mohrfeldt authored
Up until now the calendar kept a single record of calendar events. This record was modified whenever new or other events needed to be displayed. Events were added/changed/removed imperatively (i.e. when entering/leaving conflict mode), which goes against the principle of unidirectional data flow embraced by Vue and other reactive frameworks. The calendar is now split into separate components most importantly the normal week view and a separate conflict view with separate state management. The state management itself has been reworked and improved so that it uses unidirectional data flow. These changes massively improve performance, simplify state management, and should make it easier to reason about the code (conflict mode was hard!). fixes #287
-
- Mar 29, 2024
-
-
Konrad Mohrfeldt authored
-
- Mar 28, 2024
-
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
This is a big one because it’s hard to make these kind of changes atomic. This changeset reworks the calendar component which is no longer dependent on bootstrap and vuex. As a consequence we can remove axios, bootstrap, and vuex because the calendar was the last remaining part of the code that was still using them. refs #127 #140 #261 #279
-
- Mar 26, 2024
-
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
fixes #207
-
- Feb 08, 2024
-
-
Konrad Mohrfeldt authored
refs #116
-
Konrad Mohrfeldt authored
-
- Nov 08, 2023
-
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
- Nov 07, 2023
-
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
We disabled preflight earlier so we can safely enable the base layer again.
-
- Nov 06, 2023
-
-
Konrad Mohrfeldt authored
We often find ourselves adding flex styles to buttons. Instead, this should be the default.
-
Konrad Mohrfeldt authored
Although the docs [1] specify a class on Popover components, this doesn’t seem to be passed down. We help ourselves with a selector for the data-headlessui-state attribute . [1] https://headlessui.com/vue/popover
-
- Nov 01, 2023
-
-
Konrad Mohrfeldt authored
-
- Oct 13, 2023
-
-
Konrad Mohrfeldt authored
- Jun 15, 2023
-
-
Konrad Mohrfeldt authored
-
Konrad Mohrfeldt authored
-
- Apr 09, 2023
-
-
Konrad Mohrfeldt authored
-
- Mar 28, 2023
-
-
Konrad Mohrfeldt authored
see 3c5042e5
-
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.
-
- Nov 24, 2022
-
-
Konrad Mohrfeldt authored
vue-full-calendar is not the official Vue package of fullcalendar, is only compatible with Vue 2.x, uses the outdated fullcalendar v3 library and contains a bunch of huge dependencies like jQuery and moment. The changes in this commit migrate the dashboard to fullcalendar v5 and the official vue component. Apart from that there have been a few refactors and fixes. These are: * remove irrelevant stub event callbacks * make view updates reactive instead of imperative (see removal of renderView method and introduction of renderWatcher) * rename methods to better reflect their purpose resolve → enterConflictMode resolveEvent → resolveConflict * emit events in modals instead of call to methods on this.$parent * let → const where applicable to prevent accidental reassignments * switch to for-of loops (from for-in) for better readability * fix some typos One other major change is that timeslot and collision data is no longer mixed with event data for fullcalendar and is assigned to the extendedProps property instead. As mentioned in fullcalendars documentation on event parsing [1], any data that fullcalendar does not handle on its own is moved into the extendedProps object with the explicit recommendation to put them there right from the start. We follow that recommendation. closes #94 [1] https://fullcalendar.io/docs/event-parsing
-
- Nov 18, 2022
-
-
Konrad Mohrfeldt authored
Making imperative DOM API calls to apply CSS classes is counter-productive when using a reactive frontend framework like Vue. DOM attributes should instead be assigned based on reactive data. fixes #117 and #118.
-
- Nov 10, 2022
-
-
Konrad Mohrfeldt authored
-
- Nov 09, 2022
-
-
Konrad Mohrfeldt authored
Notable changes: * Vue 2.6 to Vue 3 + compat migration. * Build system migration from vue-cli/webpack to Vite. * Application dependencies like bootstrap-vue, vue-router, vuex, or vue-toast-nofitication have been updated, if doing so was necessary or advisable for the Vue 3 migration. * Static file includes for the oidc-client in oidc_callback.html and oidc_callback_silentRenew.html have been removed in favor of automatic processing in the build system so that all assets are versioned and invalid cache hits are prevented. Fixes #53 and #110.
-
- Nov 25, 2021
-
-
Richard Blechinger authored
-
- Nov 18, 2021
-
-
Richard Blechinger authored
-
- Jul 23, 2021
-
-
Richard Blechinger authored
-
- Dec 15, 2020
-
-
Richard Blechinger authored
-
Richard Blechinger authored
-