Image.js 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. import { createVNode as _createVNode } from "vue";
  2. import { computed, defineComponent } from 'vue';
  3. import classNames from '../_util/classNames';
  4. import useConfigInject from '../config-provider/hooks/useConfigInject';
  5. import omit from '../_util/omit';
  6. import { skeletonElementProps } from './Element';
  7. import useStyle from './style';
  8. const path = 'M365.714286 329.142857q0 45.714286-32.036571 77.677714t-77.677714 32.036571-77.677714-32.036571-32.036571-77.677714 32.036571-77.677714 77.677714-32.036571 77.677714 32.036571 32.036571 77.677714zM950.857143 548.571429l0 256-804.571429 0 0-109.714286 182.857143-182.857143 91.428571 91.428571 292.571429-292.571429zM1005.714286 146.285714l-914.285714 0q-7.460571 0-12.873143 5.412571t-5.412571 12.873143l0 694.857143q0 7.460571 5.412571 12.873143t12.873143 5.412571l914.285714 0q7.460571 0 12.873143-5.412571t5.412571-12.873143l0-694.857143q0-7.460571-5.412571-12.873143t-12.873143-5.412571zM1097.142857 164.571429l0 694.857143q0 37.741714-26.843429 64.585143t-64.585143 26.843429l-914.285714 0q-37.741714 0-64.585143-26.843429t-26.843429-64.585143l0-694.857143q0-37.741714 26.843429-64.585143t64.585143-26.843429l914.285714 0q37.741714 0 64.585143 26.843429t26.843429 64.585143z';
  9. const SkeletonImage = defineComponent({
  10. compatConfig: {
  11. MODE: 3
  12. },
  13. name: 'ASkeletonImage',
  14. props: omit(skeletonElementProps(), ['size', 'shape', 'active']),
  15. setup(props) {
  16. const {
  17. prefixCls
  18. } = useConfigInject('skeleton', props);
  19. const [wrapSSR, hashId] = useStyle(prefixCls);
  20. const cls = computed(() => classNames(prefixCls.value, `${prefixCls.value}-element`, hashId.value));
  21. return () => {
  22. return wrapSSR(_createVNode("div", {
  23. "class": cls.value
  24. }, [_createVNode("div", {
  25. "class": `${prefixCls.value}-image`
  26. }, [_createVNode("svg", {
  27. "viewBox": "0 0 1098 1024",
  28. "xmlns": "http://www.w3.org/2000/svg",
  29. "class": `${prefixCls.value}-image-svg`
  30. }, [_createVNode("path", {
  31. "d": path,
  32. "class": `${prefixCls.value}-image-path`
  33. }, null)])])]));
  34. };
  35. }
  36. });
  37. export default SkeletonImage;