You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.4 KiB
Vue

<template>
<view @click="handleClick" :class="rootClass" :style="rootStyle">
<image v-if="isImageUrl" class="wd-icon__image" :src="name"></image>
</view>
</template>
<script lang="ts">
export default {
name: 'wd-icon',
options: {
virtualHost: true,
addGlobalClass: true,
styleIsolation: 'shared'
}
}
</script>
<script lang="ts" setup>
import { computed, ref, watch } from 'vue'
import { objToStyle } from '../common/util'
interface Props {
name: string
color?: string
size?: string
classPrefix?: string
customStyle?: string
customClass?: string
}
const props = withDefaults(defineProps<Props>(), {
customStyle: '',
customClass: '',
classPrefix: 'wd-icon'
})
const isImageUrl = ref<boolean>(false)
watch(
() => props.name,
(val) => {
isImageUrl.value = val.indexOf('/') > -1
},
{ deep: true, immediate: true }
)
const rootClass = computed(() => {
const prefix = props.classPrefix
return `${prefix} ${props.customClass} ${isImageUrl.value ? 'wd-icon--image' : prefix + '-' + props.name}`
})
const rootStyle = computed(() => {
const style: Record<string, any> = {}
if (props.color) {
style['color'] = props.color
}
if (props.size) {
style['font-size'] = props.size
}
return `${objToStyle(style)}; ${props.customStyle}`
})
const emit = defineEmits(['click'])
function handleClick(e) {
emit('click', e)
}
</script>
<style lang="scss" scoped>
@import './index.scss';
</style>