zhaojs
2023-05-16 9707c4410a67d6a6d63b634f53565711d2d337da
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<template>
    <view :style="[customStyle]" class="u-icon" @tap="click" :class="['u-icon--' + labelPos]">
        <image class="u-icon__img" v-if="isImg" :src="name" :mode="imgMode" :style="[imgStyle]"></image>
        <text v-else class="u-icon__icon" :class="customClass" :style="[iconStyle]" :hover-class="hoverClass" @touchstart="touchstart"></text>
        <text v-if="label" class="u-icon__label" :style="{
            color: labelColor,
            fontSize: $u.addUnit(labelSize),
            marginLeft: labelPos == 'right' ? $u.addUnit(marginLeft) : 0,
            marginTop: labelPos == 'bottom' ? $u.addUnit(marginTop) : 0,
            marginRight: labelPos == 'left' ? $u.addUnit(marginRight) : 0,
            marginBottom: labelPos == 'top' ? $u.addUnit(marginBottom) : 0,
        }">{{label}}</text>
    </view>
</template>
 
<script>
/**
 * icon 图标
 * @description 基于字体的图标集,包含了大多数常见场景的图标。
 * @tutorial https://www.uviewui.com/components/icon.html
 * @property {String} name 图标名称,见示例图标集
 * @property {String} color 图标颜色(默认inherit)
 * @property {String | Number} size 图标字体大小,单位rpx(默认32)
 * @property {String | Number} label-size label字体大小,单位rpx(默认28)
 * @property {String} label 图标右侧的label文字(默认28)
 * @property {String} label-pos label文字相对于图标的位置,只能right或bottom(默认right)
 * @property {String} label-color label字体颜色(默认#606266)
 * @property {Object} custom-style icon的样式,对象形式
 * @property {String} custom-prefix 自定义字体图标库时,需要写上此值
 * @property {String | Number} margin-left label在右侧时与图标的距离,单位rpx(默认6)
 * @property {String | Number} margin-top label在下方时与图标的距离,单位rpx(默认6)
 * @property {String | Number} margin-bottom label在上方时与图标的距离,单位rpx(默认6)
 * @property {String | Number} margin-right label在左侧时与图标的距离,单位rpx(默认6)
 * @property {String} label-pos label相对于图标的位置,只能right或bottom(默认right)
 * @property {String} index 一个用于区分多个图标的值,点击图标时通过click事件传出
 * @property {String} hover-class 图标按下去的样式类,用法同uni的view组件的hover-class参数,详情见官网
 * @event {Function} click 点击图标时触发
 * @example <u-icon name="photo" color="#2979ff" size="28"></u-icon>
 */
export default {
    name: 'u-icon',
    props: {
        // 图标类名
        name: {
            type: String,
            default: ''
        },
        // 图标颜色,可接受主题色
        color: {
            type: String,
            default: ''
        },
        // 字体大小,单位rpx
        size: {
            type: [Number, String],
            default: 'inherit'
        },
        // 是否显示粗体
        bold: {
            type: Boolean,
            default: false
        },
        // 点击图标的时候传递事件出去的index(用于区分点击了哪一个)
        index: {
            type: [Number, String],
            default: ''
        },
        // 触摸图标时的类名
        hoverClass: {
            type: String,
            default: ''
        },
        // 自定义扩展前缀,方便用户扩展自己的图标库
        customPrefix: {
            type: String,
            default: 'uicon'
        },
        // 图标右边或者下面的文字
        label: {
            type: String,
            default: ''
        },
        // label的位置,只能右边或者下边
        labelPos: {
            type: String,
            default: 'right'
        },
        // label的大小
        labelSize: {
            type: [String, Number],
            default: '28'
        },
        // label的颜色
        labelColor: {
            type: String,
            default: '#606266'
        },
        // label与图标的距离(横向排列)
        marginLeft: {
            type: [String, Number],
            default: '6'
        },
        // label与图标的距离(竖向排列)
        marginTop: {
            type: [String, Number],
            default: '6'
        },
        // label与图标的距离(竖向排列)
        marginRight: {
            type: [String, Number],
            default: '6'
        },
        // label与图标的距离(竖向排列)
        marginBottom: {
            type: [String, Number],
            default: '6'
        },
        // 图片的mode
        imgMode: {
            type: String,
            default: 'widthFix'
        },
        // 自定义样式
        customStyle: {
            type: Object,
            default() {
                return {}
            }
        },
    },
    computed: {
        customClass() {
            let classes = [];
            classes.push(this.customPrefix + '-' + this.name);
            // uView的自定义图标类名为u-iconfont
            if (this.customPrefix == 'uicon') classes.push('u-iconfont');
            else classes.push(this.customPrefix);
            // 主题色,通过类配置
            if (this.color && this.$u.config.type.includes(this.color)) classes.push('u-icon__icon--' + this.color);
            // 阿里,头条,百度小程序通过数组绑定类名时,无法直接使用[a, b, c]的形式,否则无法识别
            // 故需将其拆成一个字符串的形式,通过空格隔开各个类名
            //#ifdef MP-ALIPAY || MP-TOUTIAO || MP-BAIDU
            classes = classes.join(' ');
            //#endif
            return classes;
        },
        iconStyle() {
            let style = {};
            style = {
                fontSize: this.size == 'inherit' ? 'inherit' : this.$u.addUnit(this.size),
                fontWeight: this.bold ? 'bold' : 'normal'
            };
            // 非主题色值时,才当作颜色值
            if (this.color && !this.$u.config.type.includes(this.color)) style.color = this.color;
            return style;
        },
        // 判断传入的name属性,是否图片路径,只要带有"/"均认为是图片形式
        isImg() {
            return this.name.indexOf('/') !== -1;
        },
        imgStyle() {
            let style = {};
            style.width = this.$u.addUnit(this.size);
            style.height = this.$u.addUnit(this.size);
            return style;
        }
    },
    methods: {
        click() {
            this.$emit('click', this.index);
        },
        touchstart() {
            this.$emit('touchstart', this.index);
        }
    }
};
</script>
 
<style scoped lang="scss">
@import "../../libs/css/style.components.scss";
@import '../../iconfont.css';
 
.u-icon {
    display: inline-flex;
    align-items: center;
 
    &--left {
        flex-direction: row-reverse;
        align-items: center;
    }
 
    &--right {
        flex-direction: row;
        align-items: center;
    }
 
    &--top {
        flex-direction: column-reverse;
        justify-content: center;
    }
 
    &--bottom {
        flex-direction: column;
        justify-content: center;
    }
 
    &__icon {
        &--primary {
            color: $u-type-primary;
        }
 
        &--success {
            color: $u-type-success;
        }
 
        &--error {
            color: $u-type-error;
        }
 
        &--warning {
            color: $u-type-warning;
        }
 
        &--info {
            color: $u-type-info;
        }
    }
 
    &__img {
        height: auto;
        will-change: transform;
    }
 
    &__label {
        line-height: 1;
    }
}
</style>