4343 }"
4444 >
4545 <component
46- v-if =" action.icon"
46+ v-if =" action.icon && !bulkActionLoadingStates[action.id] "
4747 :is =" getIcon(action.icon)"
4848 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 >
49-
49+ <div v-if =" bulkActionLoadingStates[action.id]" >
50+ <svg
51+ aria-hidden =" true"
52+ class =" w-5 h-5 animate-spin"
53+ :class =" {
54+ 'text-gray-200 dark:text-gray-500 fill-gray-500 dark:fill-gray-300': action.state !== 'danger',
55+ 'text-red-200 dark:text-red-800 fill-red-600 dark:fill-red-500': action.state === 'danger'
56+ }"
57+ viewBox =" 0 0 100 101"
58+ fill =" none"
59+ xmlns =" http://www.w3.org/2000/svg"
60+ >
61+ <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" />
62+ <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" />
63+ </svg >
64+ <span class =" sr-only" >Loading...</span >
65+ </div >
5066 {{ `${action.label} (${checkboxes.length})` }}
5167 </button >
5268
@@ -151,6 +167,7 @@ watch(() => sort, async (to, from) => {
151167const rows: Ref <any []| null > = ref (null );
152168const totalRows = ref (0 );
153169const checkboxes = ref ([]);
170+ const bulkActionLoadingStates = ref <{[key : string ]: boolean }>({});
154171
155172const DEFAULT_PAGE_SIZE = 10 ;
156173
@@ -252,6 +269,7 @@ async function startBulkAction(actionId) {
252269 return ;
253270 }
254271 }
272+ bulkActionLoadingStates .value [actionId ] = true ;
255273
256274 const data = await callAdminForthApi ({
257275 path: ' /start_bulk_action' ,
@@ -264,6 +282,7 @@ async function startBulkAction(actionId) {
264282 }
265283 });
266284 if (data ?.ok ) {
285+ bulkActionLoadingStates .value [actionId ] = false ;
267286 checkboxes .value = [];
268287 await getList ();
269288
@@ -276,6 +295,7 @@ async function startBulkAction(actionId) {
276295
277296 }
278297 if (data ?.error ) {
298+ bulkActionLoadingStates .value [actionId ] = false ;
279299 showErrorTost (data .error );
280300 }
281301}
0 commit comments