mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 08:12:17 +01:00
56 lines
1.5 KiB
Vue
56 lines
1.5 KiB
Vue
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
import { twMerge } from 'tailwind-merge';
|
|
import BillableIcon from '@/packages/ui/src/Icons/BillableIcon.vue';
|
|
const active = defineModel({ default: false });
|
|
const emit = defineEmits(['changed']);
|
|
function toggleBillable() {
|
|
active.value = !active.value;
|
|
emit('changed', active.value);
|
|
}
|
|
|
|
const props = withDefaults(
|
|
defineProps<{
|
|
size?: 'small' | 'base';
|
|
}>(),
|
|
{
|
|
size: 'base',
|
|
}
|
|
);
|
|
|
|
const iconColorClasses = computed(() => {
|
|
if (active.value) {
|
|
return 'text-accent-300 focus:text-accent-200 hover:text-accent-200';
|
|
} else {
|
|
return 'text-icon-default focus:text-icon-active hover:text-icon-active';
|
|
}
|
|
});
|
|
|
|
const iconSizeClasses = computed(() => {
|
|
if (props.size === 'small') {
|
|
return 'w-5 h-5';
|
|
} else {
|
|
return 'w-5 lg:w-6 h-5 lg:h-6';
|
|
}
|
|
});
|
|
|
|
const iconSizeWrapperClasses =
|
|
props.size === 'small' ? 'w-6 sm:w-8 h-6 sm:h-8' : 'w-10 h-10';
|
|
</script>
|
|
|
|
<template>
|
|
<button
|
|
:class="
|
|
twMerge(
|
|
iconColorClasses,
|
|
iconSizeWrapperClasses,
|
|
'flex-shrink-0 ring-0 focus:outline-none focus-visible:ring-2 focus-visible:ring-ring transition focus:bg-card-background-separator hover:bg-card-background-separator rounded-full flex items-center justify-center'
|
|
)
|
|
"
|
|
@click="toggleBillable">
|
|
<BillableIcon :class="iconSizeClasses"></BillableIcon>
|
|
</button>
|
|
</template>
|
|
|
|
<style scoped></style>
|