Skip to content

Commit 542ca4b

Browse files
committed
fix(ActionButton): fixed refresh on details + fixed html and url icons
1 parent 6f1860b commit 542ca4b

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

resources/js/components/ActionButtonField.vue

+2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@
5555
confirmActionModalOpened
5656
} = useHandleAction(
5757
{
58+
isOnDetail: false,
59+
resourceId: props?.field?.resourceId,
5860
queryString: queryString.value,
5961
resourceName: props?.resourceName,
6062
selectedAction: selectedAction.value,

resources/js/components/DetailActionButtonField.vue

+2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@
5555
confirmActionModalOpened
5656
} = useHandleAction(
5757
{
58+
isOnDetail: true,
59+
resourceId: props?.field?.resourceId,
5860
queryString: queryString.value,
5961
resourceName: props?.resourceName,
6062
selectedAction: selectedAction.value,

resources/js/components/_components/button/ActionButton.vue

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
<template>
22
<a href="#"
3+
class="d-flex align-center"
34
v-bind="actionOptions"
45
@click.stop.prevent="fireAction"
56
@mouseenter="onMouseEnterTooltip"
67
@mouseleave="onMouseLeaveTooltip"
78
>
89

910
<!-- Text -->
10-
<span v-if="text" v-text="text"></span>
11+
<div v-if="text" v-text="text"></div>
1112

1213
<!-- Icon -->
13-
<template v-if="hasIcon">
14-
<span v-if="htmlIcon" v-html="htmlIcon"></span>
14+
<div v-if="hasIcon" :class="{'ml-2': text}">
1515
<Icon v-if="icon" :type="icon" />
16-
<img v-if="urlIcon" :alt="title" :src="urlIcon" class="w-6 h-6 inline" />
17-
</template>
16+
<span v-if="iconHtml" v-html="iconHtml"></span>
17+
<img v-if="iconUrl" :alt="title" :src="iconUrl" class="w-6 h-6 inline" />
18+
</div>
1819

1920
<!-- Tooltip -->
2021
<div v-if="tooltipIsVisible && tooltip" class="absolute z-10 left-1/2 -top-1 transform -translate-x-1/2 -translate-y-full px-2 py-1 bg-gray-700 text-white text-xs rounded">
@@ -52,11 +53,11 @@
5253
// Computed
5354
// Icon
5455
const icon = computed(() => props?.field?.icon || null);
55-
const urlIcon = computed(() => props?.field?.urlIcon || null);
56-
const htmlIcon = computed(() => props?.field?.htmlIcon || null);
56+
const iconUrl = computed(() => props?.field?.iconUrl || null);
57+
const iconHtml = computed(() => props?.field?.iconHtml || null);
5758
5859
// Computed
59-
const hasIcon = computed(() => icon?.value !== null || htmlIcon?.value !== null || urlIcon?.value !== null);
60+
const hasIcon = computed(() => icon?.value !== null || iconHtml?.value !== null || iconUrl?.value !== null);
6061
const hasTooltip = computed(() => props?.field?.hasTooltip === true);
6162
6263

resources/js/mixins/HandlesActions.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import isNil from 'lodash/isNil'
55
import {ref} from "vue";
66
import {Errors} from 'form-backend-validation'
77

8-
export const useHandleAction = ({queryString, resourceName, selectedAction, selectedResources}) => {
8+
export const useHandleAction = ({queryString, resourceId, resourceName, selectedAction, selectedResources, isOnDetail = false}) => {
99

1010
// State
1111
const errors = ref(new Errors());
@@ -138,9 +138,8 @@ export const useHandleAction = ({queryString, resourceName, selectedAction, sele
138138
Nova.$emit('action-executed')
139139
Nova.$emit('refresh-resources')
140140

141-
if (typeof callback === 'function') {
142-
callback()
143-
}
141+
if (typeof callback === 'function') callback()
142+
if (isOnDetail) Nova.visit(`/resources/${resourceName}/${resourceId}`)
144143
}
145144

146145

0 commit comments

Comments
 (0)