mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-27 11:18:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <button class="icon-btn rounded-md flex items-center justify-center h-9 w-9 relative" @mousedown.prevent :disabled="disabled" :class="className" @click="clickBtn">
 | |
|     <span :class="outlined ? 'material-icons-outlined' : 'material-icons'" :style="{ fontSize }">{{ icon }}</span>
 | |
|   </button>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
|   props: {
 | |
|     icon: String,
 | |
|     disabled: Boolean,
 | |
|     bgColor: {
 | |
|       type: String,
 | |
|       default: 'primary'
 | |
|     },
 | |
|     outlined: Boolean,
 | |
|     borderless: Boolean
 | |
|   },
 | |
|   data() {
 | |
|     return {}
 | |
|   },
 | |
|   computed: {
 | |
|     className() {
 | |
|       var classes = []
 | |
|       if (!this.borderless) {
 | |
|         classes.push(`bg-${this.bgColor} border border-gray-600`)
 | |
|       }
 | |
|       return classes.join(' ')
 | |
|     },
 | |
|     fontSize() {
 | |
|       if (this.icon === 'edit') return '1.25rem'
 | |
|       return '1.4rem'
 | |
|     }
 | |
|   },
 | |
|   methods: {
 | |
|     clickBtn(e) {
 | |
|       if (this.disabled) {
 | |
|         e.preventDefault()
 | |
|         return
 | |
|       }
 | |
|       e.preventDefault()
 | |
|       this.$emit('click')
 | |
|       e.stopPropagation()
 | |
|     }
 | |
|   },
 | |
|   mounted() {}
 | |
| }
 | |
| </script>
 | |
| 
 | |
| <style>
 | |
| button.icon-btn:disabled {
 | |
|   cursor: not-allowed;
 | |
| }
 | |
| button.icon-btn::before {
 | |
|   content: '';
 | |
|   position: absolute;
 | |
|   border-radius: 6px;
 | |
|   top: 0;
 | |
|   left: 0;
 | |
|   width: 100%;
 | |
|   height: 100%;
 | |
|   background-color: rgba(255, 255, 255, 0);
 | |
|   transition: all 0.1s ease-in-out;
 | |
| }
 | |
| button.icon-btn:hover:not(:disabled)::before {
 | |
|   background-color: rgba(255, 255, 255, 0.1);
 | |
| }
 | |
| button.icon-btn:disabled::before {
 | |
|   background-color: rgba(0, 0, 0, 0.2);
 | |
| }
 | |
| button.icon-btn:disabled span {
 | |
|   color: #777;
 | |
| }
 | |
| </style> |