@ledvance/ui-biz-bundle 1.1.136 → 1.1.138

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/ui-biz-bundle",
5
5
  "pid": [],
6
6
  "uiid": "",
7
- "version": "1.1.136",
7
+ "version": "1.1.138",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "@ledvance/base": "^1.x",
@@ -23,7 +23,7 @@ const SwitchInching = (props: { theme?: ThemeType }) => {
23
23
  const navigation = useNavigation()
24
24
  const [switchInching, setSwitchInching] = useSwitchInching(params.switchIngCode)
25
25
  const [checkConflict, resolveConflict] = useConflictTask(params.conflictDps, true)
26
- const [countdowns, setCountdowns] = useCountdowns(params.countdownCode || params.channelConfig.map(item => item.countdownCode))
26
+ const [countdowns, setCountdowns] = useCountdowns(params.countdownCode || params.channelConfig?.map(item => item.countdownCode) || [])
27
27
  const timeRef = useRef({
28
28
  minute: '00',
29
29
  second: '00',
@@ -41,23 +41,23 @@ const SwitchInching = (props: { theme?: ThemeType }) => {
41
41
  const updateTime = (minute?: string, second?: string) => {
42
42
  if (minute !== undefined) timeRef.current.minute = minute;
43
43
  if (second !== undefined) timeRef.current.second = second;
44
-
44
+
45
45
  if (!Number(timeRef.current.minute) && Number(timeRef.current.second) < 1) {
46
46
  timeRef.current.second = '01';
47
47
  }
48
-
48
+
49
49
  if (Number(timeRef.current.minute) === 60) {
50
50
  timeRef.current.second = '00';
51
51
  }
52
-
52
+
53
53
  const time = Number(timeRef.current.minute) * 60 + Number(timeRef.current.second);
54
54
  const newSwitchInchingItem = {
55
55
  ...state.switchInchingItem,
56
56
  time
57
57
  };
58
-
58
+
59
59
  updateState({ switchInchingItem: newSwitchInchingItem });
60
-
60
+
61
61
  };
62
62
 
63
63
  const switchInchingItem = useMemo(() => {
@@ -73,8 +73,11 @@ const SwitchInching = (props: { theme?: ThemeType }) => {
73
73
  const saveInchingConfig = async (item: SwitchInchingItem) => {
74
74
  const updatedSwitchInching = [...switchInching];
75
75
  const existingItemIndex = updatedSwitchInching.findIndex(item => item.channel === state.channel);
76
- updatedSwitchInching[existingItemIndex] = item;
77
- console.log('updatedSwitchInching', updatedSwitchInching)
76
+ if (existingItemIndex === -1) {
77
+ updatedSwitchInching.push(item);
78
+ } else {
79
+ updatedSwitchInching[existingItemIndex] = item;
80
+ }
78
81
  await setSwitchInching(updatedSwitchInching)
79
82
  }
80
83
 
@@ -143,18 +146,18 @@ const SwitchInching = (props: { theme?: ThemeType }) => {
143
146
  >
144
147
  <ScrollView nestedScrollEnabled={true}>
145
148
  {params.channelConfig && params.channelConfig.length > 1 && <>
146
- <Segmented
147
- style={{ marginHorizontal: cx(24) }}
148
- options={params.channelConfig.map(item => ({
149
- label: item.channelTitle,
150
- value: item.channel
151
- }))}
152
- value={state.channel}
153
- onChange={v => {
154
- updateState({ channel: Number(v) })
155
- }}
156
- />
157
- <Spacer />
149
+ <Segmented
150
+ style={{ marginHorizontal: cx(24) }}
151
+ options={params.channelConfig.map(item => ({
152
+ label: item.channelTitle,
153
+ value: item.channel
154
+ }))}
155
+ value={state.channel}
156
+ onChange={v => {
157
+ updateState({ channel: Number(v) })
158
+ }}
159
+ />
160
+ <Spacer />
158
161
  </>}
159
162
  <View style={styles.switchContainer}>
160
163
  <View style={styles.switchCardContainer}>
@@ -3,14 +3,15 @@ import { Result } from "@ledvance/base/src/models/modules/Result"
3
3
  import { useDp } from "@ledvance/base/src/models/modules/NativePropsSlice";
4
4
  import { spliceByStep } from '@ledvance/base/src/utils/common';
5
5
  import { Utils } from '@tuya/tuya-panel-lamp-sdk'
6
+ import {useEffect, useState} from "react";
6
7
 
7
8
  const { to16 } = Utils
8
9
  export interface SwitchInchingPageParams {
9
10
  switchIngCode: string
10
11
  countdownCode?: string
11
12
  channelConfig?: {
12
- countdownCode: string
13
- channelTitle: string
13
+ countdownCode: string
14
+ channelTitle: string
14
15
  channel: number
15
16
  }[]
16
17
  conflictDps: {
@@ -31,20 +32,20 @@ export function useCountdowns(countdownCodes: string | string[]): [Record<string
31
32
  const codes = Array.isArray(countdownCodes) ? countdownCodes : [countdownCodes];
32
33
  const countdownValues: Record<string, number> = {};
33
34
  const dpSetters: Record<string, (value: number) => Promise<Result<any>>> = {};
34
-
35
+
35
36
  for (const code of codes) {
36
37
  const [value, setDp] = useDp<number, any>(code);
37
38
  countdownValues[code] = value;
38
39
  dpSetters[code] = setDp;
39
40
  }
40
-
41
+
41
42
  const setCountdown = async (countdownCode: string, value: number) => {
42
43
  if (dpSetters[countdownCode]) {
43
44
  return await dpSetters[countdownCode](value);
44
45
  }
45
46
  return { success: false, msg: 'Countdown code not found' } as Result<any>;
46
47
  };
47
-
48
+
48
49
  return [countdownValues, setCountdown];
49
50
  }
50
51
 
@@ -56,15 +57,19 @@ export const defSwitchInching = [{ enable: false, channel: 0, time: 1 }]
56
57
 
57
58
  export const useSwitchInching = (switchInchingCode: string) => {
58
59
  const [hex, setHex] = useSwitchInchingHex(switchInchingCode)
59
- const switching = hex ? spliceByStep(Buffer.from(hex, 'base64').toString('hex'), 6).map(item => {
60
- const powerInfo = parseInt(`${item.slice(0, 2)}`, 16).toString(2).padStart(8, '0');
61
- const powerBits = powerInfo.split('');
62
- const enable = !!Number(powerBits[powerBits.length - 1]);
63
- // 通道号
64
- const channel = parseInt(powerBits.slice(1, powerBits.length - 1).join(''), 2);
65
- const time = parseInt(item.slice(2, 6), 16)
66
- return { enable, channel, time }
67
- }) : defSwitchInching
60
+ const [value, setValue] = useState(defSwitchInching)
61
+ useEffect(() => {
62
+ const switching = hex ? spliceByStep(Buffer.from(hex, 'base64').toString('hex'), 6).map(item => {
63
+ const powerInfo = parseInt(`${item.slice(0, 2)}`, 16).toString(2).padStart(8, '0');
64
+ const powerBits = powerInfo.split('');
65
+ const enable = !!Number(powerBits[powerBits.length - 1]);
66
+ // 通道号
67
+ const channel = parseInt(powerBits.slice(1, powerBits.length - 1).join(''), 2);
68
+ const time = parseInt(item.slice(2, 6), 16)
69
+ return { enable, channel, time }
70
+ }) : defSwitchInching
71
+ setValue(switching)
72
+ }, [hex]);
68
73
 
69
74
  const setSwitchInching = (switching: SwitchInchingItem[]) => {
70
75
  const inchingString = switching.map(item => {
@@ -75,8 +80,9 @@ export const useSwitchInching = (switchInchingCode: string) => {
75
80
  return powerChannelStr + timeHex
76
81
  }).join('')
77
82
  const inchingHex = Buffer.from(inchingString, 'hex').toString('base64')
83
+ setValue(switching)
78
84
  return setHex(inchingHex)
79
85
  }
80
- return [switching, setSwitchInching] as const
86
+ return [value, setSwitchInching] as const
81
87
  }
82
88