1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
| import type { iconType } from "./types";
| import { h, defineComponent, type Component } from "vue";
| import { FontIcon, IconifyIconOnline, IconifyIconOffline } from "../index";
|
| /**
| * 支持 `iconfont`、自定义 `svg` 以及 `iconify` 中所有的图标
| * @see 点击查看文档图标篇 {@link https://pure-admin.cn/pages/icon/}
| * @param icon 必传 图标
| * @param attrs 可选 iconType 属性
| * @returns Component
| */
| export function useRenderIcon(icon: any, attrs?: iconType): Component {
| // iconfont
| const ifReg = /^IF-/;
| // typeof icon === "function" 属于SVG
| if (ifReg.test(icon)) {
| // iconfont
| const name = icon.split(ifReg)[1];
| const iconName = name.slice(
| 0,
| name.indexOf(" ") == -1 ? name.length : name.indexOf(" ")
| );
| const iconType = name.slice(name.indexOf(" ") + 1, name.length);
| return defineComponent({
| name: "FontIcon",
| render() {
| return h(FontIcon, {
| icon: iconName,
| iconType,
| ...attrs
| });
| }
| });
| } else if (typeof icon === "function" || typeof icon?.render === "function") {
| // svg
| return attrs ? h(icon, { ...attrs }) : icon;
| } else if (typeof icon === "object") {
| return defineComponent({
| name: "OfflineIcon",
| render() {
| return h(IconifyIconOffline, {
| icon: icon,
| ...attrs
| });
| }
| });
| } else {
| // 通过是否存在 : 符号来判断是在线还是本地图标,存在即是在线图标,反之
| return defineComponent({
| name: "Icon",
| render() {
| if (!icon) return;
| const IconifyIcon = icon.includes(":")
| ? IconifyIconOnline
| : IconifyIconOffline;
| return h(IconifyIcon, {
| icon,
| ...attrs
| });
| }
| });
| }
| }
|
|