@ledvance/ui-biz-bundle 1.1.133 → 1.1.135
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/modules/mood/DynamicMoodEditorPage.tsx +1 -1
- package/src/modules/mood/FantasyMoodEditPage.tsx +1 -1
- package/src/modules/mood/MixMood/MixMoodEditPage.tsx +1 -1
- package/src/modules/mood/StaticMoodEditorPage.tsx +2 -2
- package/src/newModules/biorhythm/BiorhythmActions.ts +34 -8
- package/src/newModules/biorhythm/BiorhythmPage.tsx +58 -24
- package/src/newModules/biorhythm/circular/RhythmsCircle.tsx +488 -0
- package/src/newModules/biorhythm/circular/conical-gradient/Android.tsx +63 -0
- package/src/newModules/biorhythm/circular/conical-gradient/Ios.tsx +26 -0
- package/src/newModules/biorhythm/circular/conical-gradient/Normal.tsx +187 -0
- package/src/newModules/biorhythm/circular/conical-gradient/index.android.tsx +164 -0
- package/src/newModules/biorhythm/circular/conical-gradient/index.ios.tsx +124 -0
- package/src/newModules/biorhythm/circular/conical-gradient/index.tsx +3 -0
- package/src/newModules/biorhythm/circular/conical-gradient/index.web.tsx +94 -0
- package/src/newModules/biorhythm/circular/conical-gradient/interface.ts +19 -0
- package/src/newModules/biorhythm/circular/conical-gradient/utils.ts +25 -0
- package/src/newModules/biorhythm/circular/interface.ts +114 -0
- package/src/newModules/energyConsumption/component/EnergyModal.tsx +3 -0
- package/src/newModules/lightMode/LightModePage.tsx +52 -145
- package/src/newModules/mood/DynamicMoodEditorPage.tsx +1 -1
- package/src/newModules/mood/MixDynamicMoodEditor.tsx +1 -1
- package/src/newModules/mood/MoodInfo.ts +1 -1
- package/src/newModules/mood/MoodPage.tsx +4 -5
- package/src/newModules/mood/StaticMoodEditorPage.tsx +1 -1
- package/src/newModules/powerOnBehavior/LightBehaviorPage.tsx +37 -120
- package/src/newModules/powerOnBehavior/PlugBehaviorPage.tsx +60 -141
- package/src/newModules/powerOnBehavior/PowerOnBehaviorActions.ts +13 -5
- package/src/newModules/sleepWakeUp/SleepWakeUpActions.ts +122 -59
- package/src/newModules/sleepWakeUp/SleepWakeUpPage.tsx +10 -10
- package/src/newModules/swithInching/SwithInching.tsx +23 -20
- package/src/newModules/swithInching/SwithInchingAction.ts +21 -15
- package/src/newModules/biorhythm/circular/ItemIcon.d.ts +0 -22
- package/src/newModules/biorhythm/circular/ItemIcon.tsx +0 -173
- package/src/newModules/biorhythm/circular/Progress.d.ts +0 -24
- package/src/newModules/biorhythm/circular/Progress.tsx +0 -372
- package/src/newModules/biorhythm/circular/TimeCircular.d.ts +0 -11
- package/src/newModules/biorhythm/circular/TimeCircular.tsx +0 -64
|
@@ -1,372 +0,0 @@
|
|
|
1
|
-
import React, { Component } from 'react'
|
|
2
|
-
import { StyleSheet, View } from 'react-native'
|
|
3
|
-
|
|
4
|
-
import ItemIcon from './ItemIcon'
|
|
5
|
-
import Svg, { Circle } from 'react-native-svg'
|
|
6
|
-
import iconList from '../iconListData'
|
|
7
|
-
import { cctToColor } from '@ledvance/base/src/utils/cctUtils'
|
|
8
|
-
|
|
9
|
-
export default class Progress extends Component<any> {
|
|
10
|
-
timeIconList: any[]
|
|
11
|
-
timer: any
|
|
12
|
-
state: any
|
|
13
|
-
|
|
14
|
-
constructor(props) {
|
|
15
|
-
super(props)
|
|
16
|
-
const { timeIconList } = this.props
|
|
17
|
-
|
|
18
|
-
this.timeIconList = timeIconList.map(item => ({ ...item }))
|
|
19
|
-
this.state = {
|
|
20
|
-
iconDataList: this.timeIconList,
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
UNSAFE_componentWillReceiveProps(nextProps) {
|
|
25
|
-
if (nextProps) {
|
|
26
|
-
const { timeIconList, planEdit } = nextProps
|
|
27
|
-
if (timeIconList.length !== this.state.iconDataList.length || planEdit) {
|
|
28
|
-
this.timeIconList = timeIconList.map(item => ({ ...item }))
|
|
29
|
-
this.setState({ iconDataList: this.timeIconList })
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
componentWillUnmount() {
|
|
35
|
-
if (this.timer) {
|
|
36
|
-
clearTimeout(this.timer)
|
|
37
|
-
this.timer = null
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
render() {
|
|
42
|
-
//radius 大圆半径,annularHeight 环宽
|
|
43
|
-
const { radius, annularHeight } = this.props
|
|
44
|
-
const { iconDataList } = this.state
|
|
45
|
-
//换算颜色
|
|
46
|
-
if (iconDataList && iconDataList.length > 0) {
|
|
47
|
-
//排序从小到大
|
|
48
|
-
let min
|
|
49
|
-
for (let i = 0; i < iconDataList.length; i++) {
|
|
50
|
-
for (let j = i; j < iconDataList.length; j++) {
|
|
51
|
-
const iData = iconDataList[i].newStartTime ? iconDataList[i].newStartTime : iconDataList[i].time
|
|
52
|
-
const jData = iconDataList[j].newStartTime ? iconDataList[j].newStartTime : iconDataList[j].time
|
|
53
|
-
if (iData > jData) {
|
|
54
|
-
min = iconDataList[j]
|
|
55
|
-
iconDataList[j] = iconDataList[i]
|
|
56
|
-
iconDataList[i] = min
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
//取出色温、亮度
|
|
62
|
-
for (const elem of iconDataList) {
|
|
63
|
-
const { action } = elem
|
|
64
|
-
|
|
65
|
-
if (elem.light) {
|
|
66
|
-
continue
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
if (elem.colorTemp) {
|
|
70
|
-
continue
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
action.map((item) => {
|
|
74
|
-
const { uri, startValue } = item
|
|
75
|
-
if (uri.indexOf('Brightness') !== -1) {
|
|
76
|
-
elem.light = startValue
|
|
77
|
-
} else if (uri.indexOf('ColorTemperature') !== -1) {
|
|
78
|
-
let clrTemp = (startValue - 2700) / 38
|
|
79
|
-
let colorObj = this.getColorTempStringVale(clrTemp) //占比换算成色值
|
|
80
|
-
//console.log(' 色值数据 ----------> ',colorObj)
|
|
81
|
-
|
|
82
|
-
elem.colorTemp = colorObj.normalColor
|
|
83
|
-
elem.rgbColor = colorObj.rgbColor
|
|
84
|
-
}
|
|
85
|
-
})
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
//有多少个时间点就分为几段弧
|
|
90
|
-
let linearGradientList: any[] = []
|
|
91
|
-
for (let c = 0; c < iconDataList.length; c++) {
|
|
92
|
-
let tmpIndex = c + 1
|
|
93
|
-
if (tmpIndex > iconDataList.length - 1) {
|
|
94
|
-
tmpIndex = 0
|
|
95
|
-
}
|
|
96
|
-
let statRGBColer = iconDataList[c].rgbColor
|
|
97
|
-
let iconDataRgbClr = iconDataList[tmpIndex].rgbColor
|
|
98
|
-
|
|
99
|
-
let startTimes = iconDataList[c].time
|
|
100
|
-
let endTimes = iconDataList[tmpIndex].time
|
|
101
|
-
|
|
102
|
-
let totalMins = Math.abs(endTimes - startTimes)
|
|
103
|
-
if (tmpIndex === 0) {
|
|
104
|
-
totalMins = 1440 - startTimes + endTimes
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
let circleLength = (Math.PI * 2) / (24 * 60) * (totalMins)
|
|
108
|
-
let timeAngle = 360 / (24 * 60) * startTimes
|
|
109
|
-
|
|
110
|
-
// console.log('--- 开始时间 ---------->: ',iconDataList[c].startTime,'分钟数:',startTimes);
|
|
111
|
-
// console.log('--- 结束时间 ---------->: ',iconDataList[tmpIndex].startTime,'分钟数:',endTimes);
|
|
112
|
-
// console.log('--- 分段时长 ----------> ',totalMins);
|
|
113
|
-
// console.log('--- 弧长 ----------> ',circleLength);
|
|
114
|
-
|
|
115
|
-
linearGradientList.push({
|
|
116
|
-
startRbg: statRGBColer,
|
|
117
|
-
endRgb: this.props.gradient && statRGBColer || iconDataRgbClr,
|
|
118
|
-
circleLength: circleLength,
|
|
119
|
-
startAngle: timeAngle,
|
|
120
|
-
brightness: iconDataList[c].brightness
|
|
121
|
-
})
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
//console.log('--- 分段数据 ----------> ',linearGradientList)
|
|
125
|
-
let aCircleList: any[] = []
|
|
126
|
-
for (let l = 0; l < linearGradientList.length; l++) {
|
|
127
|
-
const elem = linearGradientList[l]
|
|
128
|
-
let startRGB = elem.startRbg
|
|
129
|
-
let endRGB = elem.endRgb
|
|
130
|
-
const brightness = elem.brightness || 0;
|
|
131
|
-
//兼容不支持色温的灯
|
|
132
|
-
if (!startRGB || !endRGB) {
|
|
133
|
-
startRGB = [122, 122, 122]
|
|
134
|
-
endRGB = [122, 122, 122]
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
//计算各时间段颜色变化值
|
|
138
|
-
const arcArr: () => any = () => {
|
|
139
|
-
let progressLength = (this.props.radius - 18) * elem.circleLength //每段的弧长
|
|
140
|
-
const step = 60 // 设置到100则已经比较难看出来颜色断层
|
|
141
|
-
const gradientColor = (startRGB, endRGB, step) => {
|
|
142
|
-
let startR = startRGB[0]
|
|
143
|
-
let startG = startRGB[1]
|
|
144
|
-
let startB = startRGB[2]
|
|
145
|
-
let endR = endRGB[0]
|
|
146
|
-
let endG = endRGB[1]
|
|
147
|
-
let endB = endRGB[2]
|
|
148
|
-
let sR = (endR - startR) / step // 总差值
|
|
149
|
-
let sG = (endG - startG) / step
|
|
150
|
-
let sB = (endB - startB) / step
|
|
151
|
-
let colorArr: any[] = []
|
|
152
|
-
for (let i = 0; i < step; i++) {
|
|
153
|
-
let color = Number(brightness) === 0 ? 'rgb(0, 0, 0)' : (this.props.isSupportTemperature && cctToColor(1)) || `rgb(${parseInt(sR * i + startR, 10)},
|
|
154
|
-
${parseInt(sG * i + startG, 10)},
|
|
155
|
-
${parseInt(sB * i + startB, 10)},
|
|
156
|
-
${Number(brightness) / 100}
|
|
157
|
-
)`
|
|
158
|
-
|
|
159
|
-
colorArr.push(color)
|
|
160
|
-
}
|
|
161
|
-
return colorArr
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
let colorArr = gradientColor(startRGB, endRGB, step)
|
|
165
|
-
// 计算每个步进中的弧长
|
|
166
|
-
let arcLengthArr = colorArr.map((color, index) => ({
|
|
167
|
-
arcLength: [index * (progressLength / step), 10000000],
|
|
168
|
-
color: color,
|
|
169
|
-
arcAngle: elem.startAngle,
|
|
170
|
-
}))
|
|
171
|
-
|
|
172
|
-
//circleTotalLength = circleTotalLength + progressLength;
|
|
173
|
-
arcLengthArr.reverse() //数组倒序
|
|
174
|
-
return arcLengthArr
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
aCircleList = aCircleList.concat(arcArr())
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
let radiusValue = (this.props.radius).toString() //圆心坐标
|
|
181
|
-
let circleR = (this.props.radius - 22).toString() // 半径长度 (不包含宽度值)
|
|
182
|
-
const circleView = aCircleList.map((d, index) => {
|
|
183
|
-
return (
|
|
184
|
-
<Circle
|
|
185
|
-
key={`c${index}`}
|
|
186
|
-
cx={radiusValue}
|
|
187
|
-
cy={radiusValue}
|
|
188
|
-
r={circleR}
|
|
189
|
-
stroke={d.color}
|
|
190
|
-
strokeDasharray={d.arcLength}
|
|
191
|
-
strokeWidth="44"
|
|
192
|
-
rotation={-(90 - d.arcAngle)}
|
|
193
|
-
originX={radiusValue}
|
|
194
|
-
originY={radiusValue}
|
|
195
|
-
//strokeOpacity = {1.0}
|
|
196
|
-
strokeLinecap="butt"
|
|
197
|
-
fill="none"
|
|
198
|
-
/>
|
|
199
|
-
)
|
|
200
|
-
})
|
|
201
|
-
|
|
202
|
-
const setImg = (id) => {
|
|
203
|
-
const imgIcon = iconList?.find(val => val?.id === id)?.icon
|
|
204
|
-
return imgIcon
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
return (
|
|
208
|
-
<View /*style = {{ backgroundColor: '#000000'}}*/>
|
|
209
|
-
|
|
210
|
-
<Svg width={this.props.radius * 2} height={this.props.radius * 2}>
|
|
211
|
-
|
|
212
|
-
{iconDataList.length > 0 ? circleView :
|
|
213
|
-
<Circle
|
|
214
|
-
cx={radiusValue}
|
|
215
|
-
cy={radiusValue}
|
|
216
|
-
r={circleR}
|
|
217
|
-
strokeWidth="44"
|
|
218
|
-
stroke={'#DEDEDE'}
|
|
219
|
-
fill={'none'} />}
|
|
220
|
-
</Svg>
|
|
221
|
-
|
|
222
|
-
{/*----- 环上图标 ------*/}
|
|
223
|
-
{this.timeIconList && this.timeIconList.map((item) => {
|
|
224
|
-
|
|
225
|
-
const { time } = item
|
|
226
|
-
|
|
227
|
-
//时间对应的弧度
|
|
228
|
-
let timeAngle = (Math.PI * 2) / (24 * 60) * time
|
|
229
|
-
let newRadius = radius - annularHeight + 22
|
|
230
|
-
|
|
231
|
-
//1.5 为解决将圆当作一个点处理代理的误差
|
|
232
|
-
let leftValeu = newRadius + (Math.sin(timeAngle) * newRadius) + 1.5
|
|
233
|
-
let topValue = newRadius - (Math.cos(timeAngle) * newRadius) + 1.5
|
|
234
|
-
const type = typeof item?.icon === 'string'
|
|
235
|
-
|
|
236
|
-
return (
|
|
237
|
-
<ItemIcon
|
|
238
|
-
key={item.index}
|
|
239
|
-
leftValeu={leftValeu}
|
|
240
|
-
topValue={topValue}
|
|
241
|
-
imageSource={{uri: setImg(item?.iconId)} || type && { uri: item?.icon } || item?.icon}
|
|
242
|
-
circularRadius={newRadius}
|
|
243
|
-
onPanMoving={(_xValue, _yValue, angle) => {
|
|
244
|
-
|
|
245
|
-
if (this.timer) {
|
|
246
|
-
clearTimeout(this.timer)
|
|
247
|
-
this.timer = null
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
//角度转换为表盘时间
|
|
251
|
-
let angleValue = angle
|
|
252
|
-
let angleMins = 24 * 60 / 360//每度多少分钟
|
|
253
|
-
let totalMins = Math.abs(angleMins * angleValue)
|
|
254
|
-
item.time = totalMins
|
|
255
|
-
|
|
256
|
-
this.setState({ iconDataList: [].concat(iconDataList) })
|
|
257
|
-
}}
|
|
258
|
-
|
|
259
|
-
onPanMoveEnd={() => {
|
|
260
|
-
const { ret, failMinutes } = this.checkTimesFormat(item.time)
|
|
261
|
-
if (!ret) {
|
|
262
|
-
let changeMinutes = (failMinutes || 0) + 60
|
|
263
|
-
if (changeMinutes > 60 * 24) {
|
|
264
|
-
changeMinutes = 30
|
|
265
|
-
}
|
|
266
|
-
item.time = changeMinutes
|
|
267
|
-
this.setState({ iconDataList: [].concat(iconDataList) }, () => {
|
|
268
|
-
this.playTimeChangeCallBack(item.index, Math.round(changeMinutes))
|
|
269
|
-
})
|
|
270
|
-
} else {
|
|
271
|
-
this.playTimeChangeCallBack(item.index, Math.round(item.time))
|
|
272
|
-
}
|
|
273
|
-
}}
|
|
274
|
-
/>
|
|
275
|
-
)
|
|
276
|
-
})}
|
|
277
|
-
|
|
278
|
-
{/*----- 环内视图 ------*/}
|
|
279
|
-
<View
|
|
280
|
-
style={[
|
|
281
|
-
styles.contentView,
|
|
282
|
-
{
|
|
283
|
-
left: (this.props.annularHeight),
|
|
284
|
-
top: this.props.annularHeight,
|
|
285
|
-
width: (this.props.radius - this.props.annularHeight) * 2,
|
|
286
|
-
height: (this.props.radius - this.props.annularHeight) * 2,
|
|
287
|
-
borderRadius: this.props.radius,
|
|
288
|
-
},
|
|
289
|
-
]}>
|
|
290
|
-
{this.props.children}
|
|
291
|
-
</View>
|
|
292
|
-
</View>
|
|
293
|
-
)
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
//时间调整回调业务层
|
|
297
|
-
playTimeChangeCallBack(id: number, time: number) {
|
|
298
|
-
const { onPanMoved } = this.props
|
|
299
|
-
|
|
300
|
-
if (this.timer) {
|
|
301
|
-
clearTimeout(this.timer)
|
|
302
|
-
this.timer = null
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
//延时0.5秒后更新计划
|
|
306
|
-
this.timer = setTimeout(() => {
|
|
307
|
-
onPanMoved && onPanMoved(id, time)
|
|
308
|
-
}, 500)
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
//判断时间是否合法
|
|
312
|
-
checkTimesFormat(newTimeMinutes) {
|
|
313
|
-
for (const elem of this.timeIconList) {
|
|
314
|
-
const { time } = elem
|
|
315
|
-
if (time === newTimeMinutes) {
|
|
316
|
-
continue
|
|
317
|
-
}
|
|
318
|
-
if (Math.abs(time - newTimeMinutes) < 15) {
|
|
319
|
-
return { ret: false, failMinutes: time }
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
return { ret: true }
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
getColorTempStringVale(colorTempInt) {
|
|
327
|
-
// 蓝色:80CBFF 黄色:FFCD66
|
|
328
|
-
let limitBottomColor = '#FFCD66'
|
|
329
|
-
let limitTopColor = '#80CBFF'
|
|
330
|
-
|
|
331
|
-
if (parseInt(colorTempInt) >= 100) {
|
|
332
|
-
return { rgbColor: [128, 203, 255], normalColor: limitTopColor }
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
if (parseInt(colorTempInt) <= 0) {
|
|
336
|
-
return { rgbColor: [255, 205, 102], normalColor: limitBottomColor }
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
let redStat = parseInt('FF', 16)
|
|
340
|
-
let redEnd = parseInt('80', 16)
|
|
341
|
-
let redStep = Math.round(redStat + ((redEnd - redStat) / 100) * colorTempInt)
|
|
342
|
-
|
|
343
|
-
let gStart = parseInt('CD', 16)
|
|
344
|
-
let gEnd = parseInt('CB', 16)
|
|
345
|
-
let gStep = Math.round(gStart + ((gEnd - gStart) / 100) * colorTempInt)
|
|
346
|
-
|
|
347
|
-
let bStart = parseInt('66', 16)
|
|
348
|
-
let bEnd = parseInt('FF', 16)
|
|
349
|
-
let bStep = Math.round(bStart + ((bEnd - bStart) / 100) * colorTempInt)
|
|
350
|
-
|
|
351
|
-
let colorVale = '#' + redStep.toString(16) + gStep.toString(16) + bStep.toString(16)
|
|
352
|
-
// console.log('色温值 -----------> colorVale: ',colorVale);
|
|
353
|
-
|
|
354
|
-
let colorRGBAry = [redStep, gStep, bStep]
|
|
355
|
-
return { rgbColor: colorRGBAry, normalColor: colorVale }
|
|
356
|
-
}
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
const styles = StyleSheet.create({
|
|
360
|
-
contentView: {
|
|
361
|
-
position: 'absolute',
|
|
362
|
-
justifyContent: 'center',
|
|
363
|
-
alignItems: 'center',
|
|
364
|
-
backgroundColor: '#FFFFFF',
|
|
365
|
-
borderRadius: 130,
|
|
366
|
-
},
|
|
367
|
-
angleView: {
|
|
368
|
-
height: 260,
|
|
369
|
-
width: 260,
|
|
370
|
-
borderRadius: 130,
|
|
371
|
-
},
|
|
372
|
-
})
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Plan } from '../BiorhythmBean';
|
|
2
|
-
interface TimeCircularProps {
|
|
3
|
-
planList: Plan[];
|
|
4
|
-
onPanMoved?: (id: number, time: string) => void;
|
|
5
|
-
planEdit?: Boolean;
|
|
6
|
-
replaceStatus?: Boolean;
|
|
7
|
-
gradient?: Boolean;
|
|
8
|
-
isSupportTemperature: boolean;
|
|
9
|
-
}
|
|
10
|
-
declare const TimeCircular: (props?: TimeCircularProps) => any;
|
|
11
|
-
export default TimeCircular;
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
import {Image, StyleSheet, View} from 'react-native'
|
|
3
|
-
import Progress from './Progress'
|
|
4
|
-
import {Plan} from '../BiorhythmBean'
|
|
5
|
-
import res from '@ledvance/base/src/res'
|
|
6
|
-
import { useCreation } from 'ahooks'
|
|
7
|
-
import { useSystemTimeFormate } from '@ledvance/base/src/models/modules/NativePropsSlice'
|
|
8
|
-
|
|
9
|
-
interface TimeCircularProps {
|
|
10
|
-
planList: Plan[]
|
|
11
|
-
onPanMoved?: (id: number, time: number) => void
|
|
12
|
-
planEdit?: Boolean
|
|
13
|
-
replaceStatus?: Boolean
|
|
14
|
-
gradient?: Boolean
|
|
15
|
-
isSupportTemperature: boolean
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
const TimeCircular = (
|
|
19
|
-
props: TimeCircularProps = {
|
|
20
|
-
planList: [],
|
|
21
|
-
planEdit: false,
|
|
22
|
-
replaceStatus: false,
|
|
23
|
-
gradient: false,
|
|
24
|
-
isSupportTemperature: false,
|
|
25
|
-
},
|
|
26
|
-
) => {
|
|
27
|
-
const {planList, onPanMoved, planEdit, replaceStatus, gradient, isSupportTemperature} = props
|
|
28
|
-
const styles = dynamicStyleSheet
|
|
29
|
-
const is24Hour = useSystemTimeFormate()
|
|
30
|
-
const enabledPlanList = planList.filter(plan => plan.enable)
|
|
31
|
-
const timeDialPic = useCreation(() =>{
|
|
32
|
-
if(is24Hour){
|
|
33
|
-
return replaceStatus ? res.ic_warning_amber_sun : res.ic_warning_amber_new
|
|
34
|
-
}else{
|
|
35
|
-
return replaceStatus ? res.ic_warning_amber_sun_12 : res.ic_warning_amber_new_12
|
|
36
|
-
}
|
|
37
|
-
}, [is24Hour, replaceStatus])
|
|
38
|
-
|
|
39
|
-
return (
|
|
40
|
-
<View style={styles.container}>
|
|
41
|
-
<Progress
|
|
42
|
-
radius={130}
|
|
43
|
-
annularHeight={44}
|
|
44
|
-
timeIconList={enabledPlanList}
|
|
45
|
-
planEdit={planEdit}
|
|
46
|
-
gradient={gradient}
|
|
47
|
-
isSupportTemperature={isSupportTemperature}
|
|
48
|
-
onPanMoved={(id: number, time: number) => {
|
|
49
|
-
onPanMoved && onPanMoved(id, time)
|
|
50
|
-
}}>
|
|
51
|
-
<Image source={{uri: timeDialPic}} style={{width: 172, height: 172}}/>
|
|
52
|
-
</Progress>
|
|
53
|
-
</View>
|
|
54
|
-
)
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
const dynamicStyleSheet = StyleSheet.create({
|
|
58
|
-
container: {
|
|
59
|
-
alignItems: 'center',
|
|
60
|
-
justifyContent: 'center',
|
|
61
|
-
},
|
|
62
|
-
})
|
|
63
|
-
|
|
64
|
-
export default TimeCircular
|