acdr-ui/dist/dev/mp-weixin/node-modules/wot-design-uni/components/wd-loading/wd-loading.js.map

1 line
5.7 KiB
Plaintext
Raw Normal View History

2024-09-19 07:20:14 +08:00
{"version":3,"file":"wd-loading.js","sources":["../../../../../../../node_modules/wot-design-uni/components/wd-loading/wd-loading.vue","../../../../../../../uniComponent:/RDovQXBwL1dvcmsvYWRkci9hY2RyLXVpL25vZGVfbW9kdWxlcy93b3QtZGVzaWduLXVuaS9jb21wb25lbnRzL3dkLWxvYWRpbmcvd2QtbG9hZGluZy52dWU"],"sourcesContent":["<template>\n <view :class=\"rootClass\" :style=\"rootStyle\">\n <view class=\"wd-loading__body\">\n <view class=\"wd-loading__svg\" :style=\"`background-image: url(${svg});`\"></view>\n </view>\n </view>\n</template>\n<script lang=\"ts\">\nexport default {\n name: 'wd-loading',\n options: {\n virtualHost: true,\n addGlobalClass: true,\n styleIsolation: 'shared'\n }\n}\n</script>\n\n<script lang=\"ts\" setup>\nimport { computed, onBeforeMount, ref, watch } from 'vue'\nimport base64 from '../common/base64'\nimport { gradient, context, objToStyle, addUnit, isDef } from '../common/util'\nimport { loadingProps } from './types'\n\nconst svgDefineId = context.id++\nconst svgDefineId1 = context.id++\nconst svgDefineId2 = context.id++\n\nconst icon = {\n outline(color = '#4D80F0') {\n return `<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 42 42\"><defs><linearGradient x1=\"100%\" y1=\"0%\" x2=\"0%\" y2=\"0%\" id=\"${svgDefineId}\"><stop stop-color=\"#FFF\" offset=\"0%\" stop-opacity=\"0\"/><stop stop-color=\"#FFF\" offset=\"100%\"/></linearGradient></defs><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M21 1c11.046 0 20 8.954 20 20s-8.954 20-20 20S1 32.046 1 21 9.954 1 21 1zm0 7C13.82 8 8 13.82 8 21s5.82 13 13 13 13-5.82 13-13S28.18 8 21 8z\" fill=\"${color}\"/><path d=\"M4.599 21c0 9.044 7.332 16.376 16.376 16.376 9.045 0 16.376-7.332 16.376-16.376\" stroke=\"url(#${svgDefineId}) \" stroke-width=\"3.5\" stroke-linecap=\"round\"/></g></svg>`\n },\n ring(color = '#4D80F0', intermediateColor = '#a6bff7') {\n return `<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 200 200\"><linearGradient id=\"${svgDefineId1}\" gradientUnits=\"userSpaceOnUse\" x1=\"50\" x2=\"50\" y2=\"180\"><stop offset=\"0\" stop-color=\"${color}\"></stop> <stop offset=\"1\" stop-color=\"${intermediateColor}\"></stop></linearGradient> <path fill=\"url(#${svgDefineId1})\" d=\"M20 100c0-44.1 35.9-80 80-80V0C44.8 0 0 44.8 0 100s44.8 100 100 100v-20c-44.1 0-80-35.9-80-80z\"></path> <linearGradient id=\"${svgDefineId2}\" gradientUnits=\"userSpaceOnUse\" x1=\"150\" y1=\"20\" x2=\"150\" y2=\"180\"><stop offset=\"0\" stop-color=\"#fff\" stop-opacity=\"0\"></stop> <stop offset=\"1\" stop-color=\"${intermediateColor}\"></stop></linearGradient> <path fill=\"url(#${svgDefineId2})\" d=\"M100 0v20c44.1 0 80 35.9 80 80s-35.9 80-80 80v20c55.2 0 100-44.8 100-100S155.2 0 100 0z\"></path> <circle cx=\"100\" cy=\"10\" r=\"10\" fill=\"${color}\"></circle></svg>`\n }\n}\n\nconst props = defineProps(loadingProps)\n\nconst svg = ref<string>('')\nconst intermediateColor = ref<string>('')\nconst iconSize = ref<string | number>('32px')\n\nwatch(\n () => props.size,\n (newVal) => {\n iconSize.value = addUnit(newVal)\n },\n {\n deep: true,\n immediate: true\n }\n)\n\nwatch(\n () => props.type,\n () => {\n buildSvg()\n },\n {\n deep: true,\n immediate: true\n }\n)\n\nconst rootStyle = computed(() => {\n const style: Record<string, string | number> = {\n width: iconSize.value,\n height: iconSize.value\n }\n return `${objToStyle(style)}; ${props.customStyle}`\n})\n\nconst rootClass = computed(() => {\n return `wd-loading ${props.customClass}`\n})\n\nonBeforeMount(() => {\n intermediateColor.value = gradient(props.color, '#ffffff', 2)[1]\n buildSvg()\n})\n\nfunction buildSvg() {\n const { type, color } = props\n let ringType: 'outline' | 'ring' = isDef(type) ? type : 'ring'\n const svgStr = `\"data:image/svg+xml;base64,${base64(ringType === 'ring' ? icon[ringType](color, intermediateColor.value) : icon[ringType](color))}\"`\n svg.value = svgStr\n}\n</script>\n\n<style lang=\"scss\" scoped>\n@import './index.scss';\n</style>\n","import Component from 'D:/App/Work/addr/acdr-ui/node_modules/wot-d