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
| <template>
| <transition name="fade">
| <div :class="classes" v-if="fullscreenVisible">
| <div :class="mainClasses">
| <span :class="dotClasses"></span>
| <div :class="textClasses"><slot></slot></div>
| </div>
| </div>
| </transition>
| </template>
| <script>
| import { oneOf } from '../../utils/assist';
| import ScrollbarMixins from '../modal/mixins-scrollbar';
|
| const prefixCls = 'ivu-spin';
|
| export default {
| name: 'Spin',
| mixins: [ ScrollbarMixins ],
| props: {
| size: {
| validator (value) {
| return oneOf(value, ['small', 'large', 'default']);
| },
| default () {
| return !this.$IVIEW || this.$IVIEW.size === '' ? 'default' : this.$IVIEW.size;
| }
| },
| fix: {
| type: Boolean,
| default: false
| },
| fullscreen: {
| type: Boolean,
| default: false
| }
| },
| data () {
| return {
| showText: false,
| // used for $Spin
| visible: false
| };
| },
| computed: {
| classes () {
| return [
| `${prefixCls}`,
| {
| [`${prefixCls}-${this.size}`]: !!this.size,
| [`${prefixCls}-fix`]: this.fix,
| [`${prefixCls}-show-text`]: this.showText,
| [`${prefixCls}-fullscreen`]: this.fullscreen
| }
| ];
| },
| mainClasses () {
| return `${prefixCls}-main`;
| },
| dotClasses () {
| return `${prefixCls}-dot`;
| },
| textClasses () {
| return `${prefixCls}-text`;
| },
| fullscreenVisible () {
| if (this.fullscreen) {
| return this.visible;
| } else {
| return true;
| }
| }
| },
| watch: {
| visible (val) {
| if (val) {
| this.addScrollEffect();
| } else {
| this.removeScrollEffect();
| }
| }
| },
| mounted () {
| this.showText = this.$slots.default !== undefined;
| }
| };
| </script>
|
|