@finema/core 2.55.1 → 2.56.0

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/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "2.55.1",
3
+ "version": "2.56.0",
4
4
  "configKey": "core",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
package/dist/module.mjs CHANGED
@@ -4,7 +4,7 @@ import * as lodash from 'lodash-es';
4
4
  import * as theme from '../dist/runtime/theme/index.js';
5
5
 
6
6
  const name = "@finema/core";
7
- const version = "2.55.1";
7
+ const version = "2.56.0";
8
8
 
9
9
  const nuxtAppOptions = {
10
10
  head: {
@@ -2,10 +2,12 @@ import type { ITagsFieldProps } from '#core/components/Form/InputTags/types';
2
2
  declare const __VLS_export: import("vue").DefineComponent<ITagsFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
3
  add: (...args: any[]) => void;
4
4
  change: (...args: any[]) => void;
5
+ selected: (...args: any[]) => void;
5
6
  remove: (...args: any[]) => void;
6
7
  }, string, import("vue").PublicProps, Readonly<ITagsFieldProps> & Readonly<{
7
8
  onAdd?: ((...args: any[]) => any) | undefined;
8
9
  onChange?: ((...args: any[]) => any) | undefined;
10
+ onSelected?: ((...args: any[]) => any) | undefined;
9
11
  onRemove?: ((...args: any[]) => any) | undefined;
10
12
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
13
  declare const _default: typeof __VLS_export;
@@ -1,43 +1,82 @@
1
1
  <template>
2
2
  <FieldWrapper v-bind="wrapperProps">
3
- <InputTags
4
- :model-value="value"
5
- :disabled="wrapperProps.disabled"
6
- :leading-icon="leadingIcon"
7
- :max-length="maxLength"
8
- :varant="variant"
9
- :delete-icon="deleteIcon"
10
- :size="size"
11
- :trailing-icon="trailingIcon"
12
- :loading="loading"
13
- :loading-icon="loadingIcon"
14
- :name="name"
15
- :placeholder="wrapperProps.placeholder"
16
- :autofocus="!!autoFocus"
17
- :icon="icon"
18
- :readonly="readonly"
19
- :ui="ui"
20
- @update:model-value="onChange"
21
- @addTag="onAdd"
22
- @removeTag="onRemove"
23
- />
3
+ <Popover
4
+ v-model:open="showSuggestions"
5
+ :dismissible="false"
6
+ :ui="{ content: 'w-(--reka-popper-anchor-width)' }"
7
+ >
8
+ <template #anchor>
9
+ <InputTags
10
+ :model-value="value"
11
+ :disabled="wrapperProps.disabled"
12
+ :leading-icon="leadingIcon"
13
+ :max-length="maxLength"
14
+ :variant="variant"
15
+ :delete-icon="deleteIcon"
16
+ :size="size"
17
+ :trailing-icon="trailingIcon"
18
+ :loading="loading"
19
+ :loading-icon="loadingIcon"
20
+ :name="name"
21
+ :placeholder="wrapperProps.placeholder"
22
+ :autofocus="!!autoFocus"
23
+ :icon="icon"
24
+ :readonly="readonly"
25
+ :ui="ui"
26
+ @update:model-value="onChange"
27
+ @addTag="onAdd"
28
+ @removeTag="onRemove"
29
+ @focus="onFocus"
30
+ @blur="onBlur"
31
+ @keydown="onKeydown"
32
+ @input="onInput"
33
+ />
34
+ </template>
35
+
36
+ <template #content>
37
+ <div
38
+ v-if="showSuggestions && filteredSuggestions.length > 0"
39
+ ref="suggestionsContainerRef"
40
+ :class="theme.suggestionsContainer()"
41
+ >
42
+ <div
43
+ v-for="(suggestion, index) in filteredSuggestions"
44
+ :key="suggestion"
45
+ :ref="(el) => setSuggestionItemRef(el, index)"
46
+ :class="[
47
+ theme.suggestionItem(),
48
+ {
49
+ [theme.suggestionItemActive()]: index === selectedSuggestionIndex
50
+ }
51
+ ]"
52
+ @mousedown.prevent="selectSuggestion(suggestion, index)"
53
+ @mouseenter="selectedSuggestionIndex = index"
54
+ >
55
+ {{ suggestion }}
56
+ </div>
57
+ </div>
58
+ </template>
59
+ </Popover>
24
60
  </FieldWrapper>
25
61
  </template>
26
62
 
27
63
  <script setup>
28
64
  import { useFieldHOC } from "#core/composables/useForm";
29
65
  import FieldWrapper from "#core/components/Form/FieldWrapper.vue";
30
- const emits = defineEmits(["change", "add", "remove"]);
66
+ import { ref, computed, nextTick, useUiConfig } from "#imports";
67
+ import { inputTheme } from "#core/theme/input";
68
+ const emits = defineEmits(["change", "add", "remove", "selected"]);
31
69
  const props = defineProps({
32
70
  leadingIcon: { type: null, required: false },
33
71
  trailingIcon: { type: null, required: false },
34
72
  loading: { type: Boolean, required: false },
35
73
  loadingIcon: { type: null, required: false },
36
74
  icon: { type: String, required: false },
37
- maxLength: { type: String, required: false },
75
+ maxLength: { type: Number, required: false },
38
76
  variant: { type: String, required: false },
39
77
  size: { type: String, required: false },
40
78
  deleteIcon: { type: String, required: false },
79
+ suggestions: { type: Array, required: false },
41
80
  form: { type: Object, required: false },
42
81
  name: { type: String, required: true },
43
82
  errorMessage: { type: String, required: false },
@@ -53,11 +92,18 @@ const props = defineProps({
53
92
  help: { type: String, required: false },
54
93
  ui: { type: null, required: false }
55
94
  });
95
+ const theme = computed(() => useUiConfig(inputTheme, "input")());
56
96
  const {
57
97
  value,
58
98
  wrapperProps,
59
99
  handleChange
60
100
  } = useFieldHOC(props);
101
+ const showSuggestions = ref(false);
102
+ const selectedSuggestionIndex = ref(-1);
103
+ const suggestionsContainerRef = ref();
104
+ const suggestionItemRefs = ref([]);
105
+ const inputRef = ref();
106
+ const currentInput = ref("");
61
107
  const onChange = (value2) => {
62
108
  handleChange(value2);
63
109
  emits("change", value2);
@@ -68,4 +114,112 @@ const onAdd = (value2) => {
68
114
  const onRemove = (value2) => {
69
115
  emits("remove", value2);
70
116
  };
117
+ const onInput = (event) => {
118
+ const target = event.target;
119
+ currentInput.value = target.value.toLowerCase();
120
+ };
121
+ const setSuggestionItemRef = (el, index) => {
122
+ if (suggestionItemRefs.value) {
123
+ suggestionItemRefs.value[index] = el;
124
+ }
125
+ };
126
+ const filteredSuggestions = computed(() => {
127
+ if (!props.suggestions) return [];
128
+ const inputVal = currentInput.value?.trim().toLowerCase() || "";
129
+ if (!inputVal) {
130
+ return props.suggestions.filter((s) => !value.value?.includes(s));
131
+ }
132
+ return props.suggestions.filter(
133
+ (suggestion) => suggestion.toLowerCase().includes(inputVal) && !value.value?.includes(suggestion)
134
+ );
135
+ });
136
+ const onFocus = () => {
137
+ if (props.suggestions && props.suggestions.length > 0) {
138
+ showSuggestions.value = true;
139
+ selectedSuggestionIndex.value = -1;
140
+ }
141
+ };
142
+ const onBlur = (event) => {
143
+ setTimeout(() => {
144
+ showSuggestions.value = false;
145
+ selectedSuggestionIndex.value = -1;
146
+ }, 150);
147
+ };
148
+ const onKeydown = (event) => {
149
+ if (!showSuggestions.value || filteredSuggestions.value.length === 0) {
150
+ return;
151
+ }
152
+ switch (event.key) {
153
+ case "ArrowDown":
154
+ event.preventDefault();
155
+ selectedSuggestionIndex.value = selectedSuggestionIndex.value < filteredSuggestions.value.length - 1 ? selectedSuggestionIndex.value + 1 : 0;
156
+ scrollToSelectedSuggestion();
157
+ break;
158
+ case "ArrowUp":
159
+ event.preventDefault();
160
+ selectedSuggestionIndex.value = selectedSuggestionIndex.value > 0 ? selectedSuggestionIndex.value - 1 : filteredSuggestions.value.length - 1;
161
+ scrollToSelectedSuggestion();
162
+ break;
163
+ case "Enter":
164
+ if (selectedSuggestionIndex.value === -1) {
165
+ return;
166
+ }
167
+ event.preventDefault();
168
+ if (selectedSuggestionIndex.value >= 0) {
169
+ const suggestion = filteredSuggestions.value[selectedSuggestionIndex.value];
170
+ if (suggestion) {
171
+ selectSuggestion(suggestion, selectedSuggestionIndex.value);
172
+ }
173
+ }
174
+ break;
175
+ case "Escape":
176
+ showSuggestions.value = false;
177
+ selectedSuggestionIndex.value = -1;
178
+ break;
179
+ }
180
+ };
181
+ const selectSuggestion = (suggestion, index) => {
182
+ if (index !== void 0) {
183
+ scrollToSuggestionByIndex(index);
184
+ }
185
+ const newValue = [...value.value || [], suggestion];
186
+ handleChange(newValue);
187
+ emits("selected", suggestion);
188
+ emits("change", newValue);
189
+ showSuggestions.value = false;
190
+ selectedSuggestionIndex.value = -1;
191
+ currentInput.value = "";
192
+ nextTick(() => {
193
+ if (inputRef.value) {
194
+ inputRef.value.$el.querySelector("input")?.focus();
195
+ }
196
+ });
197
+ };
198
+ const scrollToSelectedSuggestion = () => {
199
+ nextTick(() => {
200
+ if (selectedSuggestionIndex.value >= 0) {
201
+ scrollToSuggestionByIndex(selectedSuggestionIndex.value);
202
+ }
203
+ });
204
+ };
205
+ const scrollToSuggestionByIndex = (index) => {
206
+ if (!suggestionsContainerRef.value || !suggestionItemRefs.value[index]) {
207
+ return;
208
+ }
209
+ const container = suggestionsContainerRef.value;
210
+ const item = suggestionItemRefs.value[index];
211
+ if (item) {
212
+ const containerRect = container.getBoundingClientRect();
213
+ const itemRect = item.getBoundingClientRect();
214
+ const isAboveView = itemRect.top < containerRect.top;
215
+ const isBelowView = itemRect.bottom > containerRect.bottom;
216
+ if (isAboveView || isBelowView) {
217
+ item.scrollIntoView({
218
+ behavior: "smooth",
219
+ block: "nearest",
220
+ inline: "nearest"
221
+ });
222
+ }
223
+ }
224
+ };
71
225
  </script>
@@ -2,10 +2,12 @@ import type { ITagsFieldProps } from '#core/components/Form/InputTags/types';
2
2
  declare const __VLS_export: import("vue").DefineComponent<ITagsFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
3
  add: (...args: any[]) => void;
4
4
  change: (...args: any[]) => void;
5
+ selected: (...args: any[]) => void;
5
6
  remove: (...args: any[]) => void;
6
7
  }, string, import("vue").PublicProps, Readonly<ITagsFieldProps> & Readonly<{
7
8
  onAdd?: ((...args: any[]) => any) | undefined;
8
9
  onChange?: ((...args: any[]) => any) | undefined;
10
+ onSelected?: ((...args: any[]) => any) | undefined;
9
11
  onRemove?: ((...args: any[]) => any) | undefined;
10
12
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
13
  declare const _default: typeof __VLS_export;
@@ -5,13 +5,15 @@ export interface ITagsFieldProps extends IFieldProps {
5
5
  loading?: boolean;
6
6
  loadingIcon?: any;
7
7
  icon?: string;
8
- maxLength?: string;
9
- variant?: string;
10
- size?: string;
8
+ maxLength?: number;
9
+ variant?: 'outline' | 'soft' | 'subtle' | 'ghost' | 'none';
10
+ size?: 'xl' | 'xs' | 'sm' | 'md' | 'lg';
11
11
  deleteIcon?: string;
12
+ suggestions?: string[];
12
13
  }
13
14
  export type ITagsField = IFormFieldBase<INPUT_TYPES.TAGS, ITagsFieldProps, {
14
15
  change?: (value: string[]) => void;
15
16
  add?: (value: string) => void;
16
17
  remove?: (value: string) => void;
18
+ selected?: (value: string) => void;
17
19
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "2.55.1",
3
+ "version": "2.56.0",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",