wip-Iconify Component#1

This commit is contained in:
h_mo 2022-11-21 22:54:35 +08:00
parent 07b8fbbe6a
commit e239418afa
3 changed files with 59 additions and 8 deletions

View File

@ -1,18 +1,55 @@
<script lang="ts" setup name="Iconify"> <script lang="ts" setup name="Iconify">
// import '@purge-icons/generated';
// const props = defineProps({
// icon: {
// type: String,
// },
// });
import Iconify from '@purge-icons/generated';
import { nextTick, ref, unref, watchEffect } from 'vue';
const props = defineProps({ const props = defineProps({
icon: { name: {
type: String, type: String,
default: () => '',
},
prefix: {
type: String,
default: () => 'ant-design',
}, },
}); });
const elRef = ref<Element>();
const update = async () => {
const el = unref(elRef);
if (!el) return;
await nextTick();
const icon = props.prefix + ':' + props.name;
if (!icon) return;
const svg = Iconify.renderSVG(icon, {
width: '1.2em',
height: '1.2em',
});
if (svg) {
el.textContent = '';
el.appendChild(svg);
} else {
const span = document.createElement('span');
span.className = 'iconify';
span.dataset.icon = icon;
el.textContent = '';
el.appendChild(span);
}
};
watchEffect(() => update());
</script> </script>
<template> <template>
<view <view ref="elRef" class="iconify m-iconify" class="anticon"></view>
class="iconify m-iconify"
style="height: 44rpx; width: 44rpx"
:data-icon="icon"
></view>
</template> </template>
<style lang="scss" scoped> <style lang="scss" scoped>
.iconify {
display: inline-block;
height: 44rpx;
width: 44rpx;
}
.m-iconify { .m-iconify {
vertical-align: middle; vertical-align: middle;
} }

View File

@ -3,7 +3,7 @@
* */ * */
import presetWeapp from 'unocss-preset-weapp'; import presetWeapp from 'unocss-preset-weapp';
import { defineConfig } from 'unocss'; import { defineConfig, presetIcons } from 'unocss';
import { import {
defaultAttributes, defaultAttributes,
defaultIgnoreNonValuedAttributes, defaultIgnoreNonValuedAttributes,
@ -33,6 +33,10 @@ export default defineConfig({
nonValuedAttribute: true, nonValuedAttribute: true,
prefix: 'uno-', prefix: 'uno-',
}), }),
presetIcons({
scale: 1.2,
warn: true,
}),
], ],
shortcuts: [ shortcuts: [
{ {

View File

@ -40,7 +40,17 @@ export default ({ mode }: ConfigEnv): UserConfig => {
plugins: [ plugins: [
uni(), uni(),
Unocss(), Unocss(),
PurgeIcons(), PurgeIcons({
content: [
'**/*.html',
'**/*.js',
'**/*.ts',
'**/*.vue',
'**/*.jsx',
'**/*.tsx',
'**/*.json',
],
}),
// eslintPlugin({ // eslintPlugin({
// include: ['src/**/*.js', 'src/**/*.vue', 'src/**/*.ts'], // include: ['src/**/*.js', 'src/**/*.vue', 'src/**/*.ts'],
// exclude: ['./node_modules/**'], // exclude: ['./node_modules/**'],