mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	* feat: Adds keyboard shortcuts for conversation actions * Minor fixes * Minor fixes * Minor fixes and add new shortcut * MInor fixes * Review fixes * Minor fixes * Code cleanup * Minor fixes * Uses Alt or Option key instead of shift-key * Review fixes * Review fixes Co-authored-by: Pranav Raj S <pranav@chatwoot.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
		
			
				
	
	
		
			243 lines
		
	
	
		
			6.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			243 lines
		
	
	
		
			6.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="resolve-actions">
 | 
						|
    <div class="button-group">
 | 
						|
      <woot-button
 | 
						|
        v-if="isOpen"
 | 
						|
        class-names="resolve"
 | 
						|
        color-scheme="success"
 | 
						|
        icon="ion-checkmark"
 | 
						|
        emoji="✅"
 | 
						|
        :is-loading="isLoading"
 | 
						|
        @click="() => toggleStatus(STATUS_TYPE.RESOLVED)"
 | 
						|
      >
 | 
						|
        {{ this.$t('CONVERSATION.HEADER.RESOLVE_ACTION') }}
 | 
						|
      </woot-button>
 | 
						|
      <woot-button
 | 
						|
        v-else-if="isResolved"
 | 
						|
        class-names="resolve"
 | 
						|
        color-scheme="warning"
 | 
						|
        icon="ion-refresh"
 | 
						|
        emoji="👀"
 | 
						|
        :is-loading="isLoading"
 | 
						|
        @click="() => toggleStatus(STATUS_TYPE.OPEN)"
 | 
						|
      >
 | 
						|
        {{ this.$t('CONVERSATION.HEADER.REOPEN_ACTION') }}
 | 
						|
      </woot-button>
 | 
						|
      <woot-button
 | 
						|
        v-else-if="showOpenButton"
 | 
						|
        class-names="resolve"
 | 
						|
        color-scheme="primary"
 | 
						|
        icon="ion-person"
 | 
						|
        :is-loading="isLoading"
 | 
						|
        @click="() => toggleStatus(STATUS_TYPE.OPEN)"
 | 
						|
      >
 | 
						|
        {{ this.$t('CONVERSATION.HEADER.OPEN_ACTION') }}
 | 
						|
      </woot-button>
 | 
						|
      <woot-button
 | 
						|
        v-if="showAdditionalActions"
 | 
						|
        ref="arrowDownButton"
 | 
						|
        :color-scheme="buttonClass"
 | 
						|
        :disabled="isLoading"
 | 
						|
        icon="ion-arrow-down-b"
 | 
						|
        emoji="🔽"
 | 
						|
        @click="openDropdown"
 | 
						|
      />
 | 
						|
    </div>
 | 
						|
    <div
 | 
						|
      v-if="showActionsDropdown"
 | 
						|
      v-on-clickaway="closeDropdown"
 | 
						|
      class="dropdown-pane dropdown-pane--open"
 | 
						|
    >
 | 
						|
      <woot-dropdown-menu>
 | 
						|
        <woot-dropdown-item v-if="!isPending">
 | 
						|
          <woot-button
 | 
						|
            variant="clear"
 | 
						|
            @click="() => toggleStatus(STATUS_TYPE.PENDING)"
 | 
						|
          >
 | 
						|
            {{ this.$t('CONVERSATION.RESOLVE_DROPDOWN.MARK_PENDING') }}
 | 
						|
          </woot-button>
 | 
						|
        </woot-dropdown-item>
 | 
						|
 | 
						|
        <woot-dropdown-sub-menu
 | 
						|
          v-if="isOpen"
 | 
						|
          :title="this.$t('CONVERSATION.RESOLVE_DROPDOWN.SNOOZE.TITLE')"
 | 
						|
        >
 | 
						|
          <woot-dropdown-item>
 | 
						|
            <woot-button
 | 
						|
              variant="clear"
 | 
						|
              @click="() => toggleStatus(STATUS_TYPE.SNOOZED, null)"
 | 
						|
            >
 | 
						|
              {{ this.$t('CONVERSATION.RESOLVE_DROPDOWN.SNOOZE.NEXT_REPLY') }}
 | 
						|
            </woot-button>
 | 
						|
          </woot-dropdown-item>
 | 
						|
          <woot-dropdown-item>
 | 
						|
            <woot-button
 | 
						|
              variant="clear"
 | 
						|
              @click="
 | 
						|
                () => toggleStatus(STATUS_TYPE.SNOOZED, snoozeTimes.tomorrow)
 | 
						|
              "
 | 
						|
            >
 | 
						|
              {{ this.$t('CONVERSATION.RESOLVE_DROPDOWN.SNOOZE.TOMORROW') }}
 | 
						|
            </woot-button>
 | 
						|
          </woot-dropdown-item>
 | 
						|
          <woot-dropdown-item>
 | 
						|
            <woot-button
 | 
						|
              variant="clear"
 | 
						|
              @click="
 | 
						|
                () => toggleStatus(STATUS_TYPE.SNOOZED, snoozeTimes.nextWeek)
 | 
						|
              "
 | 
						|
            >
 | 
						|
              {{ this.$t('CONVERSATION.RESOLVE_DROPDOWN.SNOOZE.NEXT_WEEK') }}
 | 
						|
            </woot-button>
 | 
						|
          </woot-dropdown-item>
 | 
						|
        </woot-dropdown-sub-menu>
 | 
						|
      </woot-dropdown-menu>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
import { mapGetters } from 'vuex';
 | 
						|
import { mixin as clickaway } from 'vue-clickaway';
 | 
						|
import alertMixin from 'shared/mixins/alertMixin';
 | 
						|
import eventListenerMixins from 'shared/mixins/eventListenerMixins';
 | 
						|
import {
 | 
						|
  hasPressedAltAndEKey,
 | 
						|
  hasPressedCommandPlusAltAndEKey,
 | 
						|
  hasPressedAltAndMKey,
 | 
						|
} from 'shared/helpers/KeyboardHelpers';
 | 
						|
 | 
						|
import WootDropdownItem from 'shared/components/ui/dropdown/DropdownItem.vue';
 | 
						|
import WootDropdownSubMenu from 'shared/components/ui/dropdown/DropdownSubMenu.vue';
 | 
						|
import WootDropdownMenu from 'shared/components/ui/dropdown/DropdownMenu.vue';
 | 
						|
import wootConstants from '../../constants';
 | 
						|
import {
 | 
						|
  getUnixTime,
 | 
						|
  addHours,
 | 
						|
  addWeeks,
 | 
						|
  startOfTomorrow,
 | 
						|
  startOfWeek,
 | 
						|
} from 'date-fns';
 | 
						|
 | 
						|
export default {
 | 
						|
  components: {
 | 
						|
    WootDropdownItem,
 | 
						|
    WootDropdownMenu,
 | 
						|
    WootDropdownSubMenu,
 | 
						|
  },
 | 
						|
  mixins: [clickaway, alertMixin, eventListenerMixins],
 | 
						|
  props: { conversationId: { type: [String, Number], required: true } },
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      isLoading: false,
 | 
						|
      showActionsDropdown: false,
 | 
						|
      STATUS_TYPE: wootConstants.STATUS_TYPE,
 | 
						|
    };
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    ...mapGetters({
 | 
						|
      currentChat: 'getSelectedChat',
 | 
						|
    }),
 | 
						|
    isOpen() {
 | 
						|
      return this.currentChat.status === wootConstants.STATUS_TYPE.OPEN;
 | 
						|
    },
 | 
						|
    isPending() {
 | 
						|
      return this.currentChat.status === wootConstants.STATUS_TYPE.PENDING;
 | 
						|
    },
 | 
						|
    isResolved() {
 | 
						|
      return this.currentChat.status === wootConstants.STATUS_TYPE.RESOLVED;
 | 
						|
    },
 | 
						|
    isSnoozed() {
 | 
						|
      return this.currentChat.status === wootConstants.STATUS_TYPE.SNOOZED;
 | 
						|
    },
 | 
						|
    buttonClass() {
 | 
						|
      if (this.isPending) return 'primary';
 | 
						|
      if (this.isOpen) return 'success';
 | 
						|
      if (this.isResolved) return 'warning';
 | 
						|
      return '';
 | 
						|
    },
 | 
						|
    showAdditionalActions() {
 | 
						|
      return !this.isPending && !this.isSnoozed;
 | 
						|
    },
 | 
						|
    snoozeTimes() {
 | 
						|
      return {
 | 
						|
        // tomorrow  = 9AM next day
 | 
						|
        tomorrow: getUnixTime(addHours(startOfTomorrow(), 9)),
 | 
						|
        // next week = 9AM Monday, next week
 | 
						|
        nextWeek: getUnixTime(
 | 
						|
          addHours(startOfWeek(addWeeks(new Date(), 1), { weekStartsOn: 1 }), 9)
 | 
						|
        ),
 | 
						|
      };
 | 
						|
    },
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    async handleKeyEvents(e) {
 | 
						|
      const allConversations = document.querySelectorAll(
 | 
						|
        '.conversations-list .conversation'
 | 
						|
      );
 | 
						|
      if (hasPressedAltAndEKey(e)) {
 | 
						|
        const activeConversation = document.querySelector(
 | 
						|
          'div.conversations-list div.conversation.active'
 | 
						|
        );
 | 
						|
        const activeConversationIndex = [...allConversations].indexOf(
 | 
						|
          activeConversation
 | 
						|
        );
 | 
						|
        const lastConversationIndex = allConversations.length - 1;
 | 
						|
        try {
 | 
						|
          await this.toggleStatus(wootConstants.STATUS_TYPE.RESOLVED);
 | 
						|
        } catch (error) {
 | 
						|
          // error
 | 
						|
        }
 | 
						|
        if (hasPressedCommandPlusAltAndEKey(e)) {
 | 
						|
          if (activeConversationIndex < lastConversationIndex) {
 | 
						|
            allConversations[activeConversationIndex + 1].click();
 | 
						|
          } else if (allConversations.length > 1) {
 | 
						|
            allConversations[0].click();
 | 
						|
            document.querySelector('.conversations-list').scrollTop = 0;
 | 
						|
          }
 | 
						|
        }
 | 
						|
      }
 | 
						|
    },
 | 
						|
    showOpenButton() {
 | 
						|
      return this.isResolved || this.isSnoozed;
 | 
						|
    },
 | 
						|
    closeDropdown() {
 | 
						|
      this.showActionsDropdown = false;
 | 
						|
    },
 | 
						|
    openDropdown() {
 | 
						|
      this.showActionsDropdown = true;
 | 
						|
    },
 | 
						|
    toggleStatus(status, snoozedUntil) {
 | 
						|
      this.closeDropdown();
 | 
						|
      this.isLoading = true;
 | 
						|
      this.$store
 | 
						|
        .dispatch('toggleStatus', {
 | 
						|
          conversationId: this.currentChat.id,
 | 
						|
          status,
 | 
						|
          snoozedUntil,
 | 
						|
        })
 | 
						|
        .then(() => {
 | 
						|
          this.showAlert(this.$t('CONVERSATION.CHANGE_STATUS'));
 | 
						|
          this.isLoading = false;
 | 
						|
        });
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
<style lang="scss" scoped>
 | 
						|
.resolve-actions {
 | 
						|
  position: relative;
 | 
						|
  display: flex;
 | 
						|
  align-items: center;
 | 
						|
  justify-content: flex-end;
 | 
						|
}
 | 
						|
 | 
						|
.dropdown-pane {
 | 
						|
  left: unset;
 | 
						|
  top: 4.2rem;
 | 
						|
  margin-top: var(--space-micro);
 | 
						|
  right: 0;
 | 
						|
  max-width: 20rem;
 | 
						|
}
 | 
						|
</style>
 |