77 lines
1.7 KiB
Vue
77 lines
1.7 KiB
Vue
<script lang="ts" setup>
|
|
import { Handle, NodeProps, Position } from '~/index'
|
|
|
|
interface RGBNodeProps extends NodeProps {
|
|
data: {
|
|
color: 'r' | 'g' | 'b'
|
|
}
|
|
amount: {
|
|
red: number
|
|
green: number
|
|
blue: number
|
|
}
|
|
}
|
|
const props = defineProps<RGBNodeProps>()
|
|
const emit = defineEmits(['change'])
|
|
let color = 'red'
|
|
switch (props.data.color) {
|
|
case 'r':
|
|
color = 'red'
|
|
break
|
|
case 'g':
|
|
color = 'green'
|
|
break
|
|
case 'b':
|
|
color = 'blue'
|
|
break
|
|
}
|
|
const onChange = (e: any) => emit('change', { color, val: e.target.value })
|
|
</script>
|
|
<template>
|
|
<div class="wrapper">
|
|
<div class="text-md" :style="{ color }">{{ `${color} Amount`.toUpperCase() }}</div>
|
|
<input
|
|
v-model="props.amount[color]"
|
|
class="slider nodrag"
|
|
:style="{ '--color': color }"
|
|
type="range"
|
|
min="0"
|
|
max="255"
|
|
@input="onChange"
|
|
/>
|
|
<Handle type="source" :position="Position.Right" :style="{ backgroundColor: color }" />
|
|
</div>
|
|
</template>
|
|
<style>
|
|
.wrapper {
|
|
padding: 16px;
|
|
background: #fff;
|
|
border-radius: 10px;
|
|
border: 2px solid black;
|
|
text-align: left;
|
|
}
|
|
|
|
.slider {
|
|
--color: red;
|
|
margin-top: 12px;
|
|
background: gainsboro;
|
|
width: 100%;
|
|
height: 10px;
|
|
outline: none;
|
|
border-radius: 999px;
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
|
|
&::-moz-range-thumb {
|
|
@apply w-[15px] h-[15px] cursor-pointer border-1 border-solid border-white rounded-full;
|
|
-webkit-appearance: none;
|
|
background: var(--color);
|
|
}
|
|
&::-webkit-slider-thumb {
|
|
@apply w-[15px] h-[15px] cursor-pointer border-1 border-solid border-white rounded-full;
|
|
-webkit-appearance: none;
|
|
background: var(--color);
|
|
}
|
|
}
|
|
</style>
|