mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	Fixes #241 Fixes: chatwoot/product#648 Co-authored-by: Aswin Dev P.S <aswindevps@gmail.com> Co-authored-by: Nithin David Thomas <1277421+nithindavid@users.noreply.github.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
		
			
				
	
	
		
			220 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			220 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="dropdown-wrap">
 | 
						|
    <div class="search-wrap">
 | 
						|
      <input
 | 
						|
        ref="searchbar"
 | 
						|
        v-model="search"
 | 
						|
        type="text"
 | 
						|
        class="search-input"
 | 
						|
        autofocus="true"
 | 
						|
        :placeholder="inputPlaceholder"
 | 
						|
      />
 | 
						|
    </div>
 | 
						|
    <div class="list-scroll-container">
 | 
						|
      <div class="multiselect-dropdown--list">
 | 
						|
        <woot-dropdown-menu>
 | 
						|
          <woot-dropdown-item
 | 
						|
            v-for="option in filteredOptions"
 | 
						|
            :key="option.id"
 | 
						|
          >
 | 
						|
            <woot-button
 | 
						|
              class="multiselect-dropdown--item"
 | 
						|
              :variant="isActive(option) ? 'hollow' : 'clear'"
 | 
						|
              color-scheme="secondary"
 | 
						|
              :class="{
 | 
						|
                active: isActive(option),
 | 
						|
              }"
 | 
						|
              @click="() => onclick(option)"
 | 
						|
            >
 | 
						|
              <div class="user-wrap">
 | 
						|
                <Thumbnail
 | 
						|
                  v-if="hasThumbnail"
 | 
						|
                  :src="option.thumbnail"
 | 
						|
                  size="24px"
 | 
						|
                  :username="option.name"
 | 
						|
                  :status="option.availability_status"
 | 
						|
                  has-border
 | 
						|
                />
 | 
						|
                <div class="name-wrap">
 | 
						|
                  <span
 | 
						|
                    class="name text-truncate text-block-title"
 | 
						|
                    :title="option.name"
 | 
						|
                  >
 | 
						|
                    {{ option.name }}
 | 
						|
                  </span>
 | 
						|
                  <fluent-icon v-if="isActive(option)" icon="checkmark" />
 | 
						|
                </div>
 | 
						|
              </div>
 | 
						|
            </woot-button>
 | 
						|
          </woot-dropdown-item>
 | 
						|
        </woot-dropdown-menu>
 | 
						|
        <h4 v-if="noResult" class="no-result text-truncate text-block-title">
 | 
						|
          {{ noSearchResult }}
 | 
						|
        </h4>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
import WootDropdownItem from 'shared/components/ui/dropdown/DropdownItem.vue';
 | 
						|
import WootDropdownMenu from 'shared/components/ui/dropdown/DropdownMenu.vue';
 | 
						|
import Thumbnail from 'dashboard/components/widgets/Thumbnail.vue';
 | 
						|
 | 
						|
export default {
 | 
						|
  components: {
 | 
						|
    WootDropdownItem,
 | 
						|
    WootDropdownMenu,
 | 
						|
    Thumbnail,
 | 
						|
  },
 | 
						|
 | 
						|
  props: {
 | 
						|
    options: {
 | 
						|
      type: Array,
 | 
						|
      default: () => [],
 | 
						|
    },
 | 
						|
    selectedItems: {
 | 
						|
      type: Array,
 | 
						|
      default: () => [],
 | 
						|
    },
 | 
						|
    hasThumbnail: {
 | 
						|
      type: Boolean,
 | 
						|
      default: true,
 | 
						|
    },
 | 
						|
    inputPlaceholder: {
 | 
						|
      type: String,
 | 
						|
      default: 'Search',
 | 
						|
    },
 | 
						|
    noSearchResult: {
 | 
						|
      type: String,
 | 
						|
      default: 'No results found',
 | 
						|
    },
 | 
						|
  },
 | 
						|
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      search: '',
 | 
						|
    };
 | 
						|
  },
 | 
						|
 | 
						|
  computed: {
 | 
						|
    filteredOptions() {
 | 
						|
      return this.options.filter(option => {
 | 
						|
        return option.name.toLowerCase().includes(this.search.toLowerCase());
 | 
						|
      });
 | 
						|
    },
 | 
						|
    noResult() {
 | 
						|
      return this.filteredOptions.length === 0 && this.search !== '';
 | 
						|
    },
 | 
						|
  },
 | 
						|
 | 
						|
  mounted() {
 | 
						|
    this.focusInput();
 | 
						|
  },
 | 
						|
 | 
						|
  methods: {
 | 
						|
    onclick(option) {
 | 
						|
      this.$emit('click', option);
 | 
						|
    },
 | 
						|
    focusInput() {
 | 
						|
      this.$refs.searchbar.focus();
 | 
						|
    },
 | 
						|
    isActive(option) {
 | 
						|
      return this.selectedItems.some(item => item && option.id === item.id);
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<style lang="scss" scoped>
 | 
						|
.dropdown-wrap {
 | 
						|
  width: 100%;
 | 
						|
  display: flex;
 | 
						|
  flex-direction: column;
 | 
						|
  max-height: 20rem;
 | 
						|
}
 | 
						|
 | 
						|
.search-wrap {
 | 
						|
  margin-bottom: var(--space-small);
 | 
						|
  flex: 0 0 auto;
 | 
						|
  max-height: var(--space-large);
 | 
						|
}
 | 
						|
 | 
						|
.search-input {
 | 
						|
  margin: 0;
 | 
						|
  width: 100%;
 | 
						|
  border: 1px solid transparent;
 | 
						|
  height: var(--space-large);
 | 
						|
  font-size: var(--font-size-small);
 | 
						|
  padding: var(--space-small);
 | 
						|
  background-color: var(--color-background);
 | 
						|
 | 
						|
  &:focus {
 | 
						|
    border: 1px solid var(--w-500);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.list-scroll-container {
 | 
						|
  display: flex;
 | 
						|
  justify-content: flex-start;
 | 
						|
  align-items: flex-start;
 | 
						|
  flex: 1 1 auto;
 | 
						|
  overflow: auto;
 | 
						|
}
 | 
						|
 | 
						|
.multiselect-dropdown--list {
 | 
						|
  width: 100%;
 | 
						|
  max-height: 16rem;
 | 
						|
}
 | 
						|
 | 
						|
.multiselect-dropdown--item {
 | 
						|
  justify-content: space-between;
 | 
						|
  width: 100%;
 | 
						|
 | 
						|
  &.active {
 | 
						|
    background: var(--s-25);
 | 
						|
    border-color: var(--s-50);
 | 
						|
    font-weight: var(--font-weight-medium);
 | 
						|
  }
 | 
						|
 | 
						|
  &:focus {
 | 
						|
    background-color: var(--color-background-light);
 | 
						|
  }
 | 
						|
 | 
						|
  &:hover {
 | 
						|
    color: var(--s-800);
 | 
						|
    background-color: var(--color-background);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.user-wrap {
 | 
						|
  display: flex;
 | 
						|
  align-items: center;
 | 
						|
}
 | 
						|
 | 
						|
.name-wrap {
 | 
						|
  display: flex;
 | 
						|
  justify-content: space-between;
 | 
						|
  align-items: center;
 | 
						|
  min-width: 0;
 | 
						|
  width: 100%;
 | 
						|
  align-items: center;
 | 
						|
}
 | 
						|
 | 
						|
.name {
 | 
						|
  line-height: var(--space-normal);
 | 
						|
  margin: 0 var(--space-small);
 | 
						|
}
 | 
						|
 | 
						|
.icon {
 | 
						|
  margin-left: var(--space-smaller);
 | 
						|
}
 | 
						|
 | 
						|
.no-result {
 | 
						|
  display: flex;
 | 
						|
  justify-content: center;
 | 
						|
  width: 100%;
 | 
						|
  padding: var(--space-small) var(--space-one);
 | 
						|
}
 | 
						|
</style>
 |