4545 }"
4646 >
4747 <component
48- v-if =" action.icon"
48+ v-if =" action.icon && !bulkActionLoadingStates[action.id] "
4949 :is =" getIcon(action.icon)"
50- class =" w-5 h-5 text-gray-500 transition duration-75 dark:text-gray-400 group-hover:text-gray-900 dark:group-hover:text-white" ></component >
50+ class =" w-5 h-5 text-gray-500 transition duration-75 dark:text-gray-400 group-hover:text-gray-900 dark:group-hover:text-white" >
51+ </component >
52+ <div v-if =" bulkActionLoadingStates[action.id]" >
53+ <svg
54+ aria-hidden =" true"
55+ class =" w-5 h-5 animate-spin"
56+ :class =" {
57+ 'text-gray-200 dark:text-gray-500 fill-gray-500 dark:fill-gray-300': action.state !== 'danger',
58+ 'text-red-200 dark:text-red-800 fill-red-600 dark:fill-red-500': action.state === 'danger'
59+ }"
60+ viewBox =" 0 0 100 101"
61+ fill =" none"
62+ xmlns =" http://www.w3.org/2000/svg"
63+ >
64+ <path 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" fill =" currentColor" />
65+ <path 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" fill =" currentFill" />
66+ </svg >
67+ <span class =" sr-only" >Loading...</span >
68+ </div >
5169
5270 {{ `${action.label} (${checkboxes.length})` }}
5371 </button >
@@ -179,8 +197,20 @@ watch([filters], async () => {
179197 await getList ();
180198}, {deep: true });
181199
200+ const bulkActionLoadingStates = ref ({});
182201
183202async function startBulkAction (actionId ) {
203+ const action = listResource .value .options .bulkActions .find (a => a .id === actionId);
204+ if (action .confirm ) {
205+ const confirmed = await adminforth .confirm ({
206+ message: action .confirm ,
207+ });
208+ if (! confirmed) {
209+ return ;
210+ }
211+ }
212+ bulkActionLoadingStates .value [actionId] = true ;
213+
184214 const data = await callAdminForthApi ({
185215 path: ` /plugin/${ props .meta .pluginInstanceId } /start_bulk_action` ,
186216 method: ' POST' ,
@@ -190,9 +220,18 @@ async function startBulkAction(actionId) {
190220 recordIds: checkboxes .value
191221 }
192222 });
223+ bulkActionLoadingStates .value [actionId] = false ;
224+
193225 if (data? .ok ) {
194226 checkboxes .value = [];
195227 await getList ();
228+
229+ if (data .successMessage ) {
230+ adminforth .alert ({
231+ message: data .successMessage ,
232+ variant: ' success'
233+ });
234+ }
196235 }
197236 if (data? .error ) {
198237 showErrorTost (data .error );
0 commit comments