mirror of https://github.com/nocodb/nocodb
Ramesh Mane
9 months ago
2 changed files with 205 additions and 0 deletions
After Width: | Height: | Size: 58 KiB |
@ -0,0 +1,205 @@
|
||||
<script lang="ts" setup> |
||||
import data from 'emoji-mart-vue-fast/data/apple.json' |
||||
import 'emoji-mart-vue-fast/css/emoji-mart.css' |
||||
import { Slider } from '@ckpack/vue-color' |
||||
import { Icon } from '@iconify/vue' |
||||
import tinycolor from 'tinycolor2' |
||||
|
||||
import { EmojiIndex, Picker } from 'emoji-mart-vue-fast/src' |
||||
|
||||
const props = defineProps<{ |
||||
hue?: number | undefined |
||||
size?: 'small' | 'medium' | 'large' | 'xlarge' |
||||
readonly?: boolean |
||||
disableClearing?: boolean |
||||
}>() |
||||
|
||||
const emit = defineEmits(['colorSelected']) |
||||
|
||||
const { hue: initialHue, size = 'medium', readonly } = props |
||||
|
||||
const hueData = [199, 24, 41, 141, 224, 3, 317, 271, 332] |
||||
|
||||
const clearable = computed(() => { |
||||
return !props.disableClearing && !readonly |
||||
}) |
||||
|
||||
const isOpen = ref(false) |
||||
|
||||
const isOpenHuePicker = ref(false) |
||||
|
||||
const colorRef = ref( |
||||
initialHue !== undefined |
||||
? { |
||||
hsv: { |
||||
a: 1, |
||||
h: initialHue, |
||||
s: 0, |
||||
v: 0, |
||||
}, |
||||
} |
||||
: '', |
||||
) |
||||
|
||||
function selectColor(hue: number) { |
||||
emit('colorSelected', hue) |
||||
|
||||
isOpenHuePicker.value = false |
||||
isOpen.value = false |
||||
} |
||||
|
||||
const onClick = (e: Event) => { |
||||
if (readonly) return |
||||
|
||||
e.stopPropagation() |
||||
|
||||
isOpen.value = !isOpen.value |
||||
} |
||||
|
||||
// Due to calculation of dropdown position by ant dropdown, we need to delay the isOpen change |
||||
// otherwise dropdown opening will be slow |
||||
const debounceIsOpen = ref(false) |
||||
watch(isOpen, () => { |
||||
if (!isOpen.value) { |
||||
debounceIsOpen.value = isOpen.value |
||||
return |
||||
} |
||||
|
||||
setTimeout(() => { |
||||
debounceIsOpen.value = isOpen.value |
||||
}, 10) |
||||
}) |
||||
|
||||
const showClearButton = computed(() => { |
||||
return !!colorRef.value && clearable.value |
||||
}) |
||||
|
||||
watchEffect(() => { |
||||
console.log('hue', tinycolor(`hsv(${colorRef.value?.hsv?.h || 'none'}, 100%, 30%)`).toHexString(), colorRef.value) |
||||
}) |
||||
</script> |
||||
|
||||
<template> |
||||
<a-dropdown v-model:visible="isOpen" :trigger="['click']" :disabled="readonly"> |
||||
<div |
||||
class="flex flex-row justify-center items-center select-none rounded-md nc-emoji" |
||||
:class="{ |
||||
'hover:bg-gray-500 hover:bg-opacity-15 cursor-pointer': !readonly, |
||||
'bg-gray-500 bg-opacity-15': isOpen, |
||||
'h-6 w-6 text-lg': size === 'small', |
||||
'h-8 w-8 text-xl': size === 'medium', |
||||
'h-10 w-10 text-2xl': size === 'large', |
||||
'h-14 w-16 text-5xl': size === 'xlarge', |
||||
}" |
||||
@click="onClick" |
||||
> |
||||
<template v-if="!colorRef"> |
||||
<slot name="default" /> |
||||
</template> |
||||
<template v-else> |
||||
<svg width="16" height="16" viewBox="0 0 1073 1073" fill="none" xmlns="http://www.w3.org/2000/svg"> |
||||
<mask |
||||
id="mask0_1749_80944" |
||||
style="mask-type: luminance" |
||||
maskUnits="userSpaceOnUse" |
||||
x="94" |
||||
y="40" |
||||
width="885" |
||||
height="993" |
||||
> |
||||
<path d="M978.723 40H94V1033H978.723V40Z" fill="white" /> |
||||
</mask> |
||||
<g mask="url(#mask0_1749_80944)"> |
||||
<path |
||||
fill-rule="evenodd" |
||||
clip-rule="evenodd" |
||||
d="M638.951 291.265L936.342 462.949C966.129 480.145 980.256 502.958 978.723 525.482V774.266C980.256 796.789 966.129 819.602 936.342 836.798L638.951 1008.48C582.292 1041.19 490.431 1041.19 433.773 1008.48L136.381 836.798C106.595 819.602 92.4675 796.789 93.9999 774.266L93.9999 525.482C92.4675 502.957 106.595 480.145 136.381 462.949L433.773 291.265C490.431 258.556 582.292 258.556 638.951 291.265Z" |
||||
:fill="tinycolor(`hsv(${colorRef?.hsv?.h || 'none'}, 100%, 30%)`).toHexString()" |
||||
/> |
||||
<path |
||||
fill-rule="evenodd" |
||||
clip-rule="evenodd" |
||||
d="M638.951 65.0055L936.342 236.69C966.129 253.886 980.256 276.699 978.723 299.222V548.006C980.256 570.529 966.129 593.343 936.342 610.538L638.951 782.223C582.292 814.931 490.431 814.931 433.773 782.223L136.381 610.538C106.595 593.343 92.4675 570.529 93.9999 548.006L93.9999 299.222C92.4675 276.699 106.595 253.886 136.381 236.69L433.773 65.0055C490.431 32.2968 582.292 32.2968 638.951 65.0055Z" |
||||
:fill="tinycolor(`hsv(${colorRef?.hsv?.h || 'none'}, 30%, 100%)`).toHexString()" |
||||
/> |
||||
</g> |
||||
</svg> |
||||
</template> |
||||
</div> |
||||
<template #overlay> |
||||
<div |
||||
class="relative bg-white rounded-lg p-3 border-1 border-gray-200 shadow-lg" |
||||
:class="{ |
||||
clearable: showClearButton, |
||||
}" |
||||
> |
||||
<div class="w-[164px] flex flex-wrap"> |
||||
<div |
||||
v-for="(hue, i) of hueData" |
||||
:key="i" |
||||
class="p-1 rounded cursor-pointer hover:bg-gray-200" |
||||
:class="i > 4 ? 'mt-3' : ''" |
||||
> |
||||
<div |
||||
class="rounded h-6 w-6" |
||||
:style="{ |
||||
backgroundColor: tinycolor(`hsv(${hue}, 30%, 100%) `).toHexString(), |
||||
}" |
||||
></div> |
||||
</div> |
||||
|
||||
<a-dropdown |
||||
v-model:visible="isOpenHuePicker" |
||||
:trigger="['click']" |
||||
:disabled="readonly" |
||||
placement="bottom" |
||||
overlayClassName="!left-8.5" |
||||
> |
||||
<div class="p-1 rounded cursor-pointer hover:bg-gray-200 mt-3"> |
||||
<div |
||||
class="rounded overflow-hidden h-6 w-6" |
||||
:style="{ |
||||
backgroundColor: tinycolor(`hsv(${hue}, 30%, 100%) `).toHexString(), |
||||
}" |
||||
> |
||||
<img src="~/assets/img/hue-colors.png" class="" alt="Hue picker" /> |
||||
</div> |
||||
</div> |
||||
<template #overlay> |
||||
<div |
||||
class="relative bg-white rounded-lg p-3 border-1 border-gray-200 shadow-lg flex flex-col space-y-3" |
||||
:class="{ |
||||
clearable: showClearButton, |
||||
}" |
||||
> |
||||
<div class="text-sm font-semibold">Custom Hue</div> |
||||
<Slider v-model="colorRef" class="nc-hue-color-picker" :disable-fields="true" /> |
||||
|
||||
<div class="flex items-center justify-end"> |
||||
<NcButton type="secondary" size="small" @click="selectColor(colorRef?.hsv?.h)"> Apply </NcButton> |
||||
</div> |
||||
</div> |
||||
</template> |
||||
</a-dropdown> |
||||
</div> |
||||
</div> |
||||
</template> |
||||
</a-dropdown> |
||||
</template> |
||||
|
||||
<style lang="scss"> |
||||
.clearable { |
||||
.emoji-mart-search { |
||||
@apply pr-22; |
||||
} |
||||
} |
||||
|
||||
.nc-hue-color-picker { |
||||
.vc-slider-swatches { |
||||
@apply hidden; |
||||
} |
||||
.vc-hue { |
||||
@apply rounded-lg; |
||||
} |
||||
} |
||||
</style> |
Loading…
Reference in new issue