3434 <ComboboxInput
3535 class =" block w-full rounded-md bg-zinc-900 py-1.5 pr-12 pl-3 text-base text-zinc-100 outline-1 -outline-offset-1 outline-zinc-700 placeholder:text-zinc-500 focus:outline-2 focus:-outline-offset-2 focus:outline-blue-600 sm:text-sm/6"
3636 :display-value =" (item) => (item as StoreSortOption)?.name"
37- placeholder =" Start typing... "
37+ : placeholder =" $t('common.components.multiitem.placeholder') "
3838 @change =" search = $event.target.value"
3939 @blur =" search = ''"
4040 />
6868 </span >
6969 </li >
7070 </ComboboxOption >
71+ <ComboboxOption
72+ v-if =" $props.create"
73+ v-slot =" { active }"
74+ :value =" CREATE_PREFIX + search"
75+ as =" template"
76+ >
77+ <li
78+ :class =" [
79+ 'relative cursor-default py-2 pr-9 pl-3 select-none',
80+ active
81+ ? 'bg-blue-600 text-white outline-hidden'
82+ : 'text-zinc-100',
83+ ]"
84+ >
85+ <span class =" block truncate" >
86+ {{ $t("common.components.multiitem.new", [search]) }}
87+ </span >
88+ </li >
89+ </ComboboxOption >
7190 </ComboboxOptions >
91+
92+ <div
93+ v-if =" createLoading"
94+ class =" absolute inset-0 bg-zinc-950 flex items-center justify-center"
95+ >
96+ <div role =" status" >
97+ <svg
98+ aria-hidden =" true"
99+ class =" size-8 text-transparent animate-spin fill-white"
100+ viewBox =" 0 0 100 101"
101+ fill =" none"
102+ xmlns =" http://www.w3.org/2000/svg"
103+ >
104+ <path
105+ d =" M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z"
106+ fill =" currentColor"
107+ />
108+ <path
109+ d =" M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z"
110+ fill =" currentFill"
111+ />
112+ </svg >
113+ <span class =" sr-only" >{{ $t("common.srLoading") }}</span >
114+ </div >
115+ </div >
72116 </div >
73117 </Combobox >
74118 </div >
@@ -85,6 +129,7 @@ import {
85129} from " @headlessui/vue" ;
86130const props = defineProps <{
87131 items: Array <StoreSortOption >;
132+ create? : (value : string ) => Promise <string >;
88133}>();
89134
90135const model = defineModel <{ [key : string ]: boolean }>();
@@ -102,7 +147,37 @@ const enabledItems = computed(() =>
102147 props .items .filter ((e ) => model .value ?.[e .param ]),
103148);
104149
150+ // I do not love how this works, but it's okay for now
151+ const CREATE_PREFIX = " CREATE" ;
152+
153+ const createLoading = ref (false );
105154function add(item : string ) {
155+ if (item .startsWith (CREATE_PREFIX )) {
156+ if (! props .create ) return ;
157+ const value = item .substring (CREATE_PREFIX .length );
158+ createLoading .value = true ;
159+ props
160+ .create (value )
161+ .then (
162+ (result ) => {
163+ add (result );
164+ },
165+ (err ) => {
166+ createModal (
167+ ModalType .Notification ,
168+ {
169+ title: " Failed to create value" ,
170+ description: err ,
171+ },
172+ (_ , c ) => c (),
173+ );
174+ },
175+ )
176+ .finally (() => {
177+ createLoading .value = false ;
178+ });
179+ return ;
180+ }
106181 search .value = " " ;
107182 model .value ?? = {};
108183 model .value [item ] = true ;
0 commit comments