mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	 2ee63656e2
			
		
	
	2ee63656e2
	
	
	
		
			
			This PR will prevent saving user preferences and online status when impersonating. Previously, these settings could be updated during impersonation, causing the user to see a different view or UI settings. Fixes https://linear.app/chatwoot/issue/CW-4163/impersonation-improvements
		
			
				
	
	
		
			158 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			158 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <script>
 | |
| import { mapGetters } from 'vuex';
 | |
| import { useAlert } from 'dashboard/composables';
 | |
| import { useImpersonation } from 'dashboard/composables/useImpersonation';
 | |
| import WootDropdownItem from 'shared/components/ui/dropdown/DropdownItem.vue';
 | |
| import WootDropdownMenu from 'shared/components/ui/dropdown/DropdownMenu.vue';
 | |
| import WootDropdownHeader from 'shared/components/ui/dropdown/DropdownHeader.vue';
 | |
| import WootDropdownDivider from 'shared/components/ui/dropdown/DropdownDivider.vue';
 | |
| import AvailabilityStatusBadge from '../widgets/conversation/AvailabilityStatusBadge.vue';
 | |
| import wootConstants from 'dashboard/constants/globals';
 | |
| import NextButton from 'dashboard/components-next/button/Button.vue';
 | |
| 
 | |
| const { AVAILABILITY_STATUS_KEYS } = wootConstants;
 | |
| 
 | |
| export default {
 | |
|   components: {
 | |
|     WootDropdownHeader,
 | |
|     WootDropdownDivider,
 | |
|     WootDropdownMenu,
 | |
|     WootDropdownItem,
 | |
|     AvailabilityStatusBadge,
 | |
|     NextButton,
 | |
|   },
 | |
|   setup() {
 | |
|     const { isImpersonating } = useImpersonation();
 | |
|     return { isImpersonating };
 | |
|   },
 | |
|   data() {
 | |
|     return {
 | |
|       isStatusMenuOpened: false,
 | |
|       isUpdating: false,
 | |
|     };
 | |
|   },
 | |
| 
 | |
|   computed: {
 | |
|     ...mapGetters({
 | |
|       getCurrentUserAvailability: 'getCurrentUserAvailability',
 | |
|       currentAccountId: 'getCurrentAccountId',
 | |
|       currentUserAutoOffline: 'getCurrentUserAutoOffline',
 | |
|     }),
 | |
|     statusList() {
 | |
|       return [
 | |
|         this.$t('PROFILE_SETTINGS.FORM.AVAILABILITY.STATUS.ONLINE'),
 | |
|         this.$t('PROFILE_SETTINGS.FORM.AVAILABILITY.STATUS.BUSY'),
 | |
|         this.$t('PROFILE_SETTINGS.FORM.AVAILABILITY.STATUS.OFFLINE'),
 | |
|       ];
 | |
|     },
 | |
|     availabilityDisplayLabel() {
 | |
|       const availabilityIndex = AVAILABILITY_STATUS_KEYS.findIndex(
 | |
|         key => key === this.currentUserAvailability
 | |
|       );
 | |
|       return this.statusList[availabilityIndex];
 | |
|     },
 | |
|     currentUserAvailability() {
 | |
|       return this.getCurrentUserAvailability;
 | |
|     },
 | |
|     availabilityStatuses() {
 | |
|       return this.statusList.map((statusLabel, index) => ({
 | |
|         label: statusLabel,
 | |
|         value: AVAILABILITY_STATUS_KEYS[index],
 | |
|         disabled:
 | |
|           this.currentUserAvailability === AVAILABILITY_STATUS_KEYS[index],
 | |
|       }));
 | |
|     },
 | |
|   },
 | |
| 
 | |
|   methods: {
 | |
|     openStatusMenu() {
 | |
|       this.isStatusMenuOpened = true;
 | |
|     },
 | |
|     closeStatusMenu() {
 | |
|       this.isStatusMenuOpened = false;
 | |
|     },
 | |
|     updateAutoOffline(autoOffline) {
 | |
|       this.$store.dispatch('updateAutoOffline', {
 | |
|         accountId: this.currentAccountId,
 | |
|         autoOffline,
 | |
|       });
 | |
|     },
 | |
|     changeAvailabilityStatus(availability) {
 | |
|       if (this.isImpersonating) {
 | |
|         useAlert(
 | |
|           this.$t('PROFILE_SETTINGS.FORM.AVAILABILITY.IMPERSONATING_ERROR')
 | |
|         );
 | |
|         return;
 | |
|       }
 | |
| 
 | |
|       if (this.isUpdating) {
 | |
|         return;
 | |
|       }
 | |
| 
 | |
|       this.isUpdating = true;
 | |
|       try {
 | |
|         this.$store.dispatch('updateAvailability', {
 | |
|           availability,
 | |
|           account_id: this.currentAccountId,
 | |
|         });
 | |
|       } catch (error) {
 | |
|         useAlert(
 | |
|           this.$t('PROFILE_SETTINGS.FORM.AVAILABILITY.SET_AVAILABILITY_ERROR')
 | |
|         );
 | |
|       } finally {
 | |
|         this.isUpdating = false;
 | |
|       }
 | |
|     },
 | |
|   },
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <template>
 | |
|   <WootDropdownMenu>
 | |
|     <WootDropdownHeader :title="$t('SIDEBAR.SET_AVAILABILITY_TITLE')" />
 | |
|     <WootDropdownItem
 | |
|       v-for="status in availabilityStatuses"
 | |
|       :key="status.value"
 | |
|       class="flex items-baseline"
 | |
|     >
 | |
|       <NextButton
 | |
|         sm
 | |
|         :color="status.disabled ? 'blue' : 'slate'"
 | |
|         :variant="status.disabled ? 'faded' : 'ghost'"
 | |
|         class="status-change--dropdown-button !w-full !justify-start"
 | |
|         @click="changeAvailabilityStatus(status.value)"
 | |
|       >
 | |
|         <AvailabilityStatusBadge :status="status.value" />
 | |
|         <span class="min-w-0 truncate font-medium text-xs">
 | |
|           {{ status.label }}
 | |
|         </span>
 | |
|       </NextButton>
 | |
|     </WootDropdownItem>
 | |
|     <WootDropdownDivider />
 | |
|     <WootDropdownItem class="flex items-center justify-between px-3 py-2 m-0">
 | |
|       <div class="flex items-center">
 | |
|         <fluent-icon
 | |
|           v-tooltip.right-start="$t('SIDEBAR.SET_AUTO_OFFLINE.INFO_TEXT')"
 | |
|           icon="info"
 | |
|           size="14"
 | |
|           class="mt-px"
 | |
|         />
 | |
| 
 | |
|         <span
 | |
|           class="mx-2 my-0 text-xs font-medium text-slate-600 dark:text-slate-100"
 | |
|         >
 | |
|           {{ $t('SIDEBAR.SET_AUTO_OFFLINE.TEXT') }}
 | |
|         </span>
 | |
|       </div>
 | |
| 
 | |
|       <woot-switch
 | |
|         size="small"
 | |
|         class="mx-1 mt-px mb-0"
 | |
|         :model-value="currentUserAutoOffline"
 | |
|         @input="updateAutoOffline"
 | |
|       />
 | |
|     </WootDropdownItem>
 | |
|     <WootDropdownDivider />
 | |
|   </WootDropdownMenu>
 | |
| </template>
 |