mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: Tejaswini Chile <tejaswini@chatwoot.com>
		
			
				
	
	
		
			106 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			106 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <woot-modal
 | 
						|
    :show="showAccountModal"
 | 
						|
    :on-close="() => $emit('close-account-modal')"
 | 
						|
    class="account-selector--modal"
 | 
						|
  >
 | 
						|
    <woot-modal-header
 | 
						|
      :header-title="$t('SIDEBAR_ITEMS.CHANGE_ACCOUNTS')"
 | 
						|
      :header-content="$t('SIDEBAR_ITEMS.SELECTOR_SUBTITLE')"
 | 
						|
    />
 | 
						|
    <div class="account-selector--wrap">
 | 
						|
      <div
 | 
						|
        v-for="account in currentUser.accounts"
 | 
						|
        :key="account.id"
 | 
						|
        class="account-selector"
 | 
						|
      >
 | 
						|
        <button
 | 
						|
          class="button expanded clear link"
 | 
						|
          @click="onChangeAccount(account.id)"
 | 
						|
        >
 | 
						|
          <span class="button__content">
 | 
						|
            <label :for="account.name" class="account-details--wrap">
 | 
						|
              <div class="account--name">{{ account.name }}</div>
 | 
						|
              <div class="account--role">{{ account.role }}</div>
 | 
						|
            </label>
 | 
						|
          </span>
 | 
						|
          <fluent-icon
 | 
						|
            v-show="account.id === accountId"
 | 
						|
            class="selected--account"
 | 
						|
            icon="checkmark-circle"
 | 
						|
            type="solid"
 | 
						|
            size="24"
 | 
						|
          />
 | 
						|
        </button>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div
 | 
						|
      v-if="globalConfig.createNewAccountFromDashboard"
 | 
						|
      class="modal-footer delete-item"
 | 
						|
    >
 | 
						|
      <button
 | 
						|
        class="button success large expanded nice"
 | 
						|
        @click="$emit('show-create-account-modal')"
 | 
						|
      >
 | 
						|
        {{ $t('CREATE_ACCOUNT.NEW_ACCOUNT') }}
 | 
						|
      </button>
 | 
						|
    </div>
 | 
						|
  </woot-modal>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
import { mapGetters } from 'vuex';
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    showAccountModal: {
 | 
						|
      type: Boolean,
 | 
						|
      default: true,
 | 
						|
    },
 | 
						|
  },
 | 
						|
 | 
						|
  computed: {
 | 
						|
    ...mapGetters({
 | 
						|
      accountId: 'getCurrentAccountId',
 | 
						|
      currentUser: 'getCurrentUser',
 | 
						|
      globalConfig: 'globalConfig/get',
 | 
						|
    }),
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    onChangeAccount(accountId) {
 | 
						|
      const accountUrl = `/app/accounts/${accountId}/dashboard`;
 | 
						|
      window.location.href = accountUrl;
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
<style lang="scss" scoped>
 | 
						|
.account-selector--wrap {
 | 
						|
  margin-top: var(--space-normal);
 | 
						|
}
 | 
						|
.account-selector {
 | 
						|
  padding-top: 0;
 | 
						|
  padding-bottom: 0;
 | 
						|
  .button {
 | 
						|
    display: flex;
 | 
						|
    justify-content: space-between;
 | 
						|
    padding: var(--space-one) var(--space-normal);
 | 
						|
    .account-details--wrap {
 | 
						|
      text-align: left;
 | 
						|
      .account--name {
 | 
						|
        cursor: pointer;
 | 
						|
        font-size: var(--font-size-medium);
 | 
						|
        font-weight: var(--font-weight-medium);
 | 
						|
        line-height: 1;
 | 
						|
      }
 | 
						|
 | 
						|
      .account--role {
 | 
						|
        cursor: pointer;
 | 
						|
        font-size: var(--font-size-mini);
 | 
						|
        text-transform: capitalize;
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
</style>
 |