@ledvance/group-ui-biz-bundle 1.0.49 → 1.0.50

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 CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "@ledvance/group-ui-biz-bundle",
5
5
  "pid": [],
6
6
  "uiid": "",
7
- "version": "1.0.49",
7
+ "version": "1.0.50",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "@ledvance/base": "^1.x",
@@ -68,7 +68,7 @@ export function dp2Obj(dp: string): BiorhythmBean {
68
68
  // 分钟
69
69
  const minute = hex2Int(hex.slice(0, 2)).toString().padStart(2, '0')
70
70
  hex = hex.slice(2)
71
- const time = hour * 60 + minute
71
+ const time = Number(hour) * 60 + Number(minute)
72
72
  // 色调 (色相)
73
73
  hex2Int(hex.slice(0, 4))
74
74
  hex = hex.slice(4)
@@ -1,4 +1,4 @@
1
- import React, { useCallback } from 'react'
1
+ import React, { useCallback, useMemo } from 'react'
2
2
  import { Image, ScrollView, StyleSheet, Text, TouchableOpacity, View } from 'react-native'
3
3
  import { useNavigation } from '@react-navigation/native'
4
4
  import { TimerPicker, Utils } from 'tuya-panel-kit'
@@ -29,6 +29,7 @@ export interface BiorhythmEditPageParams {
29
29
  onPlanEdited: (isAdd: boolean, plan: Plan) => void
30
30
  onPlanDelete: (id: number) => void
31
31
  minimumEnable: (plan: Plan) => boolean
32
+ nameRepeat: (plan: Plan) => boolean
32
33
  iconIdList?: any
33
34
  isMixLight: boolean
34
35
  isSupportTemperature: boolean
@@ -46,16 +47,15 @@ const BiorhythmEditPage = () => {
46
47
  onPlanEdited,
47
48
  onPlanDelete,
48
49
  minimumEnable,
50
+ nameRepeat,
49
51
  iconIdList,
50
52
  isMixLight,
51
53
  isSupportTemperature,
52
54
  isSupportBrightness,
53
55
  showDeleteBtn
54
56
  } = params
55
- const [hour, minute] = planData.startTime.split(':')
57
+
56
58
  const state = useReactive({
57
- hour: Number(hour),
58
- minute: Number(minute),
59
59
  iconIdList,
60
60
  planData: cloneDeep(planData),
61
61
  backStatus: false,
@@ -92,15 +92,27 @@ const BiorhythmEditPage = () => {
92
92
  return imgIcon
93
93
  }
94
94
 
95
+ const nameRepeatFlag = useMemo(() =>{
96
+ return nameRepeat(state.planData)
97
+ }, [state.planData.name])
98
+
99
+ const checkBiorhythmDataChanged = useMemo(() =>{
100
+ return isEqual(state.planData, planData)
101
+ }, [JSON.stringify(state.planData), planData])
102
+
103
+ const canSaveMoodData = useMemo(() =>{
104
+ return state.planData.name.length > 0 && state.planData.name.length < 33 && !nameRepeatFlag && !checkBiorhythmDataChanged && !minimumTipEnable()
105
+ }, [nameRepeatFlag, state.planData.name, checkBiorhythmDataChanged])
106
+
95
107
  return (
96
108
  <Page
97
109
  backText={I18n.getLang('add_new_trigger_time_system_back_text')}
98
110
  headlineText={I18n.getLang(isAdd ? 'add_new_trigger_time_headline_text' : 'edit_trigger_time_headline_text')}
99
111
  backDialogTitle={I18n.getLang('manage_user_unsaved_changes_dialog_headline')}
100
112
  backDialogContent={I18n.getLang('cancel_dialog_leave_unsaved_bio_rhythm_note')}
101
- showBackDialog={saveEnable() && !minimumTipEnable()}
102
- rightButtonIcon={(saveEnable() && !minimumTipEnable()) ? res.ic_check : res.ic_uncheck}
103
- rightButtonIconClick={onTopBarRightBtnClick}
113
+ showBackDialog={!checkBiorhythmDataChanged}
114
+ rightButtonIcon={canSaveMoodData ? res.ic_check : res.ic_uncheck}
115
+ rightButtonIconClick={canSaveMoodData ? onTopBarRightBtnClick : undefined}
104
116
  >
105
117
  <ScrollView>
106
118
  <View
@@ -120,20 +132,19 @@ const BiorhythmEditPage = () => {
120
132
  }} />
121
133
 
122
134
  <Spacer />
123
- <TimerPicker
135
+ <TimerPicker
124
136
  itemTextColor='#aeadb5'
125
- style={{paddingVertical: cx(0), marginVertical: cx(0)}}
137
+ style={{ paddingVertical: cx(0), marginVertical: cx(0) }}
126
138
  is12Hours={!is24Hour}
127
139
  singlePicker={true}
128
- startTime={state.hour * 60 + state.minute}
129
140
  amText={I18n.getLang('manage_user_calendar_label_am')}
130
141
  pmText={I18n.getLang('manage_user_calendar_label_pm')}
131
- symbol=''
132
- onTimerChange={(startTime) => {
133
- state.hour = Math.trunc(startTime / 60)
134
- state.minute = startTime % 60
135
- state.planData.startTime = `${state.hour.toString().padStart(2, '0')}:${state.minute.toString().padStart(2, '0')}`
136
- }}/>
142
+ startTime={state.planData.time}
143
+ symbol={''}
144
+ onTimerChange={(time) => {
145
+ state.planData.time = time
146
+ }}
147
+ />
137
148
  {minimumTipEnable() && <View style={{ flexDirection: 'row', marginVertical: cx(5) }}>
138
149
  <Image style={{ width: cx(16), height: cx(16), tintColor: '#000' }} source={res.ic_info} />
139
150
  <Text
@@ -17,6 +17,7 @@ import pIdList from './pIdList'
17
17
  import {
18
18
  useDeviceInfo,
19
19
  useGroupDevices,
20
+ useSystemTimeFormate,
20
21
  } from '@ledvance/base/src/models/modules/NativePropsSlice'
21
22
  import I18n from '@ledvance/base/src/i18n'
22
23
  import res from '@ledvance/base/src/res'
@@ -26,7 +27,7 @@ import { cctToColor } from '@ledvance/base/src/utils/cctUtils'
26
27
  import { setDataSource } from '@ledvance/base/src/components/weekSelect'
27
28
  import { BiorhythmEditPageParams } from './BiorhythmDetailPage'
28
29
  import { useBiorhythm } from './BiorhythmActions'
29
- import { showDialog as showCommonDialog, showDialog } from '@ledvance/base/src/utils/common'
30
+ import { convertMinutesTo12HourFormat, showDialog as showCommonDialog, showDialog } from '@ledvance/base/src/utils/common'
30
31
  import { useParams } from '@ledvance/base/src/hooks/Hooks'
31
32
  import Page from '@ledvance/base/src/components/Page'
32
33
  import Spacer from '@ledvance/base/src/components/Spacer'
@@ -58,6 +59,7 @@ const BiorhythmPage = () => {
58
59
  const [biorhythm, setBiorhythm] = useBiorhythm()
59
60
  const deviceInfo = useDeviceInfo()
60
61
  const [groupDevices] = useGroupDevices()
62
+ const is24Hour = useSystemTimeFormate()
61
63
  const { productId } = deviceInfo
62
64
  const devicesJudge = pIdList.some(val => val === productId)
63
65
 
@@ -76,7 +78,7 @@ const BiorhythmPage = () => {
76
78
  const onPlanEdited = useCallback((isAdd: boolean, newPlan: Plan) => {
77
79
  if (isAdd) {
78
80
  state.planList.push(newPlan)
79
- state.planList = sortBy(state.planList, p => p.startTime)
81
+ state.planList = sortBy(state.planList, p => p.time)
80
82
  } else {
81
83
  state.planList = state.planList.map(plan => (plan.id === newPlan.id ? newPlan : plan))
82
84
  }
@@ -116,7 +118,7 @@ const BiorhythmPage = () => {
116
118
 
117
119
  const minimumEnable = useCallback((plan: Plan) => {
118
120
  let enable = false
119
- state.planList.filter(p => p.index !== plan.id).forEach(item => {
121
+ state.planList.filter(p => p.id !== plan.id).forEach(item => {
120
122
  const diff = Math.abs(plan.time - item.time)
121
123
  if (diff < 15) enable = true
122
124
  })
@@ -235,6 +237,10 @@ const BiorhythmPage = () => {
235
237
  return availableChart[randomIndex]
236
238
  }
237
239
 
240
+ const nameRepeat = useCallback((plan: Plan) => {
241
+ return !!state.planList.filter(p => p.id !== plan.id).find(p => p.name === plan.name)
242
+ }, [state.planList])
243
+
238
244
  return (
239
245
  <Page
240
246
  backText={deviceInfo.name}
@@ -365,7 +371,7 @@ const BiorhythmPage = () => {
365
371
  state.planList = state.planList.map(plan => {
366
372
  return {
367
373
  ...plan,
368
- time: plan.index === id ? time : plan.time,
374
+ time: plan.id === id ? time : plan.time,
369
375
  }
370
376
  })
371
377
  state.flag = Symbol()
@@ -426,6 +432,7 @@ const BiorhythmPage = () => {
426
432
  isAdd: true,
427
433
  onPlanEdited,
428
434
  onPlanDelete,
435
+ nameRepeat,
429
436
  minimumEnable,
430
437
  iconIdList: state.planList?.map(item => {
431
438
  return item.iconId
@@ -481,6 +488,7 @@ const BiorhythmPage = () => {
481
488
  isAdd: false,
482
489
  onPlanEdited,
483
490
  onPlanDelete,
491
+ nameRepeat,
484
492
  minimumEnable,
485
493
  iconIdList: state.planList?.map(item => {
486
494
  return item.iconId
@@ -518,7 +526,7 @@ const BiorhythmPage = () => {
518
526
  fontFamily: 'helvetica_neue_lt_std_roman',
519
527
  }}
520
528
  >
521
- {item.startTime}
529
+ {convertMinutesTo12HourFormat(item.time, is24Hour)}
522
530
  </Text>
523
531
  </View>
524
532
  <Switch
@@ -603,7 +611,7 @@ const BiorhythmPage = () => {
603
611
  width: '100%',
604
612
  height: '100%',
605
613
  position: 'absolute',
606
- top: cx(45),
614
+ top: 0,
607
615
  zIndex: 999,
608
616
  }}
609
617
  />
@@ -637,8 +645,8 @@ const BiorhythmPage = () => {
637
645
  confirmText={I18n.getLang('auto_scan_system_wifi_confirm')}
638
646
  onConfirm={(item: BiorhythmGradientType) => {
639
647
  state.gradient = item
640
- state.flag = Symbol()
641
648
  showGradientTypeSelectModal(false)
649
+ state.flag = Symbol()
642
650
  }}
643
651
  />
644
652
  </>
@@ -4,409 +4,369 @@ import { StyleSheet, View } from 'react-native'
4
4
  import ItemIcon from './ItemIcon'
5
5
  import Svg, { Circle } from 'react-native-svg'
6
6
  import iconList from '../iconListData'
7
- import {cctToColor} from '@ledvance/base/src/utils/cctUtils'
7
+ import { cctToColor } from '@ledvance/base/src/utils/cctUtils'
8
8
 
9
9
  export default class Progress extends Component<any> {
10
- timeIconList: any[]
11
- timer: any
12
- state: any
10
+ timeIconList: any[]
11
+ timer: any
12
+ state: any
13
13
 
14
- constructor(props) {
15
- super(props)
16
- const { timeIconList } = this.props
14
+ constructor(props) {
15
+ super(props)
16
+ const { timeIconList } = this.props
17
17
 
18
- this.timeIconList = timeIconList.map(item => ({ ...item }))
19
- this.state = {
20
- iconDataList: this.timeIconList,
21
- }
18
+ this.timeIconList = timeIconList.map(item => ({ ...item }))
19
+ this.state = {
20
+ iconDataList: this.timeIconList,
22
21
  }
22
+ }
23
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
- }
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
+ }
32
31
  }
32
+ }
33
33
 
34
- componentWillUnmount() {
35
- if (this.timer) {
36
- clearTimeout(this.timer)
37
- this.timer = null
38
- }
34
+ componentWillUnmount() {
35
+ if (this.timer) {
36
+ clearTimeout(this.timer)
37
+ this.timer = null
39
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
+ }
40
60
 
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 = this.getTimeIntVale(iconDataList[i].newStartTime ? iconDataList[i].newStartTime : iconDataList[i].startTime)
52
- const jData = this.getTimeIntVale(iconDataList[j].newStartTime ? iconDataList[j].newStartTime : iconDataList[j].startTime)
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
61
+ //取出色温、亮度
62
+ for (const elem of iconDataList) {
63
+ const { action } = elem
64
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
- }
65
+ if (elem.light) {
66
+ continue
87
67
  }
88
68
 
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 = this.getTimeIntVale(iconDataList[c].startTime)
100
- let endTimes = this.getTimeIntVale(iconDataList[tmpIndex].startTime)
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
- })
69
+ if (elem.colorTemp) {
70
+ continue
122
71
  }
123
72
 
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)},
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
154
  ${parseInt(sG * i + startG, 10)},
155
155
  ${parseInt(sB * i + startB, 10)},
156
156
  ${Number(brightness) / 100}
157
157
  )`
158
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())
159
+ colorArr.push(color)
160
+ }
161
+ return colorArr
178
162
  }
179
163
 
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
- })
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
+ }))
201
171
 
202
- const setImg = (id) => {
203
- const imgIcon = iconList?.find(val => val?.id === id)?.icon
204
- return imgIcon
205
- }
172
+ //circleTotalLength = circleTotalLength + progressLength;
173
+ arcLengthArr.reverse() //数组倒序
174
+ return arcLengthArr
175
+ }
206
176
 
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 { startTime } = item
226
-
227
- let timeArray = startTime.split(':')
228
-
229
- let hourTime = timeArray[0]
230
- let mineTime = timeArray[1]
231
-
232
- //时间对应的弧度
233
- let timeAngle = (Math.PI * 2) / (24 * 60) * (parseInt(hourTime) * 60 + parseInt(mineTime))
234
- let newRadius = radius - annularHeight + 22
235
-
236
- //1.5 为解决将圆当作一个点处理代理的误差
237
- let leftValeu = newRadius + (Math.sin(timeAngle) * newRadius) + 1.5
238
- let topValue = newRadius - (Math.cos(timeAngle) * newRadius) + 1.5
239
- const type = typeof item?.icon === 'string'
240
-
241
- return (
242
- <ItemIcon
243
- key={item.id}
244
- leftValeu={leftValeu}
245
- topValue={topValue}
246
- imageSource={setImg(item?.iconId) || type && { uri: item?.icon } || item?.icon}
247
- circularRadius={newRadius}
248
- onPanMoving={(_xValue, _yValue, angle) => {
249
-
250
- if (this.timer) {
251
- clearTimeout(this.timer)
252
- this.timer = null
253
- }
254
-
255
- //角度转换为表盘时间
256
- let angleValue = angle
257
- let angleMins = 24 * 60 / 360//每度多少分钟
258
- let totalMins = Math.abs(angleMins * angleValue)
259
- item.startTime = this.createFormTime(totalMins)
260
-
261
- this.setState({ iconDataList: [].concat(iconDataList) })
262
- }}
263
-
264
- onPanMoveEnd={() => {
265
- const { ret, failMinutes } = this.checkTimesFormat(item.startTime)
266
- if (!ret) {
267
- let changeMinutes = (failMinutes || 0) + 60
268
- if (changeMinutes > 60 * 24) {
269
- changeMinutes = 30
270
- }
271
- const time = this.createFormTime(changeMinutes)
272
- item.startTime = time
273
- this.setState({ iconDataList: [].concat(iconDataList) }, () => {
274
- this.playTimeChangeCallBack(item.id, time)
275
- })
276
- } else {
277
- this.playTimeChangeCallBack(item.id, item.startTime)
278
- }
279
- }}
280
- />
281
- )
282
- })}
283
-
284
- {/*----- 环内视图 ------*/}
285
- <View
286
- style={[
287
- styles.contentView,
288
- {
289
- left: (this.props.annularHeight),
290
- top: this.props.annularHeight,
291
- width: (this.props.radius - this.props.annularHeight) * 2,
292
- height: (this.props.radius - this.props.annularHeight) * 2,
293
- borderRadius: this.props.radius,
294
- },
295
- ]}>
296
- {this.props.children}
297
- </View>
298
- </View>
299
- )
177
+ aCircleList = aCircleList.concat(arcArr())
300
178
  }
301
179
 
302
- //时间调整回调业务层
303
- playTimeChangeCallBack(id: number, time: string) {
304
- const { onPanMoved } = this.props
305
-
306
- if (this.timer) {
307
- clearTimeout(this.timer)
308
- this.timer = null
309
- }
310
-
311
- //延时0.5秒后更新计划
312
- this.timer = setTimeout(() => {
313
- onPanMoved && onPanMoved(id, time)
314
- }, 500)
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
315
205
  }
316
206
 
317
- //获取时间分钟
318
- getTimeIntVale(time) {
319
- if (!time) {
320
- return 0
321
- }
322
-
323
- let timeArray = time.split(':')
324
- let hourTime = timeArray[0]
325
- let mineTime = timeArray[1]
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.id}
239
+ leftValeu={leftValeu}
240
+ topValue={topValue}
241
+ imageSource={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
+ }
326
249
 
327
- return parseInt(hourTime) * 60 + parseInt(mineTime)
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
328
303
  }
329
304
 
330
- //拼接时间
331
- createFormTime(totalMinutes) {
332
- let hoursTime = parseInt((totalMinutes / 60).toString()).toString()
333
- if (hoursTime.length < 2) {
334
- hoursTime = '0' + hoursTime
335
- }
336
- let minuteTime = Math.round(totalMinutes % 60).toString()
337
- if (minuteTime.length < 2) {
338
- minuteTime = '0' + minuteTime
339
- }
340
- return hoursTime + ':' + minuteTime
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
+ }
341
321
  }
342
322
 
343
- //判断时间是否合法
344
- checkTimesFormat(newTimeMinutes) {
345
- for (const elem of this.timeIconList) {
346
- const { startTime } = elem
347
- if (startTime === newTimeMinutes) {
348
- continue
349
- }
350
-
351
- let planTimeList = startTime.split(':')
352
- let newTimeList = newTimeMinutes.split(':')
323
+ return { ret: true }
324
+ }
353
325
 
354
- //转换为分钟
355
- let planMinutes = (parseInt(planTimeList[0]) * 60) + parseInt(planTimeList[1])
356
- let newMinutes = (parseInt(newTimeList[0]) * 60) + parseInt(newTimeList[1])
326
+ getColorTempStringVale(colorTempInt) {
327
+ // 蓝色:80CBFF 黄色:FFCD66
328
+ let limitBottomColor = '#FFCD66'
329
+ let limitTopColor = '#80CBFF'
357
330
 
358
- if (Math.abs(planMinutes - newMinutes) < 15) {
359
- return { ret: false, failMinutes: planMinutes }
360
- }
361
- }
362
-
363
- return { ret: true }
331
+ if (parseInt(colorTempInt) >= 100) {
332
+ return { rgbColor: [128, 203, 255], normalColor: limitTopColor }
364
333
  }
365
334
 
366
- getColorTempStringVale(colorTempInt) {
367
- // 蓝色:80CBFF 黄色:FFCD66
368
- let limitBottomColor = '#FFCD66'
369
- let limitTopColor = '#80CBFF'
370
-
371
- if (parseInt(colorTempInt) >= 100) {
372
- return { rgbColor: [128, 203, 255], normalColor: limitTopColor }
373
- }
374
-
375
- if (parseInt(colorTempInt) <= 0) {
376
- return { rgbColor: [255, 205, 102], normalColor: limitBottomColor }
377
- }
335
+ if (parseInt(colorTempInt) <= 0) {
336
+ return { rgbColor: [255, 205, 102], normalColor: limitBottomColor }
337
+ }
378
338
 
379
- let redStat = parseInt('FF', 16)
380
- let redEnd = parseInt('80', 16)
381
- let redStep = Math.round(redStat + ((redEnd - redStat) / 100) * colorTempInt)
339
+ let redStat = parseInt('FF', 16)
340
+ let redEnd = parseInt('80', 16)
341
+ let redStep = Math.round(redStat + ((redEnd - redStat) / 100) * colorTempInt)
382
342
 
383
- let gStart = parseInt('CD', 16)
384
- let gEnd = parseInt('CB', 16)
385
- let gStep = Math.round(gStart + ((gEnd - gStart) / 100) * colorTempInt)
343
+ let gStart = parseInt('CD', 16)
344
+ let gEnd = parseInt('CB', 16)
345
+ let gStep = Math.round(gStart + ((gEnd - gStart) / 100) * colorTempInt)
386
346
 
387
- let bStart = parseInt('66', 16)
388
- let bEnd = parseInt('FF', 16)
389
- let bStep = Math.round(bStart + ((bEnd - bStart) / 100) * colorTempInt)
347
+ let bStart = parseInt('66', 16)
348
+ let bEnd = parseInt('FF', 16)
349
+ let bStep = Math.round(bStart + ((bEnd - bStart) / 100) * colorTempInt)
390
350
 
391
- let colorVale = '#' + redStep.toString(16) + gStep.toString(16) + bStep.toString(16)
392
- // console.log('色温值 -----------> colorVale: ',colorVale);
351
+ let colorVale = '#' + redStep.toString(16) + gStep.toString(16) + bStep.toString(16)
352
+ // console.log('色温值 -----------> colorVale: ',colorVale);
393
353
 
394
- let colorRGBAry = [redStep, gStep, bStep]
395
- return { rgbColor: colorRGBAry, normalColor: colorVale }
396
- }
354
+ let colorRGBAry = [redStep, gStep, bStep]
355
+ return { rgbColor: colorRGBAry, normalColor: colorVale }
356
+ }
397
357
  }
398
358
 
399
359
  const styles = StyleSheet.create({
400
- contentView: {
401
- position: 'absolute',
402
- justifyContent: 'center',
403
- alignItems: 'center',
404
- backgroundColor: '#FFFFFF',
405
- borderRadius: 130,
406
- },
407
- angleView: {
408
- height: 260,
409
- width: 260,
410
- borderRadius: 130,
411
- },
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
+ },
412
372
  })
@@ -1,13 +1,14 @@
1
- import React, {useEffect, useState} from 'react'
1
+ import React from 'react'
2
2
  import {Image, StyleSheet, View} from 'react-native'
3
3
  import Progress from './Progress'
4
4
  import {Plan} from '../BiorhythmBean'
5
- import {getSystemTimeFormat} from '@ledvance/base/src/api/native'
6
5
  import BiologicalRes from '../res/BiologicalRes'
6
+ import { useCreation } from 'ahooks'
7
+ import { useSystemTimeFormate } from '@ledvance/base/src/models/modules/NativePropsSlice'
7
8
 
8
9
  interface TimeCircularProps {
9
10
  planList: Plan[]
10
- onPanMoved?: (id: number, time: string) => void
11
+ onPanMoved?: (id: number, time: number) => void
11
12
  planEdit?: Boolean
12
13
  replaceStatus?: Boolean
13
14
  gradient?: Boolean
@@ -25,22 +26,15 @@ const TimeCircular = (
25
26
  ) => {
26
27
  const {planList, onPanMoved, planEdit, replaceStatus, gradient, isSupportTemperature} = props
27
28
  const styles = dynamicStyleSheet
28
-
29
+ const is24Hour = useSystemTimeFormate()
29
30
  const enabledPlanList = planList.filter(plan => plan.enable)
30
- const [timeDialPic, setTimeDialPic] = useState(BiologicalRes.ic_warning_amber_sun)
31
-
32
- useEffect(() => {
33
- const updateDialPic = async () => {
34
- const is24Hour = await getSystemTimeFormat() === 24
35
- if (is24Hour) {
36
- setTimeDialPic(replaceStatus ? BiologicalRes.ic_warning_amber_sun : BiologicalRes.ic_warning_amber_new)
37
- } else {
38
- setTimeDialPic(replaceStatus ? BiologicalRes.ic_warning_amber_sun_12 : BiologicalRes.ic_warning_amber_new_12)
39
- }
31
+ const timeDialPic = useCreation(() =>{
32
+ if(is24Hour){
33
+ return replaceStatus ? BiologicalRes.ic_warning_amber_sun : BiologicalRes.ic_warning_amber_new
34
+ }else{
35
+ return replaceStatus ? BiologicalRes.ic_warning_amber_sun_12 : BiologicalRes.ic_warning_amber_new_12
40
36
  }
41
-
42
- updateDialPic().then()
43
- }, [replaceStatus])
37
+ }, [is24Hour, replaceStatus])
44
38
 
45
39
  return (
46
40
  <View style={styles.container}>
@@ -51,7 +45,7 @@ const TimeCircular = (
51
45
  planEdit={planEdit}
52
46
  gradient={gradient}
53
47
  isSupportTemperature={isSupportTemperature}
54
- onPanMoved={(id: number, time: string) => {
48
+ onPanMoved={(id: number, time: number) => {
55
49
  onPanMoved && onPanMoved(id, time)
56
50
  }}>
57
51
  <Image source={timeDialPic} style={{width: 172, height: 172}}/>
@@ -18,7 +18,7 @@ import { SceneNodeTransitionMode } from "@ledvance/group-ui-biz-bundle/src/modul
18
18
  import TextField from "@ledvance/base/src/components/TextField";
19
19
  import { useParams } from "@ledvance/base/src/hooks/Hooks";
20
20
  import { WorkMode } from "@ledvance/base/src/utils/interface";
21
- import { getGlobalParamsDp, showDialog } from "@ledvance/base/src/utils/common";
21
+ import { showDialog } from "@ledvance/base/src/utils/common";
22
22
  const cx = Utils.RatioUtils.convertX
23
23
 
24
24
  export interface FlagPageProps {
@@ -28,6 +28,7 @@ export interface FlagPageProps {
28
28
  isCeilingLight?: boolean
29
29
  isSupportTemperature?: boolean
30
30
  isSupportBrightness?: boolean
31
+ switchLedCode: string
31
32
  }
32
33
 
33
34
  const FlagPage = () => {
@@ -35,7 +36,7 @@ const FlagPage = () => {
35
36
  const devInfo = useDeviceInfo()
36
37
  const uaGroupInfo = useUAGroupInfo()
37
38
  const navigation = useNavigation()
38
- const [switch_led] = useGroupDp<boolean>(getGlobalParamsDp('switch_led'))
39
+ const [switch_led] = useGroupDp<boolean>(params.switchLedCode)
39
40
  const [, setWorkMode] = useWorkMode()
40
41
  const [flags, setFlags] = useFlags()
41
42
  const [flagMode, setFlagMode] = useFlagMode()
@@ -4,11 +4,10 @@ import { Utils } from 'tuya-panel-kit';
4
4
  import { saveMoodList, useRgbicWorkMode, useWorkMode } from './MoodActions';
5
5
  import {
6
6
  useDeviceInfo,
7
- useFlagMode,
8
7
  useMoods,
9
8
  useUAGroupInfo,
10
9
  } from '@ledvance/base/src/models/modules/NativePropsSlice';
11
- import { useReactive, useUpdateEffect } from 'ahooks';
10
+ import { useReactive } from 'ahooks';
12
11
  import Strings from '@ledvance/base/src/i18n';
13
12
  import res from '@ledvance/base/src/res';
14
13
  import { FlatList, StyleSheet, View, Platform } from 'react-native';
@@ -23,7 +22,7 @@ import { getRemoteMoodList, useMoodScene } from './MoodActions';
23
22
  import { useParams } from '@ledvance/base/src/hooks/Hooks';
24
23
  import { ui_biz_routerKey } from '../../navigation/Routers'
25
24
  import { cloneDeep } from 'lodash';
26
- import { saveFlagMode } from '../flags/FlagActions';
25
+ import { useFlagMode } from '../flags/FlagActions';
27
26
  import { WorkMode } from '@ledvance/base/src/utils/interface';
28
27
 
29
28
  const cx = Utils.RatioUtils.convertX;
@@ -197,7 +196,6 @@ const MoodPage = () => {
197
196
  if (res.success) {
198
197
  state.originMoods = cloneDeep(newScene);
199
198
  setMoods(cloneDeep(newScene));
200
- updateFlagMode();
201
199
  if ((mode === 'del' && (params.isCeilingLight ?
202
200
  (moodInfo.scene?.mainLamp.id !== checkedMood.mainLamp.id || moodInfo.scene?.secondaryLamp.id !== checkedMood.secondaryLamp.id) :
203
201
  moodInfo.scene?.id !== checkedMood.id)) ||
@@ -206,6 +204,7 @@ const MoodPage = () => {
206
204
  success: true
207
205
  }
208
206
  }
207
+ updateFlagMode();
209
208
  return setMoodInfo({
210
209
  scene: cloneDeep(mood)
211
210
  })
@@ -217,13 +216,6 @@ const MoodPage = () => {
217
216
 
218
217
  const updateFlagMode = () => {
219
218
  if (flagMode?.flagMode) {
220
- saveFlagMode(
221
- uaGroupInfo.tyGroupId.toString(),
222
- JSON.stringify({
223
- flagMode: false,
224
- flagId: undefined,
225
- })
226
- ).then();
227
219
  setFlagMode({
228
220
  flagMode: false,
229
221
  flagId: undefined,