vxe-pc-ui
Version:
A vue based PC component library
971 lines (970 loc) • 40.9 kB
JavaScript
import { defineComponent, watch, computed, provide, ref, inject, Teleport, h, nextTick, reactive, onMounted, onUnmounted } from 'vue';
import XEUtils from 'xe-utils';
import { VxeUI, getIcon, getConfig, getI18n, globalEvents, createEvent, useSize, renderEmptyElement } from '../../ui';
import { getEventTargetNode, getAbsolutePos, toCssUnit } from '../../ui/src/dom';
import { getLastZIndex, nextZIndex } from '../../ui/src/utils';
import { parseColor, updateColorAlpha, hexToHsv, rgbToHsv, rgbToHex, hexToRgb, hsvToRgb, toRgb } from './util';
import VxeButtonComponent from '../../button/src/button';
import VxeInputComponent from '../../input/src/input';
export default defineComponent({
name: 'VxeColorPicker',
props: {
modelValue: String,
placeholder: String,
clearable: {
type: Boolean,
default: () => getConfig().colorPicker.clearable
},
type: {
type: String,
default: () => getConfig().colorPicker.type
},
size: {
type: String,
default: () => getConfig().colorPicker.size || getConfig().size
},
className: [String, Function],
popupClassName: [String, Function],
colors: {
type: Array,
default: () => XEUtils.clone(getConfig().colorPicker.colors, true) || []
},
showAlpha: {
type: Boolean,
default: () => getConfig().colorPicker.showAlpha
},
showEyeDropper: {
type: Boolean,
default: () => getConfig().colorPicker.showEyeDropper
},
showColorExtractor: {
type: Boolean,
default: () => getConfig().colorPicker.showColorExtractor
},
showQuick: {
type: Boolean,
default: () => getConfig().colorPicker.showQuick
},
readonly: {
type: Boolean,
default: null
},
disabled: {
type: Boolean,
default: null
},
clickToCopy: {
type: Boolean,
default: () => getConfig().colorPicker.clickToCopy
},
placement: String,
transfer: {
type: Boolean,
default: null
}
},
emits: [
'update:modelValue',
'change',
'clear',
'click'
],
setup(props, context) {
const { emit } = context;
const $xeModal = inject('$xeModal', null);
const $xeDrawer = inject('$xeDrawer', null);
const $xeTable = inject('$xeTable', null);
const $xeForm = inject('$xeForm', null);
const formItemInfo = inject('xeFormItemInfo', null);
const WinEyeDropper = typeof window !== 'undefined' ? window.EyeDropper : null;
const xID = XEUtils.uniqueId();
const { computeSize } = useSize(props);
const refElem = ref();
const refInput = ref();
const refOptionPanel = ref();
const refHueSliderElem = ref();
const refHueSliderBtnElem = ref();
const refAlphaSliderElem = ref();
const refAlphaSliderBtnElem = ref();
const refColorPanelElem = ref();
const refColorActiveElem = ref();
const reactData = reactive({
initialized: false,
selectColor: `${props.modelValue || ''}`,
panelColor: '',
hexValue: '',
rValue: 0,
gValue: 0,
bValue: 0,
aValue: 0,
panelIndex: 0,
panelStyle: {},
panelPlacement: null,
visiblePanel: false,
isAniVisible: false,
isActivated: false
});
const internalData = {
// hpTimeout: undefined
};
const computeFormReadonly = computed(() => {
const { readonly } = props;
if (readonly === null) {
if ($xeForm) {
return $xeForm.props.readonly;
}
return false;
}
return readonly;
});
const computeIsDisabled = computed(() => {
const { disabled } = props;
if (disabled === null) {
if ($xeForm) {
return $xeForm.props.disabled;
}
return false;
}
return disabled;
});
const computeBtnTransfer = computed(() => {
const { transfer } = props;
if (transfer === null) {
const globalTransfer = getConfig().colorPicker.transfer;
if (XEUtils.isBoolean(globalTransfer)) {
return globalTransfer;
}
if ($xeTable || $xeModal || $xeDrawer || $xeForm) {
return true;
}
}
return transfer;
});
const computeColorList = computed(() => {
const { colors } = props;
if (colors) {
return colors.map(item => {
if (XEUtils.isString(item)) {
return {
label: item,
value: item
};
}
return {
label: XEUtils.eqNull(item.label) ? item.value : item.label,
value: item.value
};
});
}
return [];
});
const computeValueType = computed(() => {
const { type } = props;
if (type === 'rgb' || type === 'rgba') {
return 'rgb';
}
return 'hex';
});
const computeIsRgb = computed(() => {
const valueType = computeValueType.value;
return valueType === 'rgb';
});
const refMaps = {
refElem
};
const computeMaps = {};
const $xeColorPicker = {
xID,
props,
context,
reactData,
getRefMaps: () => refMaps,
getComputeMaps: () => computeMaps
};
const emitModel = (value) => {
emit('update:modelValue', value);
};
const updateMode = () => {
const { modelValue } = props;
reactData.selectColor = XEUtils.toValueString(modelValue);
updateModelColor();
};
const updateModelColor = () => {
const { selectColor, isAniVisible } = reactData;
const isRgb = computeIsRgb.value;
const hueSliderEl = refHueSliderElem.value;
const alphaSliderEl = refAlphaSliderElem.value;
const colorRest = parseColor(selectColor);
reactData.hexValue = colorRest.hex;
reactData.rValue = colorRest.r;
reactData.gValue = colorRest.g;
reactData.bValue = colorRest.b;
reactData.aValue = colorRest.a;
if (colorRest.value) {
if (isRgb) {
if (colorRest.type === 'hex') {
const rgbRest = hexToRgb(colorRest.hex);
if (rgbRest) {
reactData.rValue = rgbRest.r;
reactData.gValue = rgbRest.g;
reactData.bValue = rgbRest.b;
reactData.aValue = rgbRest.a;
}
}
}
else {
if (colorRest.type !== 'hex') {
reactData.hexValue = rgbToHex(colorRest);
}
}
}
if (isAniVisible) {
const hsvRest = colorRest.type === 'hex' ? hexToHsv(colorRest.hex) : rgbToHsv(colorRest);
const colorPanelEl = refColorPanelElem.value;
if (hsvRest) {
if (colorPanelEl) {
const offsetTop = colorPanelEl.clientHeight * (1 - hsvRest.v);
const offsetLeft = colorPanelEl.clientWidth * hsvRest.s;
handlePanelColor(offsetLeft, offsetTop);
}
if (hueSliderEl) {
handleHueColor(XEUtils.ceil((1 - hsvRest.h / 360) * hueSliderEl.clientWidth));
}
}
if (alphaSliderEl) {
handleAlphaColor(alphaSliderEl.clientWidth * colorRest.a);
}
}
};
const updateZindex = () => {
if (reactData.panelIndex < getLastZIndex()) {
reactData.panelIndex = nextZIndex();
}
};
const updatePlacement = () => {
return nextTick().then(() => {
const { placement } = props;
const { panelIndex } = reactData;
const el = refElem.value;
const panelElem = refOptionPanel.value;
const btnTransfer = computeBtnTransfer.value;
if (panelElem && el) {
const targetHeight = el.offsetHeight;
const targetWidth = el.offsetWidth;
const panelHeight = panelElem.offsetHeight;
const panelWidth = panelElem.offsetWidth;
const marginSize = 5;
const panelStyle = {
zIndex: panelIndex
};
const { boundingTop, boundingLeft, visibleHeight, visibleWidth } = getAbsolutePos(el);
let panelPlacement = 'bottom';
if (btnTransfer) {
let left = boundingLeft;
let top = boundingTop + targetHeight;
if (placement === 'top') {
panelPlacement = 'top';
top = boundingTop - panelHeight;
}
else if (!placement) {
// 如果下面不够放,则向上
if (top + panelHeight + marginSize > visibleHeight) {
panelPlacement = 'top';
top = boundingTop - panelHeight;
}
// 如果上面不够放,则向下(优先)
if (top < marginSize) {
panelPlacement = 'bottom';
top = boundingTop + targetHeight;
}
}
// 如果溢出右边
if (left + panelWidth + marginSize > visibleWidth) {
left -= left + panelWidth + marginSize - visibleWidth;
}
// 如果溢出左边
if (left < marginSize) {
left = marginSize;
}
Object.assign(panelStyle, {
left: `${left}px`,
top: `${top}px`,
minWidth: `${targetWidth}px`
});
}
else {
if (placement === 'top') {
panelPlacement = 'top';
panelStyle.bottom = `${targetHeight}px`;
}
else if (!placement) {
// 如果下面不够放,则向上
if (boundingTop + targetHeight + panelHeight > visibleHeight) {
// 如果上面不够放,则向下(优先)
if (boundingTop - targetHeight - panelHeight > marginSize) {
panelPlacement = 'top';
panelStyle.bottom = `${targetHeight}px`;
}
}
}
}
reactData.panelStyle = panelStyle;
reactData.panelPlacement = panelPlacement;
return nextTick();
}
});
};
const showOptionPanel = () => {
const { hpTimeout } = internalData;
const isDisabled = computeIsDisabled.value;
if (!isDisabled) {
if (hpTimeout) {
clearTimeout(hpTimeout);
internalData.hpTimeout = undefined;
}
if (!reactData.initialized) {
reactData.initialized = true;
}
reactData.isActivated = true;
reactData.isAniVisible = true;
setTimeout(() => {
updateModelColor();
reactData.visiblePanel = true;
}, 10);
updateZindex();
updatePlacement();
}
};
const hideOptionPanel = () => {
reactData.visiblePanel = false;
internalData.hpTimeout = setTimeout(() => {
reactData.isAniVisible = false;
}, 350);
};
const changeEvent = (evnt, value) => {
reactData.selectColor = value;
if (value !== props.modelValue) {
emitModel(value);
dispatchEvent('change', { value }, evnt);
// 自动更新校验状态
if ($xeForm && formItemInfo) {
$xeForm.triggerItemEvent(evnt, formItemInfo.itemConfig.field, value);
}
}
};
const clearValueEvent = (evnt, selectValue) => {
changeEvent(evnt, selectValue);
dispatchEvent('clear', { value: selectValue }, evnt);
};
const focusEvent = () => {
const isDisabled = computeIsDisabled.value;
if (!isDisabled) {
if (!reactData.visiblePanel) {
showOptionPanel();
}
}
};
const blurEvent = () => {
reactData.isActivated = false;
};
const clearEvent = (evnt) => {
clearValueEvent(evnt, null);
hideOptionPanel();
};
const confirmEvent = (evnt) => {
const { selectColor } = reactData;
changeEvent(evnt, selectColor);
hideOptionPanel();
};
const togglePanelEvent = (evnt) => {
evnt.preventDefault();
if (reactData.visiblePanel) {
hideOptionPanel();
}
else {
showOptionPanel();
}
};
const clickEvent = (evnt) => {
togglePanelEvent(evnt);
dispatchEvent('click', {}, evnt);
};
const handleHueColor = (offsetLeft) => {
const hueSliderEl = refHueSliderElem.value;
const hueSliderBtnEl = refHueSliderBtnElem.value;
if (hueSliderEl && hueSliderBtnEl) {
if (offsetLeft < 0) {
offsetLeft = 0;
}
const barWidth = XEUtils.toInteger(hueSliderEl.clientWidth);
const itemNum = 255;
const countNum = itemNum * 6;
const offsetX = XEUtils.ceil(countNum / barWidth * offsetLeft);
const offsetNum = offsetX % itemNum;
let rNum = 0;
let gNum = 0;
let bNum = 0;
switch (Math.ceil(offsetX / itemNum)) {
case 1:
rNum = itemNum;
bNum = offsetNum;
break;
case 2:
rNum = itemNum - offsetNum;
bNum = itemNum;
break;
case 3:
gNum = offsetNum;
bNum = itemNum;
break;
case 4:
gNum = itemNum;
bNum = itemNum - offsetNum;
break;
case 5:
rNum = offsetNum;
gNum = itemNum;
break;
case 6:
rNum = itemNum;
gNum = itemNum - offsetNum;
break;
}
reactData.panelColor = toRgb(rNum, gNum, bNum);
hueSliderBtnEl.style.left = toCssUnit(offsetLeft);
}
};
const handleHueBarEvent = (evnt) => {
const hueSliderEl = refHueSliderElem.value;
const hueSliderBtnEl = refHueSliderBtnElem.value;
if (hueSliderEl && hueSliderBtnEl) {
const hueSliderRect = hueSliderEl.getBoundingClientRect();
const barWidth = XEUtils.toInteger(hueSliderEl.clientWidth);
const offsetLeft = XEUtils.ceil(Math.min(barWidth - 1, Math.max(1, evnt.clientX - hueSliderRect.x)));
handleHueColor(offsetLeft);
}
};
const handleHueSliderMousedownEvent = (evnt) => {
evnt.preventDefault();
document.onmousemove = evnt => {
evnt.preventDefault();
handleHueBarEvent(evnt);
};
document.onmouseup = (evnt) => {
document.onmousemove = null;
document.onmouseup = null;
handleHueBarEvent(evnt);
};
};
const handleAlphaColor = (offsetLeft) => {
const { selectColor } = reactData;
const alphaSliderEl = refAlphaSliderElem.value;
const alphaSliderBtnEl = refAlphaSliderBtnElem.value;
if (alphaSliderEl && alphaSliderBtnEl) {
const alphaSliderRect = alphaSliderEl.getBoundingClientRect();
const barWidth = alphaSliderRect.width;
if (offsetLeft < 0) {
offsetLeft = 0;
}
if (offsetLeft > barWidth) {
offsetLeft = barWidth;
}
const alpha = XEUtils.ceil(100 / barWidth * offsetLeft / 100, 2);
reactData.aValue = alpha;
alphaSliderBtnEl.style.left = toCssUnit(offsetLeft);
reactData.selectColor = updateColorAlpha(selectColor, alpha);
}
};
const handleAlphaBarEvent = (evnt) => {
const alphaSliderEl = refAlphaSliderElem.value;
const alphaSliderBtnEl = refAlphaSliderBtnElem.value;
if (alphaSliderEl && alphaSliderBtnEl) {
const alphaSliderRect = alphaSliderEl.getBoundingClientRect();
const barWidth = alphaSliderRect.width;
const offsetLeft = Math.min(barWidth, Math.max(0, evnt.clientX - alphaSliderRect.x));
handleAlphaColor(offsetLeft);
updateModelColor();
}
};
const handleAlphaSliderMousedownEvent = (evnt) => {
evnt.preventDefault();
document.onmousemove = evnt => {
evnt.preventDefault();
handleAlphaBarEvent(evnt);
};
document.onmouseup = (evnt) => {
document.onmousemove = null;
document.onmouseup = null;
handleAlphaBarEvent(evnt);
};
};
const handleInputRgbEvent = () => {
const { rValue, gValue, bValue, aValue } = reactData;
reactData.selectColor = toRgb(rValue, gValue, bValue, aValue);
updateModelColor();
};
const handleInputAlphaEvent = () => {
const { aValue } = reactData;
const alphaSliderEl = refAlphaSliderElem.value;
const alphaSliderBtnEl = refAlphaSliderBtnElem.value;
if (alphaSliderEl && alphaSliderBtnEl) {
const alphaSliderRect = alphaSliderEl.getBoundingClientRect();
const barWidth = alphaSliderRect.width;
const offsetLeft = barWidth * aValue;
handleAlphaColor(offsetLeft);
}
};
const handleQuickEvent = (evnt, item) => {
const value = item.value;
reactData.selectColor = value;
updateModelColor();
};
const handlePanelColor = (offsetLeft, offsetTop) => {
const colorActiveEl = refColorActiveElem.value;
if (colorActiveEl) {
colorActiveEl.style.top = toCssUnit(offsetTop);
colorActiveEl.style.left = toCssUnit(offsetLeft);
}
};
const handleEyeDropperEvent = () => {
if (WinEyeDropper) {
try {
const eyeDropper = new WinEyeDropper();
eyeDropper.open().then((rest) => {
if (rest && rest.sRGBHex) {
reactData.selectColor = rest.sRGBHex;
updateModelColor();
}
}).catch(() => {
});
}
catch (e) { }
}
};
const handleSelectColorMousedownEvent = (evnt) => {
const { showAlpha } = props;
const { panelColor, aValue } = reactData;
const colorPanelEl = refColorPanelElem.value;
const colorActiveEl = refColorActiveElem.value;
if (colorPanelEl && colorActiveEl) {
const colorPanelRect = colorPanelEl.getBoundingClientRect();
const offsetTop = evnt.clientY - colorPanelRect.y;
const offsetLeft = evnt.clientX - colorPanelRect.x;
const colorRest = parseColor(panelColor);
if (colorRest) {
const hsvRest = colorRest.type === 'hex' ? hexToHsv(colorRest.hex) : rgbToHsv(colorRest);
if (hsvRest) {
const ragRest = hsvToRgb(hsvRest.h, offsetLeft / colorPanelEl.clientWidth, (1 - offsetTop / colorPanelEl.clientHeight));
reactData.selectColor = toRgb(ragRest.r, ragRest.g, ragRest.b, showAlpha ? aValue : null);
handlePanelColor(offsetLeft, offsetTop);
updateModelColor();
}
}
}
};
const handleCopyColorEvent = () => {
const { selectColor } = reactData;
if (selectColor) {
if (VxeUI.clipboard.copy(selectColor)) {
if (VxeUI.modal) {
VxeUI.modal.message({
content: getI18n('vxe.colorPicker.copySuccess', [selectColor]),
status: 'success'
});
}
}
}
};
const handleGlobalMousewheelEvent = (evnt) => {
const { visiblePanel } = reactData;
const isDisabled = computeIsDisabled.value;
if (!isDisabled) {
if (visiblePanel) {
const panelElem = refOptionPanel.value;
if (getEventTargetNode(evnt, panelElem).flag) {
updatePlacement();
}
else {
hideOptionPanel();
}
}
}
};
const handleGlobalMousedownEvent = (evnt) => {
const { visiblePanel } = reactData;
const isDisabled = computeIsDisabled.value;
if (!isDisabled) {
const el = refElem.value;
const panelElem = refOptionPanel.value;
reactData.isActivated = getEventTargetNode(evnt, el).flag || getEventTargetNode(evnt, panelElem).flag;
if (visiblePanel && !reactData.isActivated) {
hideOptionPanel();
}
}
};
const handleGlobalBlurEvent = () => {
hideOptionPanel();
};
const dispatchEvent = (type, params, evnt) => {
emit(type, createEvent(evnt, { $colorPicker: $xeColorPicker }, params));
};
const colorPickerMethods = {
dispatchEvent
};
const colorPickerPrivateMethods = {};
Object.assign($xeColorPicker, colorPickerMethods, colorPickerPrivateMethods);
const renderColorWrapper = () => {
const { showColorExtractor } = props;
const { panelColor } = reactData;
if (showColorExtractor) {
return h('div', {
ref: refColorPanelElem,
class: 'vxe-color-picker--color-wrapper',
onMousedown: handleSelectColorMousedownEvent
}, [
h('div', {
class: 'vxe-color-picker--color-bg',
style: {
backgroundColor: panelColor
}
}),
h('div', {
class: 'vxe-color-picker--white-bg'
}),
h('div', {
class: 'vxe-color-picker--black-bg'
}),
h('div', {
ref: refColorActiveElem,
class: 'vxe-color-picker--color-active'
})
]);
}
return renderEmptyElement($xeColorPicker);
};
const renderColorBar = () => {
const { showAlpha, clickToCopy, showEyeDropper } = props;
const { hexValue, rValue, gValue, bValue, aValue, selectColor, panelColor } = reactData;
const valueType = computeValueType.value;
const isRgb = computeIsRgb.value;
return h('div', {
class: 'vxe-color-picker--bar-wrapper'
}, [
h('div', {
class: 'vxe-color-picker--slider-wrapper'
}, [
showEyeDropper && WinEyeDropper
? h('div', {
class: 'vxe-color-picker--color-dropper'
}, [
h('span', {
class: 'vxe-color-picker--color-dropper-btn',
onClick: handleEyeDropperEvent
}, [
h('i', {
class: getIcon().EYE_DROPPER
})
])
])
: renderEmptyElement($xeColorPicker),
h('div', {
class: 'vxe-color-picker--slider-preview'
}, [
h('div', {
class: 'vxe-color-picker--preview-btn'
}, [
h('div', {
class: 'vxe-color-picker--preview-color',
style: {
backgroundColor: selectColor
}
}, clickToCopy
? [
h('span', {
class: 'vxe-color-picker--preview-copy-btn',
onClick: handleCopyColorEvent
}, [
h('i', {
class: getIcon().COLOR_COPY
})
])
]
: [])
])
]),
h('div', {
class: 'vxe-color-picker--slider-handle'
}, [
h('div', {
ref: refHueSliderElem,
class: 'vxe-color-picker--bar-hue-slider',
onClick: handleHueBarEvent
}, [
h('div', {
ref: refHueSliderBtnElem,
class: 'vxe-color-picker--bar-hue-btn',
onMousedown: handleHueSliderMousedownEvent
})
]),
showAlpha
? h('div', {
ref: refAlphaSliderElem,
class: 'vxe-color-picker--bar-alpha-slider',
onClick: handleAlphaBarEvent
}, [
h('div', {
class: 'vxe-color-picker--bar-alpha-bg',
style: {
background: `linear-gradient(to right, rgba(0, 0, 0, 0), ${panelColor})`
}
}),
h('div', {
ref: refAlphaSliderBtnElem,
class: 'vxe-color-picker--bar-alpha-btn',
onMousedown: handleAlphaSliderMousedownEvent
})
])
: renderEmptyElement($xeColorPicker)
])
]),
h('div', {
class: `vxe-color-picker--${valueType}-wrapper`
}, isRgb
? [
h('div', {
class: 'vxe-color-picker--input-wrapper'
}, [
h(VxeInputComponent, {
type: 'integer',
size: 'mini',
align: 'center',
min: 0,
max: 255,
maxLength: 3,
placeholder: '',
modelValue: rValue,
'onUpdate:modelValue'(val) {
reactData.rValue = val;
},
onChange: handleInputRgbEvent
}),
h(VxeInputComponent, {
type: 'integer',
size: 'mini',
align: 'center',
min: 0,
max: 255,
maxLength: 3,
placeholder: '',
modelValue: gValue,
'onUpdate:modelValue'(val) {
reactData.gValue = val;
},
onChange: handleInputRgbEvent
}),
h(VxeInputComponent, {
type: 'integer',
size: 'mini',
align: 'center',
min: 0,
max: 255,
maxLength: 3,
placeholder: '',
modelValue: bValue,
'onUpdate:modelValue'(val) {
reactData.bValue = val;
},
onChange: handleInputRgbEvent
}),
h(VxeInputComponent, {
type: 'number',
size: 'mini',
align: 'center',
min: 0,
max: 1,
step: 0.01,
maxLength: 4,
placeholder: '',
modelValue: aValue,
'onUpdate:modelValue'(val) {
reactData.aValue = val;
},
onChange: handleInputAlphaEvent
})
]),
h('div', {
class: 'vxe-color-picker--input-title'
}, [
h('span', 'R'),
h('span', 'G'),
h('span', 'B'),
h('span', 'A')
])
]
: [
h('div', {
class: 'vxe-color-picker--input-title'
}, 'HEX'),
h('div', {
class: 'vxe-color-picker--input-wrapper'
}, [
h(VxeInputComponent, {
type: 'text',
size: 'mini',
align: 'center',
maxLength: 9,
placeholder: '',
modelValue: hexValue,
'onUpdate:modelValue'(val) {
reactData.hexValue = val;
},
onChange() {
const colorRest = parseColor(reactData.hexValue);
if (colorRest) {
if (colorRest.value) {
reactData.selectColor = colorRest.value;
updateModelColor();
}
}
}
})
])
])
]);
};
const renderQuickWrapper = () => {
const { showQuick } = props;
const colorList = computeColorList.value;
if (showQuick && colorList.length) {
return h('div', {
class: 'vxe-color-picker--quick-wrapper'
}, colorList.map((item, i) => {
return h('div', {
key: i,
class: 'vxe-color-picker--quick-item',
title: item.label || '',
style: {
backgroundColor: item.value
},
onClick(evnt) {
handleQuickEvent(evnt, item);
}
});
}));
}
return renderEmptyElement($xeColorPicker);
};
const renderVN = () => {
const { className, popupClassName, clearable, modelValue } = props;
const { initialized, isActivated, isAniVisible, visiblePanel } = reactData;
const vSize = computeSize.value;
const isDisabled = computeIsDisabled.value;
const btnTransfer = computeBtnTransfer.value;
const formReadonly = computeFormReadonly.value;
if (formReadonly) {
return h('div', {
ref: refElem,
class: ['vxe-color-picker--readonly', className]
}, [
h('div', {
class: 'vxe-color-picker--readonly-color',
style: {
backgroundColor: modelValue
}
})
]);
}
return h('div', {
ref: refElem,
class: ['vxe-color-picker', className ? (XEUtils.isFunction(className) ? className({ $colorPicker: $xeColorPicker }) : className) : '', {
[`size--${vSize}`]: vSize,
'is--selected': !!modelValue,
'is--visible': visiblePanel,
'is--disabled': isDisabled,
'is--active': isActivated
}]
}, [
h('input', {
ref: refInput,
class: 'vxe-color-picker--input',
onFocus: focusEvent,
onBlur: blurEvent
}),
h('div', {
class: 'vxe-color-picker--inner',
onClick: clickEvent
}, [
h('div', {
class: 'vxe-color-picker--inner-color',
style: {
backgroundColor: modelValue
}
})
]),
h(Teleport, {
to: 'body',
disabled: btnTransfer ? !initialized : true
}, [
h('div', {
ref: refOptionPanel,
class: ['vxe-table--ignore-clear vxe-color-picker--panel', popupClassName ? (XEUtils.isFunction(popupClassName) ? popupClassName({ $colorPicker: $xeColorPicker }) : popupClassName) : '', {
[`size--${vSize}`]: vSize,
'is--transfer': btnTransfer,
'ani--leave': isAniVisible,
'ani--enter': visiblePanel
}],
placement: reactData.panelPlacement,
style: reactData.panelStyle
}, [
initialized && (visiblePanel || isAniVisible)
? h('div', {
class: 'vxe-color-picker--panel-wrapper'
}, [
renderColorWrapper(),
renderColorBar(),
renderQuickWrapper(),
h('div', {
class: 'vxe-color-picker--footer-wrapper'
}, [
clearable
? h(VxeButtonComponent, {
content: getI18n('vxe.colorPicker.clear'),
size: 'mini',
onClick: clearEvent
})
: renderEmptyElement($xeColorPicker),
h(VxeButtonComponent, {
content: getI18n('vxe.colorPicker.confirm'),
size: 'mini',
status: 'primary',
onClick: confirmEvent
})
])
])
: renderEmptyElement($xeColorPicker)
])
])
]);
};
watch(() => props.modelValue, () => {
updateMode();
});
onMounted(() => {
globalEvents.on($xeColorPicker, 'mousewheel', handleGlobalMousewheelEvent);
globalEvents.on($xeColorPicker, 'mousedown', handleGlobalMousedownEvent);
globalEvents.on($xeColorPicker, 'blur', handleGlobalBlurEvent);
});
onUnmounted(() => {
globalEvents.off($xeColorPicker, 'mousewheel');
globalEvents.off($xeColorPicker, 'mousedown');
globalEvents.off($xeColorPicker, 'blur');
});
updateMode();
provide('$xeColorPicker', $xeColorPicker);
$xeColorPicker.renderVN = renderVN;
return $xeColorPicker;
},
render() {
return this.renderVN();
}
});