From 15f532d37ac26458165de92bc4480fa01d831e04 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Sun, 2 Oct 2022 20:00:36 +0200 Subject: [PATCH] feat: filters script setup --- src/components/list/partials/filter-popup.vue | 18 +- src/components/list/partials/filters.vue | 911 +++++++++--------- src/composables/taskList.ts | 61 +- src/helpers/case.ts | 5 + src/helpers/time/parseDateOrString.ts | 2 +- src/helpers/utils.ts | 2 +- src/modelTypes/ISavedFilter.ts | 4 +- src/services/abstractService.ts | 2 +- src/types/IFilter.ts | 39 +- src/types/IParams.ts | 38 + src/views/list/ListList.vue | 2 +- 11 files changed, 595 insertions(+), 489 deletions(-) create mode 100644 src/types/IParams.ts diff --git a/src/components/list/partials/filter-popup.vue b/src/components/list/partials/filter-popup.vue index 20d57ca58..7220735ba 100644 --- a/src/components/list/partials/filter-popup.vue +++ b/src/components/list/partials/filter-popup.vue @@ -20,7 +20,7 @@ :overflow="true" variant="hint-modal" > - -import {useLabelStore} from '@/stores/labels' +