-
Notifications
You must be signed in to change notification settings - Fork 95
/
default.js
271 lines (255 loc) · 5.99 KB
/
default.js
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
/**
* 默认类型与默认值
**/
// Libs
import PropTypes from 'prop-types'
import { env } from "@/utils/env"
/**
* 默认类型
**/
export const defType = {
/**
* 基础数据
**/
// 图片地址
src: PropTypes.oneOfType([
PropTypes.string,
PropTypes.func,
]),
// 图片标题
alt: PropTypes.string,
// 图片描述
txt: PropTypes.string,
// 图片集合
set: PropTypes.oneOfType([
PropTypes.arrayOf(
PropTypes.shape({
src: PropTypes.string, // 图片地址
alt: PropTypes.string, // 图片标题
text: PropTypes.string, // 图片描述
})
),
PropTypes.shape({
src: PropTypes.string, // 图片地址
alt: PropTypes.string, // 图片标题
text: PropTypes.string, // 图片描述
}),
]),
// 图片默认页
defaultPage: PropTypes.number,
/**
* 預設
**/
preset: PropTypes.oneOf([
// 自动
"auto",
// 桌面端
"desktop",
// 移动端
"mobile",
]),
/**
* 功能控制
**/
// 控制器
controller: PropTypes.oneOfType([
PropTypes.bool,
PropTypes.shape({
// 分页
pagination: PropTypes.bool,
// 旋转按钮
rotate: PropTypes.bool,
// 缩放按钮
zoom: PropTypes.bool,
// 关闭按钮
close: PropTypes.bool,
// 左右翻页
flip: PropTypes.bool,
}),
]),
// 快捷键
hotKey: PropTypes.oneOfType([
PropTypes.bool,
PropTypes.shape({
// 关闭(ESC)
close: PropTypes.bool,
// 缩放(空格)
zoom: PropTypes.bool,
// 翻页(左右键)
flip: PropTypes.bool,
}),
]),
// 动画
animate: PropTypes.shape({
browsing: PropTypes.bool,
flip: PropTypes.oneOf([
// 渐变 (set小於3時强制使用)
"fade",
// 交叉渐变
"crossFade",
// 翻页
"swipe",
// 缩放
"zoom",
]),
}),
/**
* 界面与交互
**/
// 背景色
backdrop: PropTypes.string,
// 高度
zIndex: PropTypes.number,
// 圆角
radius: PropTypes.number,
// 边距
edge: PropTypes.number,
// 循环
loop: PropTypes.bool,
/**
* 生命周期
**/
onBrowsing: PropTypes.func,
onZooming: PropTypes.func,
onSwitching: PropTypes.func,
onRotating: PropTypes.func,
/**
* 受控屬性
**/
browsing: PropTypes.bool,
}
/**
* 默认值
**/
export const defPreset = {
// 桌面
desktop: {
controller: {
pagination: true,
rotate: true,
zoom: true,
download: false,
close: true,
flip: true,
},
hotKey: {
close: true,
zoom: true,
flip: true,
},
animate: {
browsing: true,
flip: 'fade',
},
},
// 移动端
mobile: {
controller: {
pagination: true,
rotate: false,
zoom: false,
download: false,
close: true,
flip: false,
},
hotKey: {
close: false,
zoom: false,
flip: false,
},
animate: {
browsing: true,
flip: 'fade',
},
}
}
export const defProp = {
/**
* 基础数据
**/
// 图片地址
src: "",
// 图片标题
alt: "",
// 图片描述
txt: "",
// 图片集合
set: [],
// 图片默认页
defaultPage: 0,
/**
* 预设
**/
preset: "auto",
/**
* 功能控制
**/
// 控制器 (从 preset 初始化)
controller: {},
// 快捷键 (从 preset 初始化)
hotKey: {},
// 动画 (从 preset 初始化)
animate: {},
/**
* 界面与交互
**/
// 背景色
backdrop: "#FFFFFF",
// 高度
zIndex: 1000,
// 圆角 (受制于 preset)
radius: 0,
// 边距 (受制于 preset)
edge: 0,
// 是否循环查看
loop: true,
/**
* 生命周期
**/
onBrowsing: ()=>{},
onZooming: ()=>{},
onSwitching: ()=>{},
onRotating: ()=>{},
}
/**
* 默认值 (不同平台)
**/
const DEF_PROP = "__ZMAGE_DEF_PROP__"
export const defPropWithEnv = (preset) => {
if (window) {
if (!window.hasOwnProperty(DEF_PROP)) {
window[DEF_PROP] = {}
}
if (!window[DEF_PROP].hasOwnProperty(preset)) {
switch (preset) {
case 'desktop':
window[DEF_PROP][preset] = {
...defProp,
...defPreset.desktop,
}
break
case 'mobile':
window[DEF_PROP][preset] = {
...defProp,
...defPreset.mobile,
}
break
case 'auto':
window[DEF_PROP][preset] = {
...defProp,
...env.isDesktop && defPreset.desktop,
...env.isMobile && defPreset.mobile,
}
break
default:
window[DEF_PROP][preset] = {
...defProp,
...defPreset.desktop,
}
}
}
return window[DEF_PROP][preset]
} else {
return {}
}
}