ad225578
梁灏
add Avatar component
|
1
2
3
4
5
6
7
|
<template>
<span :class="classes">
<img :src="src" v-if="src">
<Icon :type="icon" v-else-if="icon"></Icon>
<span ref="children" :class="[prefixCls + '-string']" :style="childrenStyle" v-else><slot></slot></span>
</span>
</template>
|
2c5faf30
梁灏
init Avatar compo...
|
8
|
<script>
|
a1530fac
梁灏
update Avatar
|
9
10
11
|
import Icon from '../icon';
import { oneOf } from '../../utils/assist';
|
2c5faf30
梁灏
init Avatar compo...
|
12
13
14
15
|
const prefixCls = 'ivu-avatar';
export default {
name: 'Avatar',
|
ad225578
梁灏
add Avatar component
|
16
|
components: { Icon },
|
2c5faf30
梁灏
init Avatar compo...
|
17
|
props: {
|
a1530fac
梁灏
update Avatar
|
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
shape: {
validator (value) {
return oneOf(value, ['circle', 'square']);
},
default: 'circle'
},
size: {
validator (value) {
return oneOf(value, ['small', 'large', 'default']);
},
default: 'default'
},
src: {
type: String
},
icon: {
type: String
}
|
2c5faf30
梁灏
init Avatar compo...
|
36
|
},
|
ad225578
梁灏
add Avatar component
|
37
38
39
40
|
data () {
return {
prefixCls: prefixCls,
scale: 1,
|
a4a202e3
daiyanze
update avatar slo...
|
41
|
childrenWidth: 0,
|
ad225578
梁灏
add Avatar component
|
42
43
44
|
isSlotShow: false
};
},
|
2c5faf30
梁灏
init Avatar compo...
|
45
|
computed: {
|
a1530fac
梁灏
update Avatar
|
46
47
48
49
50
51
52
53
54
55
|
classes () {
return [
`${prefixCls}`,
`${prefixCls}-${this.shape}`,
`${prefixCls}-${this.size}`,
{
[`${prefixCls}-image`]: !!this.src,
[`${prefixCls}-icon`]: !!this.icon
}
];
|
ad225578
梁灏
add Avatar component
|
56
57
58
59
60
61
62
63
64
65
|
},
childrenStyle () {
let style = {};
if (this.isSlotShow) {
style = {
msTransform: `scale(${this.scale})`,
WebkitTransform: `scale(${this.scale})`,
transform: `scale(${this.scale})`,
position: 'absolute',
display: 'inline-block',
|
a4a202e3
daiyanze
update avatar slo...
|
66
|
left: `calc(50% - ${Math.round(this.childrenWidth / 2)}px)`
|
ad225578
梁灏
add Avatar component
|
67
68
69
|
};
}
return style;
|
a1530fac
梁灏
update Avatar
|
70
|
}
|
2c5faf30
梁灏
init Avatar compo...
|
71
|
},
|
ad225578
梁灏
add Avatar component
|
72
73
74
|
methods: {
setScale () {
this.isSlotShow = !this.src && !this.icon;
|
81b328c6
Hsiaoming Yang
Patch fix on Avat...
|
75
|
if (this.$refs.children) {
|
a4a202e3
daiyanze
update avatar slo...
|
76
77
|
// set children width again to make slot centered
this.childrenWidth = this.$refs.children.offsetWidth;
|
ad225578
梁灏
add Avatar component
|
78
79
|
const avatarWidth = this.$el.getBoundingClientRect().width;
// add 4px gap for each side to get better performance
|
a4a202e3
daiyanze
update avatar slo...
|
80
81
|
if (avatarWidth - 8 < this.childrenWidth) {
this.scale = (avatarWidth - 8) / this.childrenWidth;
|
ad225578
梁灏
add Avatar component
|
82
83
|
} else {
this.scale = 1;
|
ececc3bb
梁灏
update Avatar
|
84
|
}
|
ad225578
梁灏
add Avatar component
|
85
|
}
|
ececc3bb
梁灏
update Avatar
|
86
|
}
|
ad225578
梁灏
add Avatar component
|
87
88
89
90
91
92
|
},
mounted () {
this.setScale();
},
updated () {
this.setScale();
|
2c5faf30
梁灏
init Avatar compo...
|
93
94
|
}
};
|
81b328c6
Hsiaoming Yang
Patch fix on Avat...
|
95
|
</script>
|