mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 11:08:04 +00:00 
			
		
		
		
	 ca579bd62a
			
		
	
	ca579bd62a
	
	
	
		
			
			# Pull Request Template ## Description Fixes https://linear.app/chatwoot/issue/CW-5573/feat-createedit-agent-capacity-policy-page ## Type of change - [x] New feature (non-breaking change which adds functionality) ## How Has This Been Tested? ### Loom video https://www.loom.com/share/8de9e3c5d8824cd998d242636540dd18?sid=1314536f-c8d6-41fd-8139-cae9bf94f942 ### Screenshots **Light mode** <img width="1666" height="1225" alt="image" src="https://github.com/user-attachments/assets/7e6d83a4-ce02-47a7-91f6-87745f8f5549" /> <img width="1666" height="1225" alt="image" src="https://github.com/user-attachments/assets/7dd1f840-2e25-4365-aa1d-ed9dac13385a" /> **Dark mode** <img width="1666" height="1225" alt="image" src="https://github.com/user-attachments/assets/0c787095-7146-4fb3-a61a-e2232973bcba" /> <img width="1666" height="1225" alt="image" src="https://github.com/user-attachments/assets/481c21fd-03b5-4c1f-b59e-7f8c8017f9ce" /> ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [x] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules --------- Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
		
			
				
	
	
		
			135 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			135 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <script setup>
 | |
| import { computed, ref } from 'vue';
 | |
| import { useToggle } from '@vueuse/core';
 | |
| import { vOnClickOutside } from '@vueuse/components';
 | |
| import { picoSearch } from '@scmmishra/pico-search';
 | |
| 
 | |
| import Avatar from 'next/avatar/Avatar.vue';
 | |
| import Icon from 'dashboard/components-next/icon/Icon.vue';
 | |
| import Button from 'dashboard/components-next/button/Button.vue';
 | |
| import Input from 'dashboard/components-next/input/Input.vue';
 | |
| 
 | |
| const props = defineProps({
 | |
|   label: {
 | |
|     type: String,
 | |
|     default: '',
 | |
|   },
 | |
|   searchPlaceholder: {
 | |
|     type: String,
 | |
|     default: '',
 | |
|   },
 | |
|   items: {
 | |
|     type: Array,
 | |
|     default: () => [],
 | |
|   },
 | |
| });
 | |
| 
 | |
| const emit = defineEmits(['add']);
 | |
| 
 | |
| const [showPopover, togglePopover] = useToggle();
 | |
| 
 | |
| const searchValue = ref('');
 | |
| 
 | |
| const filteredItems = computed(() => {
 | |
|   if (!searchValue.value) return props.items;
 | |
|   const query = searchValue.value.toLowerCase();
 | |
| 
 | |
|   return picoSearch(props.items, query, ['name']);
 | |
| });
 | |
| 
 | |
| const handleAdd = item => {
 | |
|   emit('add', item);
 | |
|   togglePopover(false);
 | |
| };
 | |
| 
 | |
| const handleClickOutside = () => {
 | |
|   if (showPopover.value) {
 | |
|     togglePopover(false);
 | |
|   }
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <template>
 | |
|   <div
 | |
|     v-on-click-outside="handleClickOutside"
 | |
|     class="relative flex items-center group"
 | |
|   >
 | |
|     <Button
 | |
|       slate
 | |
|       type="button"
 | |
|       icon="i-lucide-plus"
 | |
|       sm
 | |
|       :label="label"
 | |
|       @click="togglePopover(!showPopover)"
 | |
|     />
 | |
|     <div
 | |
|       v-if="showPopover"
 | |
|       class="top-full mt-2 ltr:right-0 rtl:left-0 xl:ltr:left-0 xl:rtl:right-0 z-50 flex flex-col items-start absolute bg-n-alpha-3 backdrop-blur-[50px] border-0 gap-4 outline outline-1 outline-n-weak rounded-xl max-w-96 min-w-80 max-h-[20rem] overflow-y-auto py-2"
 | |
|     >
 | |
|       <div class="flex flex-col divide-y divide-n-slate-4 w-full">
 | |
|         <Input
 | |
|           v-model="searchValue"
 | |
|           :placeholder="searchPlaceholder"
 | |
|           custom-input-class="bg-transparent !outline-none w-full ltr:!pl-10 rtl:!pr-10 h-10"
 | |
|         >
 | |
|           <template #prefix>
 | |
|             <Icon
 | |
|               icon="i-lucide-search"
 | |
|               class="absolute -translate-y-1/2 text-n-slate-11 size-4 top-1/2 ltr:left-3 rtl:right-3"
 | |
|             />
 | |
|           </template>
 | |
|         </Input>
 | |
| 
 | |
|         <div
 | |
|           v-for="item in filteredItems"
 | |
|           :key="item.id"
 | |
|           class="flex gap-3 min-w-0 w-full py-4 px-3 hover:bg-n-alpha-2 cursor-pointer"
 | |
|           :class="{ 'items-center': item.color, 'items-start': !item.color }"
 | |
|           @click="handleAdd(item)"
 | |
|         >
 | |
|           <Icon
 | |
|             v-if="item.icon"
 | |
|             :icon="item.icon"
 | |
|             class="size-2 text-n-slate-12 flex-shrink-0 mt-0.5"
 | |
|           />
 | |
|           <span
 | |
|             v-else-if="item.color"
 | |
|             :style="{ backgroundColor: item.color }"
 | |
|             class="size-3 rounded-sm"
 | |
|           />
 | |
|           <Avatar
 | |
|             v-else
 | |
|             :title="item.name"
 | |
|             :src="item.avatarUrl"
 | |
|             :name="item.name"
 | |
|             :size="20"
 | |
|             rounded-full
 | |
|           />
 | |
|           <div class="flex flex-col items-start gap-2 min-w-0">
 | |
|             <div class="flex items-center gap-1 min-w-0">
 | |
|               <span
 | |
|                 :title="item.name || item.title"
 | |
|                 class="text-sm text-n-slate-12 truncate min-w-0"
 | |
|               >
 | |
|                 {{ item.name || item.title }}
 | |
|               </span>
 | |
|               <span
 | |
|                 v-if="item.id"
 | |
|                 class="text-xs text-n-slate-11 flex-shrink-0"
 | |
|               >
 | |
|                 {{ `#${item.id}` }}
 | |
|               </span>
 | |
|             </div>
 | |
|             <span
 | |
|               v-if="item.email || item.phoneNumber"
 | |
|               class="text-sm text-n-slate-11 truncate min-w-0"
 | |
|             >
 | |
|               {{ item.email || item.phoneNumber }}
 | |
|             </span>
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
|   </div>
 | |
| </template>
 |