mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-30 18:47:51 +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>
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <script setup>
 | |
| import Button from 'dashboard/components-next/button/Button.vue';
 | |
| 
 | |
| const props = defineProps({
 | |
|   label: {
 | |
|     type: Object,
 | |
|     default: null,
 | |
|   },
 | |
|   isHovered: {
 | |
|     type: Boolean,
 | |
|     default: false,
 | |
|   },
 | |
| });
 | |
| 
 | |
| const emit = defineEmits(['remove', 'hover']);
 | |
| 
 | |
| const handleRemoveLabel = () => {
 | |
|   emit('remove', props.label);
 | |
| };
 | |
| 
 | |
| const handleMouseEnter = () => {
 | |
|   // Notify parent component when this label is hovered
 | |
|   // Added this to show the remove button with transition when hovering over the label
 | |
|   // This will solve the flickering issue when hovering over the last label item
 | |
|   emit('hover', props.label?.id);
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <template>
 | |
|   <div
 | |
|     class="flex items-center px-1 py-1 overflow-hidden transition-all duration-300 ease-out rounded-md bg-n-alpha-2 h-7"
 | |
|     @mouseenter="handleMouseEnter"
 | |
|   >
 | |
|     <div
 | |
|       class="w-2 h-2 m-1 rounded-sm"
 | |
|       :style="{ backgroundColor: label.color }"
 | |
|     />
 | |
|     <span class="text-sm text-n-slate-12 ltr:mr-px rtl:ml-px">
 | |
|       {{ label.title }}
 | |
|     </span>
 | |
|     <div
 | |
|       class="w-0 flex relative ltr:left-1 rtl:right-1 flex-shrink-0 overflow-hidden transition-[width] duration-300 ease-out"
 | |
|       :class="{ 'w-6': isHovered }"
 | |
|     >
 | |
|       <Button
 | |
|         class="transition-opacity duration-200 !h-7 ltr:rounded-r-md rtl:rounded-l-md ltr:rounded-l-none rtl:rounded-r-none w-6 bg-transparent"
 | |
|         :class="{ 'opacity-0': !isHovered, 'opacity-100': isHovered }"
 | |
|         type="button"
 | |
|         slate
 | |
|         xs
 | |
|         faded
 | |
|         icon="i-lucide-x"
 | |
|         @click="handleRemoveLabel"
 | |
|       />
 | |
|     </div>
 | |
|   </div>
 | |
| </template>
 |