xdesign-vue-next
Version:
XDesign Component for vue-next
173 lines (169 loc) • 6.83 kB
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
import { _ as _defineProperty } from '../../_chunks/dep-f9e836af.mjs';
import { defineComponent, ref, reactive, computed, nextTick, onMounted, onBeforeUnmount, createVNode } from 'vue';
import '../const.mjs';
import '../utils/index.mjs';
import { useBaseClassName } from '../hooks.mjs';
import baseProps from './base-props.mjs';
import { SATURATION_PANEL_DEFAULT_WIDTH, SATURATION_PANEL_DEFAULT_HEIGHT } from '../../_common/js/color-picker/constants.mjs';
import { Draggable } from '../../_common/js/color-picker/draggable.mjs';
import '../../_chunks/dep-82805301.mjs';
import '../../_common/js/color-picker/index.mjs';
import '../../_common/js/color-picker/cmyk.mjs';
import '../../_common/js/color-picker/color.mjs';
import '../../_chunks/dep-32d4c595.mjs';
import '../../_chunks/dep-89b966f4.mjs';
import '../../_chunks/dep-72a1dd28.mjs';
import '../../_chunks/dep-08c2b0a8.mjs';
import '../../_chunks/dep-11fa9c2c.mjs';
import '../../_chunks/dep-10a947a6.mjs';
import '../../_chunks/dep-b75d8d74.mjs';
import '../../_chunks/dep-a95026f2.mjs';
import '../../_chunks/dep-068e912d.mjs';
import '../../_chunks/dep-addc2a84.mjs';
import '../../_chunks/dep-5a2ce53e.mjs';
import '../../hooks/useConfig.mjs';
import '../../config-provider/useConfig.mjs';
import '../../_chunks/dep-1cc1c24f.mjs';
import '../../_chunks/dep-6ad18815.mjs';
import '../../_chunks/dep-91ac8f71.mjs';
import '../../_chunks/dep-c4737535.mjs';
import '../../_chunks/dep-81c83986.mjs';
import '../../_chunks/dep-6aa0223b.mjs';
import '../../_chunks/dep-db381ece.mjs';
import '../../_chunks/dep-5755c21c.mjs';
import '../../_chunks/dep-7f239c43.mjs';
import '../../_chunks/dep-6f04869e.mjs';
import '../../_chunks/dep-d32fbbb3.mjs';
import '../../_chunks/dep-dafada74.mjs';
import '../../_chunks/dep-6e7b37b8.mjs';
import '../../_chunks/dep-e1ab85c5.mjs';
import '../../_chunks/dep-5f0e0453.mjs';
import '../../_chunks/dep-71f84cf2.mjs';
import '../../_chunks/dep-0e832fc7.mjs';
import '../../_chunks/dep-69963a8c.mjs';
import '../../_chunks/dep-8d1c9a23.mjs';
import '../../_chunks/dep-03412fab.mjs';
import '../../_chunks/dep-205ff58d.mjs';
import '../../_chunks/dep-b09f48fa.mjs';
import '../../_chunks/dep-26bf361a.mjs';
import '../../_chunks/dep-3ec3335a.mjs';
import '../../_chunks/dep-ed4e7c50.mjs';
import '../../_chunks/dep-a666b9ad.mjs';
import '../../_common/js/global-config/default-config.mjs';
import '../../_common/js/global-config/locale/en_US.mjs';
import '../../config-provider/type.mjs';
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
var SaturationPanel = defineComponent({
name: "SaturationPanel",
props: _objectSpread({}, baseProps),
setup: function setup(props) {
var baseClassName = useBaseClassName();
var refPanel = ref(null);
var refThumb = ref(null);
var dragInstance = ref(null);
var panelRect = reactive({
width: SATURATION_PANEL_DEFAULT_WIDTH,
height: SATURATION_PANEL_DEFAULT_HEIGHT
});
var styles = computed(function () {
var _props$color = props.color,
saturation = _props$color.saturation,
value = _props$color.value;
var width = panelRect.width,
height = panelRect.height;
var top = Math.round((1 - value) * height);
var left = Math.round(saturation * width);
return {
color: props.color.rgb,
left: "".concat(left, "px"),
top: "".concat(top, "px")
};
});
var getSaturationAndValueByCoordinate = function getSaturationAndValueByCoordinate(coordinate) {
var width = panelRect.width,
height = panelRect.height;
var x = coordinate.x,
y = coordinate.y;
var saturation = Math.round(x / width * 100);
var value = Math.round((1 - y / height) * 100);
return {
saturation: saturation,
value: value
};
};
var handleDrag = function handleDrag(coordinate, isEnded) {
if (props.disabled) {
return;
}
var _getSaturationAndValu = getSaturationAndValueByCoordinate(coordinate),
saturation = _getSaturationAndValu.saturation,
value = _getSaturationAndValu.value;
props.onChange({
saturation: saturation / 100,
value: value / 100,
addUsedColor: isEnded
});
};
var handleDragEnd = function handleDragEnd(coordinate) {
if (props.disabled) {
return;
}
nextTick(function () {
handleDrag(coordinate, true);
});
};
var panelBackground = computed(function () {
return "hsl(".concat(props.color.hue, ", 100%, 50%)");
});
onMounted(function () {
panelRect.width = refPanel.value.offsetWidth || SATURATION_PANEL_DEFAULT_WIDTH;
panelRect.height = refPanel.value.offsetHeight || SATURATION_PANEL_DEFAULT_HEIGHT;
dragInstance.value = new Draggable(refPanel.value, {
start: function start() {
panelRect.width = refPanel.value.offsetWidth;
panelRect.height = refPanel.value.offsetHeight;
},
drag: function drag(coordinate) {
handleDrag(coordinate);
},
end: handleDragEnd
});
});
onBeforeUnmount(function () {
dragInstance.value.destroy();
});
return {
baseClassName: baseClassName,
refThumb: refThumb,
refPanel: refPanel,
styles: styles,
panelBackground: panelBackground
};
},
render: function render() {
var baseClassName = this.baseClassName,
styles = this.styles,
panelBackground = this.panelBackground;
return createVNode("div", {
"class": ["".concat(baseClassName, "__saturation")],
"ref": "refPanel",
"style": {
background: panelBackground
}
}, [createVNode("span", {
"class": ["".concat(baseClassName, "__thumb")],
"role": "slider",
"tabindex": 0,
"ref": "refThumb",
"style": styles
}, null)]);
}
});
export { SaturationPanel as default };
//# sourceMappingURL=saturation.mjs.map