@dative-gpi/foundation-shared-components 1.0.129 → 1.0.130-maps2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/FSBreadcrumbs.vue +20 -12
- package/components/FSChip.vue +2 -2
- package/components/FSDialogMenu.vue +17 -8
- package/components/FSDialogRemove.vue +1 -1
- package/components/FSFadeOut.vue +1 -1
- package/components/FSIconCard.vue +26 -3
- package/components/FSInstantPicker.vue +266 -0
- package/components/FSPlayButtons.vue +72 -0
- package/components/FSProgressBar.vue +94 -0
- package/components/FSSpan.vue +8 -5
- package/components/FSText.vue +7 -5
- package/components/deviceOrganisations/FSStatusRichCard.vue +170 -0
- package/components/fields/FSAutocompleteField.vue +36 -52
- package/components/fields/FSDateField.vue +1 -0
- package/components/fields/FSSelectField.vue +41 -53
- package/components/fields/FSTermField.vue +11 -8
- package/components/fields/FSTranslateRichTextField.vue +17 -2
- package/components/fields/periodicField/FSPeriodicWeeklyField.vue +21 -11
- package/components/lists/FSDataTableUI.vue +30 -19
- package/components/map/FSMap.vue +19 -10
- package/components/map/FSMapMarker.vue +4 -4
- package/components/map/FSMapMarkerClusterGroup.vue +1 -1
- package/components/map/FSMapOverlay.vue +34 -19
- package/components/tiles/FSGroupTileUI.vue +14 -1
- package/components/tiles/FSLocationTileUI.vue +1 -1
- package/components/tiles/FSSimpleTileUI.vue +1 -1
- package/components/views/desktop/FSBaseDefaultDesktopView.vue +8 -7
- package/components/views/desktop/FSBaseEntityDesktopView.vue +1 -0
- package/components/views/mobile/FSBaseDefaultMobileView.vue +8 -7
- package/components/views/mobile/FSBaseEntityMobileView.vue +1 -0
- package/composables/useSlots.ts +2 -1
- package/models/rules.ts +5 -2
- package/package.json +4 -4
- package/styles/components/fs_breadcrumbs.scss +19 -31
- package/styles/components/fs_button.scss +7 -5
- package/styles/components/fs_chip.scss +8 -6
- package/styles/components/fs_clickable.scss +14 -12
- package/styles/components/fs_data_iterator_item.scss +12 -10
- package/styles/components/fs_dialog.scss +1 -1
- package/styles/components/fs_dialog_menu.scss +4 -2
- package/styles/components/fs_image_card.scss +5 -3
- package/styles/components/fs_map.scss +48 -16
- package/styles/components/fs_password_field.scss +4 -2
- package/styles/components/fs_progress_bar.scss +14 -0
- package/styles/components/fs_select_field.scss +4 -0
- package/styles/components/fs_span.scss +12 -4
- package/styles/components/fs_status_rich_card.scss +13 -0
- package/styles/components/fs_tabs.scss +9 -5
- package/styles/components/fs_tag.scss +9 -7
- package/styles/components/index.scss +2 -0
- package/styles/globals/overrides.scss +11 -4
- package/styles/globals/scrollbars.scss +10 -0
- package/utils/index.ts +1 -0
- package/utils/operations.ts +69 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<v-breadcrumbs
|
|
3
3
|
class="fs-breadcrumbs"
|
|
4
|
-
:items="
|
|
4
|
+
:items="items"
|
|
5
5
|
:style="style"
|
|
6
6
|
v-bind="$attrs"
|
|
7
7
|
>
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
#title="{ item }"
|
|
10
10
|
>
|
|
11
11
|
<FSSpan
|
|
12
|
-
|
|
12
|
+
class="fs-breadcrumbs-label"
|
|
13
13
|
>
|
|
14
14
|
{{ item.title }}
|
|
15
15
|
</FSSpan>
|
|
@@ -31,7 +31,9 @@
|
|
|
31
31
|
import { computed, defineComponent, type PropType, type StyleValue } from "vue";
|
|
32
32
|
|
|
33
33
|
import { ColorEnum, type FSBreadcrumbItem } from "@dative-gpi/foundation-shared-components/models";
|
|
34
|
-
import { useColors } from "@dative-gpi/foundation-shared-components/composables";
|
|
34
|
+
import { useBreakpoints, useColors } from "@dative-gpi/foundation-shared-components/composables";
|
|
35
|
+
|
|
36
|
+
import { sizeToVar } from "../utils";
|
|
35
37
|
|
|
36
38
|
import FSSpan from "./FSSpan.vue";
|
|
37
39
|
import FSIcon from "./FSIcon.vue";
|
|
@@ -49,28 +51,34 @@ export default defineComponent({
|
|
|
49
51
|
default: () => []
|
|
50
52
|
}
|
|
51
53
|
},
|
|
52
|
-
setup() {
|
|
54
|
+
setup(props) {
|
|
55
|
+
const { isExtraSmall } = useBreakpoints();
|
|
53
56
|
const { getColors } = useColors();
|
|
54
57
|
|
|
55
58
|
const darks = getColors(ColorEnum.Dark);
|
|
56
59
|
|
|
57
60
|
const style = computed((): StyleValue => ({
|
|
61
|
+
"--fs-breadcrumbs-height" : sizeToVar(["20px", "16px"]),
|
|
58
62
|
"--fs-breadcrumbs-color" : darks.dark,
|
|
59
63
|
"--fs-breadcrumbs-active-color" : darks.base,
|
|
60
64
|
"--fs-breadcrumbs-disabled-color": darks.soft
|
|
61
65
|
}));
|
|
62
66
|
|
|
63
|
-
const
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
+
const items = computed((): FSBreadcrumbItem[] => {
|
|
68
|
+
if (isExtraSmall.value && props.items.length > 3) {
|
|
69
|
+
const mobileItems: FSBreadcrumbItem[] = [0, -2, -1].map((index) => props.items.at(index)!)
|
|
70
|
+
mobileItems.splice(1, 0, {
|
|
71
|
+
title : "...",
|
|
72
|
+
disabled : true
|
|
73
|
+
});
|
|
74
|
+
return mobileItems;
|
|
67
75
|
}
|
|
68
|
-
return
|
|
69
|
-
};
|
|
76
|
+
return props.items;
|
|
77
|
+
});
|
|
70
78
|
|
|
71
79
|
return {
|
|
72
|
-
|
|
73
|
-
|
|
80
|
+
items,
|
|
81
|
+
style
|
|
74
82
|
};
|
|
75
83
|
}
|
|
76
84
|
});
|
package/components/FSChip.vue
CHANGED
|
@@ -103,9 +103,9 @@ export default defineComponent({
|
|
|
103
103
|
default: false
|
|
104
104
|
},
|
|
105
105
|
align: {
|
|
106
|
-
type: String as PropType<"center-
|
|
106
|
+
type: String as PropType<"center-center" | "center-left">,
|
|
107
107
|
required: false,
|
|
108
|
-
default: "center-
|
|
108
|
+
default: "center-center"
|
|
109
109
|
}
|
|
110
110
|
},
|
|
111
111
|
setup(props) {
|
|
@@ -5,9 +5,8 @@
|
|
|
5
5
|
v-bind="$attrs"
|
|
6
6
|
>
|
|
7
7
|
<FSCard
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
gap="24px"
|
|
8
|
+
:padding="$props.padding"
|
|
9
|
+
:gap="$props.gap"
|
|
11
10
|
:color="$props.color"
|
|
12
11
|
:class="classes"
|
|
13
12
|
>
|
|
@@ -38,11 +37,21 @@ export default defineComponent({
|
|
|
38
37
|
FSCard
|
|
39
38
|
},
|
|
40
39
|
props: {
|
|
41
|
-
|
|
40
|
+
classes: {
|
|
42
41
|
type: [Array, String] as PropType<string[] | string | null>,
|
|
43
42
|
required: false,
|
|
44
43
|
default: null
|
|
45
44
|
},
|
|
45
|
+
padding: {
|
|
46
|
+
type: [Array, String, Number] as PropType<string[] | number[] | string | number | null>,
|
|
47
|
+
required: false,
|
|
48
|
+
default: "8px"
|
|
49
|
+
},
|
|
50
|
+
gap: {
|
|
51
|
+
type: [Array, String, Number] as PropType<string[] | number[] | string | number | null>,
|
|
52
|
+
required: false,
|
|
53
|
+
default: "24px"
|
|
54
|
+
},
|
|
46
55
|
modelValue: {
|
|
47
56
|
type: Boolean,
|
|
48
57
|
required: false,
|
|
@@ -60,12 +69,12 @@ export default defineComponent({
|
|
|
60
69
|
|
|
61
70
|
const classes = computed((): string[] => {
|
|
62
71
|
const classNames = ["fs-dialog-menu"];
|
|
63
|
-
if (props.
|
|
64
|
-
if (Array.isArray(props.
|
|
65
|
-
classNames.push(...props.
|
|
72
|
+
if (props.classes) {
|
|
73
|
+
if (Array.isArray(props.classes)) {
|
|
74
|
+
classNames.push(...props.classes);
|
|
66
75
|
}
|
|
67
76
|
else {
|
|
68
|
-
classNames.push(props.
|
|
77
|
+
classNames.push(props.classes);
|
|
69
78
|
}
|
|
70
79
|
}
|
|
71
80
|
return classNames;
|
package/components/FSFadeOut.vue
CHANGED
|
@@ -87,7 +87,7 @@ export default defineComponent({
|
|
|
87
87
|
|
|
88
88
|
const elementId = `id${uuidv4()}`;
|
|
89
89
|
|
|
90
|
-
const showOutsideScrollbar = computed(() => props.scrollOutside && !isTouchScreenEnabled);
|
|
90
|
+
const showOutsideScrollbar = computed(() => props.scrollOutside && !isTouchScreenEnabled.value);
|
|
91
91
|
|
|
92
92
|
const style = computed((): {[index: string]: string} => ({
|
|
93
93
|
"--fs-fade-out-height" : props.height ? sizeToVar(props.height) : "initial",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
>
|
|
12
12
|
<FSIcon
|
|
13
13
|
:variant="$props.iconVariant"
|
|
14
|
-
:color="
|
|
14
|
+
:color="contrastedIconColor"
|
|
15
15
|
:size="actualIconSize"
|
|
16
16
|
>
|
|
17
17
|
{{ $props.icon }}
|
|
@@ -23,9 +23,10 @@
|
|
|
23
23
|
<script lang="ts">
|
|
24
24
|
import { defineComponent, type PropType, computed } from "vue";
|
|
25
25
|
|
|
26
|
-
import { type ColorBase
|
|
26
|
+
import { ColorEnum, type ColorBase } from "@dative-gpi/foundation-shared-components/models";
|
|
27
27
|
|
|
28
28
|
import { sizeToVar } from "../utils";
|
|
29
|
+
import { useColors } from "../composables";
|
|
29
30
|
|
|
30
31
|
import FSCard from "./FSCard.vue";
|
|
31
32
|
import FSIcon from "./FSIcon.vue";
|
|
@@ -60,7 +61,7 @@ export default defineComponent({
|
|
|
60
61
|
iconColor: {
|
|
61
62
|
type: String as PropType<ColorBase>,
|
|
62
63
|
required: false,
|
|
63
|
-
default: ColorEnum.
|
|
64
|
+
default: ColorEnum.Light
|
|
64
65
|
},
|
|
65
66
|
iconVariant: {
|
|
66
67
|
type: String as PropType<"base" | "baseContrast" | "soft" | "softContrast" | "light" | "lightContrast" | "dark" | "darkContrast">,
|
|
@@ -79,6 +80,14 @@ export default defineComponent({
|
|
|
79
80
|
}
|
|
80
81
|
},
|
|
81
82
|
setup(props){
|
|
83
|
+
const { getColors } = useColors();
|
|
84
|
+
|
|
85
|
+
const colors = computed(() => {
|
|
86
|
+
return Array.isArray(props.backgroundColor)
|
|
87
|
+
? getColors(props.backgroundColor[Math.floor(props.backgroundColor.length/2)])
|
|
88
|
+
: getColors(props.backgroundColor)
|
|
89
|
+
});
|
|
90
|
+
|
|
82
91
|
const actualIconSize = computed(() => {
|
|
83
92
|
if (props.iconSize){
|
|
84
93
|
return props.iconSize;
|
|
@@ -89,7 +98,21 @@ export default defineComponent({
|
|
|
89
98
|
return "42px";
|
|
90
99
|
});
|
|
91
100
|
|
|
101
|
+
const contrastedIconColor = computed(() => {
|
|
102
|
+
switch (props.backgroundVariant) {
|
|
103
|
+
case "standard":
|
|
104
|
+
switch (props.iconColor) {
|
|
105
|
+
case ColorEnum.Dark :
|
|
106
|
+
case ColorEnum.Light:
|
|
107
|
+
default: return colors.value.lightContrast!
|
|
108
|
+
};
|
|
109
|
+
case "background": return colors.value.base
|
|
110
|
+
default: return colors.value.baseContrast!
|
|
111
|
+
}
|
|
112
|
+
});
|
|
113
|
+
|
|
92
114
|
return {
|
|
115
|
+
contrastedIconColor,
|
|
93
116
|
actualIconSize
|
|
94
117
|
};
|
|
95
118
|
}
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<FSBaseField
|
|
3
|
+
:description="$props.description"
|
|
4
|
+
:hideHeader="$props.hideHeader"
|
|
5
|
+
:required="$props.required"
|
|
6
|
+
:editable="$props.editable"
|
|
7
|
+
:label="$props.label"
|
|
8
|
+
>
|
|
9
|
+
<FSRow
|
|
10
|
+
align="bottom-center"
|
|
11
|
+
gap="32px"
|
|
12
|
+
>
|
|
13
|
+
<FSTermField
|
|
14
|
+
width="430px"
|
|
15
|
+
:label="$tr('ui.instant-picker.analyze-period', 'Analyze Period')"
|
|
16
|
+
:startDate="$props.startDate"
|
|
17
|
+
:endDate="$props.endDate"
|
|
18
|
+
@update:startDate="$emit('update:startDate', $event)"
|
|
19
|
+
@update:endDate="$emit('update:endDate', $event)"
|
|
20
|
+
/>
|
|
21
|
+
<FSRow
|
|
22
|
+
padding="0 0 2px 0"
|
|
23
|
+
align="center-center"
|
|
24
|
+
>
|
|
25
|
+
<FSCol
|
|
26
|
+
width="fill"
|
|
27
|
+
>
|
|
28
|
+
<FSSlider
|
|
29
|
+
minWidth='min(300px, 90vw)'
|
|
30
|
+
:color="ColorEnum.Light"
|
|
31
|
+
:thumbColor="ColorEnum.Primary"
|
|
32
|
+
:thumbSize="18"
|
|
33
|
+
:trackSize="8"
|
|
34
|
+
thumb-label="always"
|
|
35
|
+
:step="$props.stepTime"
|
|
36
|
+
:min="startTimestamp"
|
|
37
|
+
:max="endTimestamp"
|
|
38
|
+
:ticks="ticks"
|
|
39
|
+
showTicks="always"
|
|
40
|
+
:modelValue="$props.modelValue"
|
|
41
|
+
@update:modelValue="$emit('update:modelValue', $event)"
|
|
42
|
+
>
|
|
43
|
+
<template
|
|
44
|
+
#thumb-label="{ modelValue }"
|
|
45
|
+
>
|
|
46
|
+
<FSSpan
|
|
47
|
+
font="text-overline"
|
|
48
|
+
>
|
|
49
|
+
{{ epochToMonthShortTimeFormat(modelValue) }}
|
|
50
|
+
</FSSpan>
|
|
51
|
+
</template>
|
|
52
|
+
<template
|
|
53
|
+
#tick-label="{ tick, index }"
|
|
54
|
+
>
|
|
55
|
+
<FSRow
|
|
56
|
+
v-if="index % Math.trunc(ticks.length / maximumTickToShow) === 0 || ticks.length < maximumTickToShow"
|
|
57
|
+
>
|
|
58
|
+
<FSText
|
|
59
|
+
:color="lightColors.dark"
|
|
60
|
+
font="text-overline"
|
|
61
|
+
>
|
|
62
|
+
{{ intervalTime <= 3600000
|
|
63
|
+
?
|
|
64
|
+
epochToShortTimeOnlyFormat(tick.value)
|
|
65
|
+
:
|
|
66
|
+
epochToDayMonthShortOnly(tick.value)
|
|
67
|
+
}}
|
|
68
|
+
</FSText>
|
|
69
|
+
</FSRow>
|
|
70
|
+
</template>
|
|
71
|
+
</FSSlider>
|
|
72
|
+
</FSCol>
|
|
73
|
+
<FSPlayButtons
|
|
74
|
+
v-if="$props.playable"
|
|
75
|
+
:modelValue="playing"
|
|
76
|
+
@click:backward="onClickBackward"
|
|
77
|
+
@click:forward="onClickForward"
|
|
78
|
+
@update:modelValue="onPlayingChange"
|
|
79
|
+
/>
|
|
80
|
+
</FSRow>
|
|
81
|
+
</FSRow>
|
|
82
|
+
</FSBaseField>
|
|
83
|
+
</template>
|
|
84
|
+
|
|
85
|
+
<script lang="ts">
|
|
86
|
+
import { computed, defineComponent, ref, watch } from "vue";
|
|
87
|
+
|
|
88
|
+
import { useDateFormat, useTermFieldDate } from "@dative-gpi/foundation-shared-services/composables";
|
|
89
|
+
|
|
90
|
+
import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
|
|
91
|
+
import { useBreakpoints, useColors } from '@dative-gpi/foundation-shared-components/composables';
|
|
92
|
+
|
|
93
|
+
import FSCol from '@dative-gpi/foundation-shared-components/components/FSCol.vue';
|
|
94
|
+
import FSSpan from '@dative-gpi/foundation-shared-components/components/FSSpan.vue';
|
|
95
|
+
import FSText from '@dative-gpi/foundation-shared-components/components/FSText.vue';
|
|
96
|
+
import FSSlider from '@dative-gpi/foundation-shared-components/components/FSSlider.vue';
|
|
97
|
+
import FSBaseField from '@dative-gpi/foundation-shared-components/components/fields/FSBaseField.vue';
|
|
98
|
+
import FSTermField from '@dative-gpi/foundation-shared-components/components/fields/FSTermField.vue';
|
|
99
|
+
import FSPlayButtons from '@dative-gpi/foundation-shared-components/components/FSPlayButtons.vue';
|
|
100
|
+
|
|
101
|
+
export default defineComponent({
|
|
102
|
+
name: "FSInstantPicker",
|
|
103
|
+
components: {
|
|
104
|
+
FSCol,
|
|
105
|
+
FSSpan,
|
|
106
|
+
FSText,
|
|
107
|
+
FSSlider,
|
|
108
|
+
FSTermField,
|
|
109
|
+
FSBaseField,
|
|
110
|
+
FSPlayButtons
|
|
111
|
+
},
|
|
112
|
+
props: {
|
|
113
|
+
label: {
|
|
114
|
+
type: String,
|
|
115
|
+
required: false,
|
|
116
|
+
},
|
|
117
|
+
modelValue: {
|
|
118
|
+
type: Number,
|
|
119
|
+
required: false,
|
|
120
|
+
default: 0,
|
|
121
|
+
},
|
|
122
|
+
startDate: {
|
|
123
|
+
type: String,
|
|
124
|
+
required: true
|
|
125
|
+
},
|
|
126
|
+
endDate: {
|
|
127
|
+
type: String,
|
|
128
|
+
required: true
|
|
129
|
+
},
|
|
130
|
+
description: {
|
|
131
|
+
type: String,
|
|
132
|
+
required: false,
|
|
133
|
+
default: null
|
|
134
|
+
},
|
|
135
|
+
hideHeader: {
|
|
136
|
+
type: Boolean,
|
|
137
|
+
required: false,
|
|
138
|
+
default: false
|
|
139
|
+
},
|
|
140
|
+
required: {
|
|
141
|
+
type: Boolean,
|
|
142
|
+
required: false,
|
|
143
|
+
default: false
|
|
144
|
+
},
|
|
145
|
+
editable: {
|
|
146
|
+
type: Boolean,
|
|
147
|
+
required: false,
|
|
148
|
+
default: true
|
|
149
|
+
},
|
|
150
|
+
playable: {
|
|
151
|
+
type: Boolean,
|
|
152
|
+
required: false,
|
|
153
|
+
default: true
|
|
154
|
+
},
|
|
155
|
+
stepTime: {
|
|
156
|
+
type: Number,
|
|
157
|
+
required: false,
|
|
158
|
+
default: 60000
|
|
159
|
+
},
|
|
160
|
+
playingStepDuration: {
|
|
161
|
+
type: Number,
|
|
162
|
+
required: false,
|
|
163
|
+
default: 50
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
emits: ['update:modelValue', 'update:startDate', 'update:endDate'],
|
|
167
|
+
setup(props, { emit }) {
|
|
168
|
+
const { epochToShortTimeOnlyFormat, epochToShortDateFormat, epochToDayMonthShortOnly, epochToISO, epochToMonthShortTimeFormat } = useDateFormat();
|
|
169
|
+
const { convert : convertTermToEpoch } = useTermFieldDate();
|
|
170
|
+
const { isMobileSized, isExtraSmall } = useBreakpoints();
|
|
171
|
+
const { getColors } = useColors();
|
|
172
|
+
|
|
173
|
+
const lightColors = getColors(ColorEnum.Light);
|
|
174
|
+
const playing = ref(false);
|
|
175
|
+
const playingInterval = ref();
|
|
176
|
+
|
|
177
|
+
const startTimestamp = computed(() => convertTermToEpoch(props.startDate));
|
|
178
|
+
const endTimestamp = computed(() => convertTermToEpoch(props.endDate));
|
|
179
|
+
|
|
180
|
+
const intervalTime = computed(() => {
|
|
181
|
+
const possibleIntervals = [60000, 3600000, 86400000];
|
|
182
|
+
|
|
183
|
+
const interval = possibleIntervals.find(interval => {
|
|
184
|
+
return (endTimestamp.value - startTimestamp.value) / interval < 100;
|
|
185
|
+
});
|
|
186
|
+
|
|
187
|
+
if (interval) {
|
|
188
|
+
return interval;
|
|
189
|
+
}
|
|
190
|
+
return 86400000;
|
|
191
|
+
});
|
|
192
|
+
|
|
193
|
+
const ticks = computed(() => {
|
|
194
|
+
const ticks: number[] = [];
|
|
195
|
+
|
|
196
|
+
const firstTick = Math.ceil(startTimestamp.value / intervalTime.value) * intervalTime.value;
|
|
197
|
+
for (let i = firstTick; i <= endTimestamp.value; i += intervalTime.value) {
|
|
198
|
+
ticks.push(i);
|
|
199
|
+
}
|
|
200
|
+
return ticks;
|
|
201
|
+
});
|
|
202
|
+
|
|
203
|
+
const maximumTickToShow = computed(() => {
|
|
204
|
+
if (isMobileSized.value) {
|
|
205
|
+
return 5;
|
|
206
|
+
}
|
|
207
|
+
if (isExtraSmall.value) {
|
|
208
|
+
return 4;
|
|
209
|
+
}
|
|
210
|
+
return 6;
|
|
211
|
+
});
|
|
212
|
+
|
|
213
|
+
const onPlayingChange = (value: boolean) => {
|
|
214
|
+
playing.value = value;
|
|
215
|
+
};
|
|
216
|
+
|
|
217
|
+
const onClickBackward = () => {
|
|
218
|
+
emit('update:modelValue', startTimestamp.value);
|
|
219
|
+
};
|
|
220
|
+
|
|
221
|
+
const onClickForward = () => {
|
|
222
|
+
emit('update:modelValue', endTimestamp.value);
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
watch(() => [props.startDate, props.endDate], () => {
|
|
226
|
+
if(props.modelValue < startTimestamp.value || props.modelValue > endTimestamp.value) {
|
|
227
|
+
emit('update:modelValue', endTimestamp.value);
|
|
228
|
+
}
|
|
229
|
+
}, { immediate: true });
|
|
230
|
+
|
|
231
|
+
watch(playing, (value) => {
|
|
232
|
+
if(!value && playingInterval.value) {
|
|
233
|
+
clearInterval(playingInterval.value);
|
|
234
|
+
} else {
|
|
235
|
+
playingInterval.value = setInterval(() => {
|
|
236
|
+
if(props.modelValue + props.stepTime <= endTimestamp.value) {
|
|
237
|
+
emit('update:modelValue', props.modelValue + props.stepTime);
|
|
238
|
+
} else {
|
|
239
|
+
emit('update:modelValue', endTimestamp.value);
|
|
240
|
+
playing.value = false;
|
|
241
|
+
}
|
|
242
|
+
}, props.playingStepDuration);
|
|
243
|
+
}
|
|
244
|
+
});
|
|
245
|
+
|
|
246
|
+
return {
|
|
247
|
+
ticks,
|
|
248
|
+
playing,
|
|
249
|
+
ColorEnum,
|
|
250
|
+
lightColors,
|
|
251
|
+
intervalTime,
|
|
252
|
+
endTimestamp,
|
|
253
|
+
startTimestamp,
|
|
254
|
+
maximumTickToShow,
|
|
255
|
+
epochToISO,
|
|
256
|
+
onPlayingChange,
|
|
257
|
+
onClickForward,
|
|
258
|
+
onClickBackward,
|
|
259
|
+
epochToShortDateFormat,
|
|
260
|
+
epochToShortTimeOnlyFormat,
|
|
261
|
+
epochToDayMonthShortOnly,
|
|
262
|
+
epochToMonthShortTimeFormat
|
|
263
|
+
};
|
|
264
|
+
},
|
|
265
|
+
});
|
|
266
|
+
</script>
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<FSRow
|
|
3
|
+
width="hug"
|
|
4
|
+
gap="4px"
|
|
5
|
+
>
|
|
6
|
+
<FSClickable
|
|
7
|
+
variant="full"
|
|
8
|
+
:color="ColorEnum.Light"
|
|
9
|
+
borderRadius="50%"
|
|
10
|
+
padding="2px"
|
|
11
|
+
@click="$emit('click:backward')"
|
|
12
|
+
>
|
|
13
|
+
<FSIcon
|
|
14
|
+
size="18px"
|
|
15
|
+
icon="mdi-skip-backward"
|
|
16
|
+
/>
|
|
17
|
+
</FSClickable>
|
|
18
|
+
<FSClickable
|
|
19
|
+
variant="full"
|
|
20
|
+
:color="ColorEnum.Light"
|
|
21
|
+
borderRadius="50%"
|
|
22
|
+
padding="2px"
|
|
23
|
+
@click="$emit('update:modelValue', !$props.modelValue)"
|
|
24
|
+
>
|
|
25
|
+
<FSIcon
|
|
26
|
+
size="18px"
|
|
27
|
+
:icon="$props.modelValue ? 'mdi-pause' : 'mdi-play'"
|
|
28
|
+
/>
|
|
29
|
+
</FSClickable>
|
|
30
|
+
<FSClickable
|
|
31
|
+
variant="full"
|
|
32
|
+
:color="ColorEnum.Light"
|
|
33
|
+
borderRadius="50%"
|
|
34
|
+
padding="2px"
|
|
35
|
+
@click="$emit('click:forward')"
|
|
36
|
+
>
|
|
37
|
+
<FSIcon
|
|
38
|
+
size="18px"
|
|
39
|
+
icon="mdi-skip-forward"
|
|
40
|
+
/>
|
|
41
|
+
</FSClickable>
|
|
42
|
+
</FSRow>
|
|
43
|
+
</template>
|
|
44
|
+
|
|
45
|
+
<script lang="ts">
|
|
46
|
+
import { defineComponent } from "vue";
|
|
47
|
+
|
|
48
|
+
import { ColorEnum } from '@dative-gpi/foundation-shared-components/models';
|
|
49
|
+
|
|
50
|
+
import FSIcon from '@dative-gpi/foundation-shared-components/components/FSIcon.vue';
|
|
51
|
+
import FSClickable from '@dative-gpi/foundation-shared-components/components/FSClickable.vue';
|
|
52
|
+
|
|
53
|
+
export default defineComponent({
|
|
54
|
+
name: "FSPlayButtons",
|
|
55
|
+
components: {
|
|
56
|
+
FSClickable,
|
|
57
|
+
FSIcon
|
|
58
|
+
},
|
|
59
|
+
props: {
|
|
60
|
+
modelValue: {
|
|
61
|
+
type: Boolean,
|
|
62
|
+
required: true,
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
emits: ['update:modelValue', 'click:backward', 'click:forward'],
|
|
66
|
+
setup() {
|
|
67
|
+
return {
|
|
68
|
+
ColorEnum
|
|
69
|
+
};
|
|
70
|
+
},
|
|
71
|
+
});
|
|
72
|
+
</script>
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<FSRow
|
|
3
|
+
align="center-center"
|
|
4
|
+
:style="style"
|
|
5
|
+
>
|
|
6
|
+
<div
|
|
7
|
+
class="fs-progress-bar-gradient"
|
|
8
|
+
>
|
|
9
|
+
<div></div>
|
|
10
|
+
</div>
|
|
11
|
+
<FSText
|
|
12
|
+
v-if="$props.showValue"
|
|
13
|
+
font="text-button"
|
|
14
|
+
>
|
|
15
|
+
{{ fixedRate }}%
|
|
16
|
+
</FSText>
|
|
17
|
+
</FSRow>
|
|
18
|
+
</template>
|
|
19
|
+
|
|
20
|
+
<script lang="ts">
|
|
21
|
+
import { computed, defineComponent, type StyleValue } from "vue";
|
|
22
|
+
|
|
23
|
+
import { useColors } from '@dative-gpi/foundation-shared-components/composables';
|
|
24
|
+
|
|
25
|
+
import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
|
|
26
|
+
|
|
27
|
+
import FSRow from '@dative-gpi/foundation-shared-components/components/FSRow.vue';
|
|
28
|
+
import FSText from '@dative-gpi/foundation-shared-components/components/FSText.vue';
|
|
29
|
+
|
|
30
|
+
export default defineComponent({
|
|
31
|
+
name: "FSProgressBar",
|
|
32
|
+
components: {
|
|
33
|
+
FSText,
|
|
34
|
+
FSRow
|
|
35
|
+
},
|
|
36
|
+
props: {
|
|
37
|
+
modelValue: {
|
|
38
|
+
type: Number,
|
|
39
|
+
required: true
|
|
40
|
+
},
|
|
41
|
+
startColor: {
|
|
42
|
+
type: String,
|
|
43
|
+
required: false
|
|
44
|
+
},
|
|
45
|
+
endColor: {
|
|
46
|
+
type: String,
|
|
47
|
+
required: false
|
|
48
|
+
},
|
|
49
|
+
showValue: {
|
|
50
|
+
type: Boolean,
|
|
51
|
+
required: false,
|
|
52
|
+
default: true
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
setup(props) {
|
|
56
|
+
const { getColors } = useColors();
|
|
57
|
+
|
|
58
|
+
const lightColors = getColors(ColorEnum.Light);
|
|
59
|
+
const successColors = getColors(ColorEnum.Success);
|
|
60
|
+
const errorColors = getColors(ColorEnum.Error);
|
|
61
|
+
|
|
62
|
+
const fixedRate = computed(() => {
|
|
63
|
+
return (props.modelValue * 100).toFixed(0);
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
const relativeWidth = computed(() => {
|
|
67
|
+
return props.modelValue ? 100 / props.modelValue : 0;
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
const startColor = computed(() => {
|
|
71
|
+
return props.startColor ?? errorColors.base;
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
const endColor = computed(() => {
|
|
75
|
+
return props.endColor ?? successColors.base;
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
const style = computed((): StyleValue => {
|
|
79
|
+
return {
|
|
80
|
+
'--progress-bar-background-color': lightColors.dark,
|
|
81
|
+
'--progress-bar-gradient-start-color': startColor.value,
|
|
82
|
+
'--progress-bar-gradient-end-color': endColor.value,
|
|
83
|
+
'--progress-bar-gradient-width': `min(100%, ${fixedRate.value}%)`,
|
|
84
|
+
'--progress-bar-total-relative-width': `${relativeWidth.value}%`
|
|
85
|
+
};
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
return {
|
|
89
|
+
style,
|
|
90
|
+
fixedRate
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
});
|
|
94
|
+
</script>
|
package/components/FSSpan.vue
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
2
|
+
<div
|
|
3
3
|
:class="classes"
|
|
4
4
|
:style="style"
|
|
5
5
|
v-bind="$attrs"
|
|
6
6
|
>
|
|
7
|
-
<
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
<span>
|
|
8
|
+
<slot>
|
|
9
|
+
{{ $props.label }}
|
|
10
|
+
</slot>
|
|
11
|
+
</span>
|
|
12
|
+
</div>
|
|
11
13
|
</template>
|
|
12
14
|
|
|
13
15
|
<script lang="ts">
|
|
@@ -49,6 +51,7 @@ export default defineComponent({
|
|
|
49
51
|
const { slots } = useSlots();
|
|
50
52
|
|
|
51
53
|
const style = computed((): StyleValue => ({
|
|
54
|
+
"--fs-span-text-align": props.align,
|
|
52
55
|
"--fs-span-line-clamp": props.lineClamp.toString(),
|
|
53
56
|
...fontStyles.value
|
|
54
57
|
}));
|