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
|
shape: {
validator (value) {
return oneOf(value, ['circle', 'square']);
},
default: 'circle'
},
size: {
validator (value) {
return oneOf(value, ['small', 'large', 'default']);
},
|
55238beb
梁灏
Avatar support gl...
|
28
29
30
|
default () {
return this.$IVIEW.size === '' ? 'default' : this.$IVIEW.size;
}
|
a1530fac
梁灏
update Avatar
|
31
32
33
34
35
36
37
|
},
src: {
type: String
},
icon: {
type: String
}
|
2c5faf30
梁灏
init Avatar compo...
|
38
|
},
|
ad225578
梁灏
add Avatar component
|
39
40
41
42
|
data () {
return {
prefixCls: prefixCls,
scale: 1,
|
a4a202e3
daiyanze
update avatar slo...
|
43
|
childrenWidth: 0,
|
ad225578
梁灏
add Avatar component
|
44
45
46
|
isSlotShow: false
};
},
|
2c5faf30
梁灏
init Avatar compo...
|
47
|
computed: {
|
a1530fac
梁灏
update Avatar
|
48
49
50
51
52
53
54
55
56
57
|
classes () {
return [
`${prefixCls}`,
`${prefixCls}-${this.shape}`,
`${prefixCls}-${this.size}`,
{
[`${prefixCls}-image`]: !!this.src,
[`${prefixCls}-icon`]: !!this.icon
}
];
|
ad225578
梁灏
add Avatar component
|
58
59
60
61
62
63
64
65
66
67
|
},
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...
|
68
|
left: `calc(50% - ${Math.round(this.childrenWidth / 2)}px)`
|
ad225578
梁灏
add Avatar component
|
69
70
71
|
};
}
return style;
|
a1530fac
梁灏
update Avatar
|
72
|
}
|
2c5faf30
梁灏
init Avatar compo...
|
73
|
},
|
ad225578
梁灏
add Avatar component
|
74
75
76
|
methods: {
setScale () {
this.isSlotShow = !this.src && !this.icon;
|
81b328c6
Hsiaoming Yang
Patch fix on Avat...
|
77
|
if (this.$refs.children) {
|
a4a202e3
daiyanze
update avatar slo...
|
78
79
|
// set children width again to make slot centered
this.childrenWidth = this.$refs.children.offsetWidth;
|
ad225578
梁灏
add Avatar component
|
80
81
|
const avatarWidth = this.$el.getBoundingClientRect().width;
// add 4px gap for each side to get better performance
|
a4a202e3
daiyanze
update avatar slo...
|
82
83
|
if (avatarWidth - 8 < this.childrenWidth) {
this.scale = (avatarWidth - 8) / this.childrenWidth;
|
ad225578
梁灏
add Avatar component
|
84
85
|
} else {
this.scale = 1;
|
ececc3bb
梁灏
update Avatar
|
86
|
}
|
ad225578
梁灏
add Avatar component
|
87
|
}
|
ececc3bb
梁灏
update Avatar
|
88
|
}
|
ad225578
梁灏
add Avatar component
|
89
90
91
92
93
94
|
},
mounted () {
this.setScale();
},
updated () {
this.setScale();
|
2c5faf30
梁灏
init Avatar compo...
|
95
96
|
}
};
|
81b328c6
Hsiaoming Yang
Patch fix on Avat...
|
97
|
</script>
|