@ledvance/ui-biz-bundle 1.1.67 → 1.1.69
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/.babelrc +31 -31
- package/.eslintignore +5 -5
- package/.eslintrc.js +27 -27
- package/.prettierrc.js +1 -1
- package/.versionrc +5 -5
- package/package.json +74 -74
- package/rn-cli.config.js +8 -8
- package/src/hooks/DeviceDpStateHooks.d.ts +14 -14
- package/src/hooks/DeviceDpStateHooks.ts +50 -50
- package/src/modules/biorhythm/BiorhythmActions.d.ts +8 -8
- package/src/modules/biorhythm/BiorhythmActions.ts +324 -324
- package/src/modules/biorhythm/BiorhythmBean.d.ts +58 -58
- package/src/modules/biorhythm/BiorhythmBean.ts +230 -230
- package/src/modules/biorhythm/BiorhythmEditPage.d.ts +14 -14
- package/src/modules/biorhythm/BiorhythmEditPage.tsx +324 -324
- package/src/modules/biorhythm/BiorhythmPage.d.ts +10 -10
- package/src/modules/biorhythm/BiorhythmPage.tsx +796 -796
- package/src/modules/biorhythm/IconSelect.d.ts +2 -2
- package/src/modules/biorhythm/IconSelect.tsx +81 -81
- package/src/modules/biorhythm/Router.ts +34 -34
- package/src/modules/biorhythm/circular/ItemIcon.d.ts +22 -22
- package/src/modules/biorhythm/circular/ItemIcon.tsx +172 -172
- package/src/modules/biorhythm/circular/Progress.d.ts +24 -24
- package/src/modules/biorhythm/circular/Progress.tsx +411 -411
- package/src/modules/biorhythm/circular/TimeCircular.d.ts +11 -11
- package/src/modules/biorhythm/circular/TimeCircular.tsx +70 -70
- package/src/modules/biorhythm/iconListData.d.ts +7 -7
- package/src/modules/biorhythm/iconListData.ts +29 -29
- package/src/modules/biorhythm/pIdList.d.ts +2 -2
- package/src/modules/biorhythm/pIdList.ts +35 -35
- package/src/modules/biorhythm/res/BiologicalRes.d.ts +43 -43
- package/src/modules/biorhythm/res/BiologicalRes.ts +41 -41
- package/src/modules/config/ldvConfig.d.ts +2 -2
- package/src/modules/config/ldvConfig.tsx +18 -18
- package/src/modules/fixedTime/FixedTimeActions.ts +173 -173
- package/src/modules/fixedTime/FixedTimeDetailPage.tsx +372 -372
- package/src/modules/fixedTime/FixedTimePage.tsx +213 -213
- package/src/modules/fixedTime/Router.ts +26 -26
- package/src/modules/flags/FlagActions.ts +267 -267
- package/src/modules/flags/FlagEditPage.tsx +441 -441
- package/src/modules/flags/FlagInfo.tsx +563 -563
- package/src/modules/flags/FlagItem.tsx +90 -90
- package/src/modules/flags/FlagPage.tsx +277 -277
- package/src/modules/flags/Router.ts +25 -25
- package/src/modules/history/HistoryPage.d.ts +2 -2
- package/src/modules/history/HistoryPage.tsx +261 -261
- package/src/modules/history/Router.ts +16 -16
- package/src/modules/history/SwitchHistoryPageActions.d.ts +14 -14
- package/src/modules/history/SwitchHistoryPageActions.ts +76 -76
- package/src/modules/mood/AddMoodPage.d.ts +10 -10
- package/src/modules/mood/AddMoodPage.tsx +792 -792
- package/src/modules/mood/DynamicMoodEditorPage.d.ts +6 -6
- package/src/modules/mood/DynamicMoodEditorPage.tsx +561 -561
- package/src/modules/mood/FantasyMood.tsx +176 -176
- package/src/modules/mood/FantasyMoodEditPage.tsx +582 -582
- package/src/modules/mood/FantasyMoodItem.tsx +104 -104
- package/src/modules/mood/FantasyRouter.ts +35 -35
- package/src/modules/mood/MixMood/AddMixMoodPage.tsx +247 -247
- package/src/modules/mood/MixMood/MixMoodActions.ts +128 -128
- package/src/modules/mood/MixMood/MixMoodEditPage.tsx +721 -721
- package/src/modules/mood/MixMood/MixMoodItem.tsx +134 -134
- package/src/modules/mood/MixMood/MixMoodPage.tsx +326 -326
- package/src/modules/mood/MixMood/MixSceneBeans.ts +364 -364
- package/src/modules/mood/MixMood/RecommendMixMoodItem.tsx +69 -69
- package/src/modules/mood/MixMood/Router.ts +44 -44
- package/src/modules/mood/MoodItem.d.ts +11 -11
- package/src/modules/mood/MoodItem.tsx +114 -114
- package/src/modules/mood/MoodPage.d.ts +16 -16
- package/src/modules/mood/MoodPage.tsx +296 -296
- package/src/modules/mood/RecommendMoodItem.d.ts +13 -13
- package/src/modules/mood/RecommendMoodItem.tsx +74 -74
- package/src/modules/mood/Router.ts +53 -53
- package/src/modules/mood/StaticMoodEditorPage.d.ts +16 -16
- package/src/modules/mood/StaticMoodEditorPage.tsx +320 -320
- package/src/modules/mood/tools.d.ts +3 -3
- package/src/modules/mood/tools.ts +11 -11
- package/src/modules/music/MusicDataBean.d.ts +47 -47
- package/src/modules/music/MusicDataBean.ts +167 -167
- package/src/modules/music/MusicManager.d.ts +27 -27
- package/src/modules/music/MusicManager.ts +207 -207
- package/src/modules/music/MusicPage.d.ts +10 -10
- package/src/modules/music/MusicPage.tsx +347 -347
- package/src/modules/music/MusicPageActions.d.ts +35 -35
- package/src/modules/music/MusicPageActions.ts +317 -317
- package/src/modules/music/Router.ts +16 -16
- package/src/modules/music/SelecetGenre.d.ts +7 -7
- package/src/modules/music/SelecetGenre.tsx +63 -63
- package/src/modules/music/color.d.ts +2 -2
- package/src/modules/music/color.ts +73 -73
- package/src/modules/music/res/index.d.ts +10 -10
- package/src/modules/music/res/index.ts +9 -9
- package/src/modules/powerOnBehavior/PowerOnBehaviorActions.ts +11 -11
- package/src/modules/powerOnBehavior/PowerOnBehaviorPage.tsx +173 -173
- package/src/modules/powerOnBehavior/Router.ts +16 -16
- package/src/modules/randomTime/RandomTimeActions.ts +160 -160
- package/src/modules/randomTime/RandomTimeDetailPage.tsx +337 -337
- package/src/modules/randomTime/RandomTimePage.tsx +214 -214
- package/src/modules/randomTime/Router.ts +25 -25
- package/src/modules/randomTime/Summary.tsx +122 -122
- package/src/modules/scene/SceneAction.d.ts +13 -13
- package/src/modules/scene/SceneAction.ts +473 -473
- package/src/modules/scene/SceneDetailPage.d.ts +1 -1
- package/src/modules/scene/SceneDetailPage.tsx +421 -421
- package/src/modules/scene/SceneInfo.d.ts +72 -72
- package/src/modules/scene/SceneInfo.ts +1059 -1059
- package/src/modules/scene/ScenePage.d.ts +7 -7
- package/src/modules/scene/ScenePage.tsx +147 -147
- package/src/modules/select/SelectPage.d.ts +12 -12
- package/src/modules/select/SelectPage.tsx +137 -137
- package/src/modules/sleepWakeup/DeviceState.d.ts +9 -9
- package/src/modules/sleepWakeup/DeviceState.tsx +99 -99
- package/src/modules/sleepWakeup/LdvScheduleItem.d.ts +15 -15
- package/src/modules/sleepWakeup/LdvScheduleItem.tsx +176 -176
- package/src/modules/sleepWakeup/Router.ts +25 -25
- package/src/modules/sleepWakeup/SleepWakeUpActions.d.ts +2 -2
- package/src/modules/sleepWakeup/SleepWakeUpActions.ts +180 -180
- package/src/modules/sleepWakeup/SleepWakeUpDetailPage.d.ts +2 -2
- package/src/modules/sleepWakeup/SleepWakeUpDetailPage.tsx +616 -616
- package/src/modules/sleepWakeup/SleepWakeUpPage.d.ts +13 -13
- package/src/modules/sleepWakeup/SleepWakeUpPage.tsx +424 -424
- package/src/modules/sleepWakeup/utils.d.ts +44 -44
- package/src/modules/sleepWakeup/utils.ts +253 -253
- package/src/modules/timeSchedule/DeviceState.d.ts +17 -17
- package/src/modules/timeSchedule/DeviceState.tsx +94 -94
- package/src/modules/timeSchedule/LdvScheduleItem.d.ts +15 -15
- package/src/modules/timeSchedule/LdvScheduleItem.tsx +130 -130
- package/src/modules/timeSchedule/ManualSetting.d.ts +14 -14
- package/src/modules/timeSchedule/ManualSetting.tsx +219 -219
- package/src/modules/timeSchedule/MoodSetting.d.ts +11 -11
- package/src/modules/timeSchedule/MoodSetting.tsx +228 -228
- package/src/modules/timeSchedule/Router.ts +25 -25
- package/src/modules/timeSchedule/ScheduleScene.d.ts +6 -6
- package/src/modules/timeSchedule/ScheduleScene.tsx +144 -144
- package/src/modules/timeSchedule/SingleLightView.d.ts +12 -12
- package/src/modules/timeSchedule/SingleLightView.tsx +175 -175
- package/src/modules/timeSchedule/TimeScheduleBean.d.ts +14 -14
- package/src/modules/timeSchedule/TimeScheduleBean.ts +18 -18
- package/src/modules/timeSchedule/TimeScheduleEditpage.d.ts +6 -6
- package/src/modules/timeSchedule/TimeScheduleEditpage.tsx +765 -765
- package/src/modules/timeSchedule/TimeSchedulePage.d.ts +13 -13
- package/src/modules/timeSchedule/TimeSchedulePage.tsx +358 -358
- package/src/modules/timeSchedule/components/ColorList.ts +23 -23
- package/src/modules/timeSchedule/components/LampSwitchCard.tsx +106 -106
- package/src/modules/timeSchedule/mix/MixLightActions.d.ts +3 -3
- package/src/modules/timeSchedule/mix/MixLightActions.ts +49 -49
- package/src/modules/timeSchedule/mix/MixLightBean.d.ts +10 -10
- package/src/modules/timeSchedule/mix/MixLightBean.ts +9 -9
- package/src/modules/timeSchedule/mix/MixLightView.d.ts +7 -7
- package/src/modules/timeSchedule/mix/MixLightView.tsx +197 -197
- package/src/modules/timeSchedule/utils.d.ts +1 -1
- package/src/modules/timeSchedule/utils.ts +6 -6
- package/src/modules/timer/Router.ts +16 -16
- package/src/modules/timer/TimerPage.d.ts +11 -11
- package/src/modules/timer/TimerPage.tsx +384 -384
- package/src/modules/timer/TimerPageAction.d.ts +22 -22
- package/src/modules/timer/TimerPageAction.ts +131 -131
- package/src/navigation/Routers.d.ts +15 -15
- package/src/navigation/Routers.ts +46 -44
- package/src/navigation/tools.d.ts +9 -9
- package/src/navigation/tools.ts +21 -21
- package/src/newModules/biorhythm/BiorhythmActions.ts +374 -374
- package/src/newModules/biorhythm/BiorhythmBean.ts +230 -230
- package/src/newModules/biorhythm/BiorhythmEditPage.tsx +267 -267
- package/src/newModules/biorhythm/BiorhythmPage.tsx +642 -642
- package/src/newModules/biorhythm/IconSelect.tsx +84 -84
- package/src/newModules/biorhythm/Router.ts +33 -33
- package/src/newModules/biorhythm/circular/ItemIcon.d.ts +22 -22
- package/src/newModules/biorhythm/circular/ItemIcon.tsx +172 -172
- package/src/newModules/biorhythm/circular/Progress.d.ts +24 -24
- package/src/newModules/biorhythm/circular/Progress.tsx +371 -371
- package/src/newModules/biorhythm/circular/TimeCircular.d.ts +11 -11
- package/src/newModules/biorhythm/circular/TimeCircular.tsx +64 -64
- package/src/newModules/biorhythm/iconListData.ts +29 -29
- package/src/newModules/biorhythm/pIdList.ts +35 -35
- package/src/newModules/biorhythm/res/BiologicalRes.d.ts +43 -43
- package/src/newModules/biorhythm/res/BiologicalRes.ts +41 -41
- package/src/newModules/childLock/ChildLockPage.tsx +97 -97
- package/src/newModules/childLock/Router.ts +16 -16
- package/src/newModules/energyConsumption/EnergyConsumptionActions.ts +23 -23
- package/src/newModules/energyConsumption/EnergyConsumptionChart.tsx +84 -84
- package/src/newModules/energyConsumption/EnergyConsumptionDetail.tsx +322 -322
- package/src/newModules/energyConsumption/EnergyConsumptionPage.tsx +393 -393
- package/src/newModules/energyConsumption/Router.ts +34 -34
- package/src/newModules/energyConsumption/co2Data.ts +23655 -23655
- package/src/newModules/energyConsumption/component/BarChart.tsx +93 -93
- package/src/newModules/energyConsumption/component/EnergyModal.tsx +284 -284
- package/src/newModules/energyConsumption/component/Overview.tsx +118 -118
- package/src/newModules/fixedTime/FixedTimeActions.ts +241 -241
- package/src/newModules/fixedTime/FixedTimeDetailPage.tsx +345 -345
- package/src/newModules/fixedTime/FixedTimePage.tsx +302 -302
- package/src/newModules/fixedTime/Router.ts +25 -25
- package/src/newModules/lightMode/LightModePage.tsx +204 -204
- package/src/newModules/lightMode/Router.ts +16 -16
- package/src/newModules/mood/AddMoodPage.tsx +194 -194
- package/src/newModules/mood/DynamicMoodEditorPage.tsx +650 -650
- package/src/newModules/mood/Interface.ts +220 -220
- package/src/newModules/mood/MixDynamicMoodEditor.tsx +786 -786
- package/src/newModules/mood/MoodActions.ts +232 -232
- package/src/newModules/mood/MoodInfo.ts +2151 -2151
- package/src/newModules/mood/MoodItem.tsx +160 -160
- package/src/newModules/mood/MoodPage.tsx +386 -386
- package/src/newModules/mood/MoodParse.ts +443 -443
- package/src/newModules/mood/RecommendMoodItem.tsx +81 -81
- package/src/newModules/mood/Router.ts +43 -43
- package/src/newModules/mood/StaticMoodEditorPage.tsx +290 -290
- package/src/newModules/overchargeSwitch/OverchargeSwitchPage.tsx +96 -96
- package/src/newModules/overchargeSwitch/Router.ts +16 -16
- package/src/newModules/powerOnBehavior/LightBehaviorPage.tsx +266 -266
- package/src/newModules/powerOnBehavior/PlugBehaviorPage.tsx +173 -173
- package/src/newModules/powerOnBehavior/PowerOnBehaviorActions.ts +106 -106
- package/src/newModules/powerOnBehavior/Router.ts +27 -27
- package/src/newModules/randomTime/RandomTimeActions.ts +238 -238
- package/src/newModules/randomTime/RandomTimeDetailPage.tsx +325 -325
- package/src/newModules/randomTime/RandomTimePage.tsx +299 -299
- package/src/newModules/randomTime/Router.ts +25 -25
- package/src/newModules/randomTime/Summary.tsx +116 -116
- package/src/newModules/remoteControl/RemoteControlActions.ts +5 -5
- package/src/newModules/remoteControl/RemoteControlPage.tsx +51 -51
- package/src/newModules/remoteControl/Router.ts +15 -15
- package/src/newModules/select/Route.ts +16 -16
- package/src/newModules/select/SelectPage.d.ts +12 -12
- package/src/newModules/select/SelectPage.tsx +137 -137
- package/src/newModules/sleepWakeUp/Interface.ts +69 -69
- package/src/newModules/sleepWakeUp/Router.ts +24 -24
- package/src/newModules/sleepWakeUp/SleepWakeUpActions.ts +317 -317
- package/src/newModules/sleepWakeUp/SleepWakeUpDetailPage.tsx +661 -661
- package/src/newModules/sleepWakeUp/SleepWakeUpPage.tsx +455 -455
- package/src/newModules/sleepWakeUp/utils.ts +253 -253
- package/src/newModules/swithInching/Router.ts +16 -16
- package/src/newModules/swithInching/SwithInching.tsx +231 -231
- package/src/newModules/swithInching/SwithInchingAction.ts +55 -55
- package/src/newModules/swithInching/pickerView.tsx +91 -91
- package/src/newModules/timeSchedule/Interface.ts +142 -142
- package/src/newModules/timeSchedule/Router.ts +25 -25
- package/src/newModules/timeSchedule/TimeScheduleActions.ts +53 -53
- package/src/newModules/timeSchedule/TimeScheduleDetailPage.tsx +648 -648
- package/src/newModules/timeSchedule/TimeSchedulePage.tsx +253 -253
- package/src/newModules/timeSchedule/components/ManuaSettings.tsx +460 -460
- package/src/newModules/timeSchedule/components/ScheduleCard.tsx +125 -125
- package/tsconfig.json +50 -50
|
@@ -1,348 +1,348 @@
|
|
|
1
|
-
import React, { useCallback, useEffect } from 'react'
|
|
2
|
-
import { StyleSheet, View, Text, Image } from 'react-native'
|
|
3
|
-
import { useRoute, useNavigation } from '@react-navigation/core'
|
|
4
|
-
import Page from '@ledvance/base/src/components/Page'
|
|
5
|
-
import { useDeviceId, useDeviceInfo } from '@ledvance/base/src/models/modules/NativePropsSlice'
|
|
6
|
-
import Strings from '@ledvance/base/src/i18n'
|
|
7
|
-
import Img from './res'
|
|
8
|
-
import { useEnable, useWorkMode, useMixRgbcw, useMixScene, useMusicData, useDreamMusic, DreamLightMicMusicData, getRemoteDreamMusic, DreamLightMicMusicUIState, saveRemoteDreamMusic } from './MusicPageActions'
|
|
9
|
-
import { useReactive, useUpdateEffect } from 'ahooks'
|
|
10
|
-
import { NativeApi } from '@ledvance/base/src/api/native'
|
|
11
|
-
import { AppleMusicDataType, musicDefalutDatasource, musicTabs } from './MusicDataBean'
|
|
12
|
-
import { Dialog, SwitchButton, TabBar, Utils } from 'tuya-panel-kit'
|
|
13
|
-
import * as MusicManager from './MusicManager'
|
|
14
|
-
import { JudgeTimeScheduleProps } from "../timeSchedule/TimeScheduleBean"
|
|
15
|
-
import Spacer from '@ledvance/base/src/components/Spacer'
|
|
16
|
-
import LdvSlider from '@ledvance/base/src/components/ldvSlider'
|
|
17
|
-
import TextFieldStyleButton from '@ledvance/base/src/components/TextFieldStyleButton'
|
|
18
|
-
import { SelectPageParams } from '@ledvance/ui-biz-bundle/src/modules/select/SelectPage'
|
|
19
|
-
import { ui_biz_routerKey } from '@ledvance/ui-biz-bundle/src/navigation/Routers'
|
|
20
|
-
import { cloneDeep } from 'lodash'
|
|
21
|
-
const { convertX: cx } = Utils.RatioUtils
|
|
22
|
-
|
|
23
|
-
export interface MusicPageRouterParams extends JudgeTimeScheduleProps {
|
|
24
|
-
switch_led: string
|
|
25
|
-
work_mode: string
|
|
26
|
-
mix_rgbcw: string
|
|
27
|
-
mix_light_scene: string
|
|
28
|
-
music_data: string
|
|
29
|
-
dreamMusicDp?: string
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
const MusicPage = () => {
|
|
33
|
-
const deviceInfo = useDeviceInfo()
|
|
34
|
-
const deviceId = useDeviceId()
|
|
35
|
-
const navigation = useNavigation()
|
|
36
|
-
const props = useRoute().params as MusicPageRouterParams
|
|
37
|
-
const [workMode, setWorkMode] = useWorkMode(props.work_mode)
|
|
38
|
-
const [mixLight] = useMixRgbcw(props.mix_rgbcw, props.switch_led)
|
|
39
|
-
const [, setMixScene] = useMixScene(props.mix_light_scene, props.work_mode)
|
|
40
|
-
const [, setMusicData] = useMusicData(props.music_data)
|
|
41
|
-
const [dreamMusic, setDreamMusic] = props.dreamMusicDp ? useDreamMusic(props.dreamMusicDp) : []
|
|
42
|
-
const [switchLed, setSwitchLed] = useEnable(props.switch_led)
|
|
43
|
-
|
|
44
|
-
const state = useReactive({
|
|
45
|
-
musicEnable: false,
|
|
46
|
-
musicType: props.dreamMusicDp ? 0 : 1, // 0 设备麦克风, 1 手机麦克风
|
|
47
|
-
isColourExist: true,
|
|
48
|
-
isTempExist: true,
|
|
49
|
-
deviceGenreMode: dreamMusic ? dreamMusic.id : 0,
|
|
50
|
-
phoneGenreMode: 0,
|
|
51
|
-
genreMode: 0,
|
|
52
|
-
currentMusic: cloneDeep(dreamMusic) as DreamLightMicMusicData,
|
|
53
|
-
musicModeData: [] as DreamLightMicMusicUIState[],
|
|
54
|
-
musicSelect: 0
|
|
55
|
-
})
|
|
56
|
-
|
|
57
|
-
useEffect(() => {
|
|
58
|
-
if (props.dreamMusicDp) {
|
|
59
|
-
getRemoteDreamMusic(deviceId).then(res => {
|
|
60
|
-
if (res.success) {
|
|
61
|
-
state.musicModeData = res.data
|
|
62
|
-
}
|
|
63
|
-
})
|
|
64
|
-
}
|
|
65
|
-
}, [])
|
|
66
|
-
|
|
67
|
-
useUpdateEffect(() => {
|
|
68
|
-
// 设备麦克风
|
|
69
|
-
if (!state.musicEnable) return
|
|
70
|
-
if (props.dreamMusicDp && state.musicType === 0) {
|
|
71
|
-
openMusic()
|
|
72
|
-
} else {
|
|
73
|
-
changeMusic(state.phoneGenreMode)
|
|
74
|
-
}
|
|
75
|
-
}, [state.deviceGenreMode, state.phoneGenreMode, state.musicModeData])
|
|
76
|
-
|
|
77
|
-
useUpdateEffect(() => {
|
|
78
|
-
if (!state.musicEnable) return
|
|
79
|
-
if (state.musicType === 0) MusicManager.close()
|
|
80
|
-
openMusic()
|
|
81
|
-
}, [state.musicType])
|
|
82
|
-
|
|
83
|
-
const updateRemoteDreamMusic = useCallback(() => {
|
|
84
|
-
const newMusicData = cloneDeep(state.musicModeData).map(music => {
|
|
85
|
-
return music.id === state.currentMusic.id ? {
|
|
86
|
-
...state.currentMusic,
|
|
87
|
-
title: music.title
|
|
88
|
-
} : music
|
|
89
|
-
})
|
|
90
|
-
setDreamMusic && setDreamMusic({
|
|
91
|
-
...state.currentMusic,
|
|
92
|
-
power: true
|
|
93
|
-
}, {}).then()
|
|
94
|
-
saveRemoteDreamMusic(deviceId, newMusicData).then()
|
|
95
|
-
}, [state.currentMusic, state.musicModeData])
|
|
96
|
-
|
|
97
|
-
const openMusic = useCallback(async () => {
|
|
98
|
-
if (workMode !== 'music') {
|
|
99
|
-
savePreWorkmode().then()
|
|
100
|
-
}
|
|
101
|
-
const extraDp = {}
|
|
102
|
-
if (!switchLed) extraDp[props.switch_led] = true
|
|
103
|
-
if (workMode !== 'music') extraDp[props.work_mode] = 'music'
|
|
104
|
-
if (props.dreamMusicDp && state.musicType === 0) {
|
|
105
|
-
setDreamMusic && setDreamMusic({
|
|
106
|
-
...state.currentMusic,
|
|
107
|
-
power: true
|
|
108
|
-
}, extraDp).then()
|
|
109
|
-
} else {
|
|
110
|
-
if (workMode !== 'music') await setWorkMode('music')
|
|
111
|
-
if (!switchLed) setSwitchLed(true)
|
|
112
|
-
await MusicManager.open(
|
|
113
|
-
musicDefalutDatasource[state.phoneGenreMode],
|
|
114
|
-
() => { },
|
|
115
|
-
(data) => {
|
|
116
|
-
putMusicDataFn(data, {})
|
|
117
|
-
},
|
|
118
|
-
{ isColourExist: true, isTempExist: true }
|
|
119
|
-
)
|
|
120
|
-
}
|
|
121
|
-
}, [state.musicType, state.phoneGenreMode, props.dreamMusicDp, state.currentMusic, switchLed, workMode])
|
|
122
|
-
|
|
123
|
-
const closeMusic = useCallback(async () => {
|
|
124
|
-
await MusicManager.close()
|
|
125
|
-
const res: any = await NativeApi.getJson(deviceId, 'musicPreWorkMode')
|
|
126
|
-
const workMode = res?.data && JSON.parse(res?.data)?.workMode
|
|
127
|
-
if (state.musicType === 1) {
|
|
128
|
-
if (props.isMixRGBWLamp) {
|
|
129
|
-
const mixRes: any = await NativeApi.getJson(deviceId, 'musicPreMixLight')
|
|
130
|
-
const getLight = mixRes?.data && JSON.parse(mixRes?.data)?.mixLight
|
|
131
|
-
await setMixScene({
|
|
132
|
-
version: 0,
|
|
133
|
-
id: 0,
|
|
134
|
-
lamps: [
|
|
135
|
-
{
|
|
136
|
-
enable: getLight?.whiteLightSwitch,
|
|
137
|
-
nodes: [{
|
|
138
|
-
brightness: getLight?.brightness,
|
|
139
|
-
changeTime: 0,
|
|
140
|
-
changeType: 0,
|
|
141
|
-
colorTemp: getLight?.colorTempPercent,
|
|
142
|
-
intervalTime: 0,
|
|
143
|
-
hue: 0,
|
|
144
|
-
sat: 0,
|
|
145
|
-
lightness: 0
|
|
146
|
-
}],
|
|
147
|
-
type: 2
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
enable: getLight?.colorLightSwitch,
|
|
151
|
-
nodes: [{
|
|
152
|
-
intervalTime: 0,
|
|
153
|
-
changeTime: 0,
|
|
154
|
-
changeType: 0,
|
|
155
|
-
hue: getLight?.hue,
|
|
156
|
-
sat: getLight?.sat,
|
|
157
|
-
lightness: getLight?.lightness,
|
|
158
|
-
brightness: 0,
|
|
159
|
-
colorTemp: 0,
|
|
160
|
-
}],
|
|
161
|
-
type: 3
|
|
162
|
-
},
|
|
163
|
-
]
|
|
164
|
-
})
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
await setWorkMode(workMode)
|
|
168
|
-
}, [state.musicType])
|
|
169
|
-
|
|
170
|
-
const saveSelect = async (id: string | number) => {
|
|
171
|
-
await NativeApi.putJson(deviceId, 'musicSelect', JSON.stringify({ type: id, musicType: state.musicType }));
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
const savePreWorkmode = async () => {
|
|
175
|
-
await NativeApi.putJson(deviceId, 'musicPreWorkMode', JSON.stringify({ workMode }));
|
|
176
|
-
if (props.isMixRGBWLamp) {
|
|
177
|
-
await NativeApi.putJson(deviceId, 'musicPreMixLight', JSON.stringify({ mixLight }));
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
const getSelect = async () => {
|
|
182
|
-
const res: any = await NativeApi.getJson(deviceId, 'musicSelect')
|
|
183
|
-
const type = res?.data ? (JSON.parse(res?.data)?.type || 0) : 0
|
|
184
|
-
state.musicType = res?.data ? JSON.parse(res?.data)?.musicType : props.dreamMusicDp ? 0 : 1
|
|
185
|
-
state.phoneGenreMode = musicDefalutDatasource[type]?.id
|
|
186
|
-
state.musicEnable = workMode === 'music' && !!switchLed
|
|
187
|
-
if (type !== '' && state.musicType === 1 && state.musicEnable) {
|
|
188
|
-
openMusic()
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
const changeMusic = async (id: number) => {
|
|
193
|
-
console.log(id, '< --- id')
|
|
194
|
-
if (workMode !== 'music') await setWorkMode('music')
|
|
195
|
-
if (!switchLed) setSwitchLed(true)
|
|
196
|
-
await saveSelect(id)
|
|
197
|
-
await MusicManager.close()
|
|
198
|
-
await MusicManager.open(
|
|
199
|
-
musicDefalutDatasource[id],
|
|
200
|
-
(_: AppleMusicDataType) => {
|
|
201
|
-
},
|
|
202
|
-
(data) => {
|
|
203
|
-
putMusicDataFn(data, {})
|
|
204
|
-
},
|
|
205
|
-
{ isColourExist: true, isTempExist: true }
|
|
206
|
-
)
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
const putMusicDataFn = (data: any, extraDp = {}) => {
|
|
210
|
-
console.log(data, '< --- data')
|
|
211
|
-
setMusicData(data, extraDp).then()
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
useEffect(() => {
|
|
215
|
-
getSelect().then()
|
|
216
|
-
}, [])
|
|
217
|
-
|
|
218
|
-
const getSelectModeData = useCallback((): [string | undefined, any[]] => {
|
|
219
|
-
const genreModeData = props.dreamMusicDp && state.musicType === 0 ? state.musicModeData : musicDefalutDatasource
|
|
220
|
-
const genreMode = props.dreamMusicDp && state.musicType === 0 ? state.deviceGenreMode : state.phoneGenreMode
|
|
221
|
-
const title = genreModeData.find(mode => mode.id === genreMode)?.title
|
|
222
|
-
const selectModeData = genreModeData.map(music => {
|
|
223
|
-
return {
|
|
224
|
-
text: music.title,
|
|
225
|
-
selected: music.id === genreMode,
|
|
226
|
-
value: music.id,
|
|
227
|
-
}
|
|
228
|
-
})
|
|
229
|
-
return [title, selectModeData]
|
|
230
|
-
}, [state.deviceGenreMode, state.phoneGenreMode, state.musicModeData, state.musicType, props.dreamMusicDp])
|
|
231
|
-
|
|
232
|
-
return (
|
|
233
|
-
<Page
|
|
234
|
-
backText={deviceInfo.name}
|
|
235
|
-
headlineText={Strings.getLang('devicemusic_headline_text')}
|
|
236
|
-
>
|
|
237
|
-
<View style={styles.content}>
|
|
238
|
-
<SwitchButton
|
|
239
|
-
style={styles.headSwitch}
|
|
240
|
-
value={state.musicEnable}
|
|
241
|
-
thumbStyle={{ elevation: 0 }}
|
|
242
|
-
onValueChange={async v => {
|
|
243
|
-
if (!switchLed && v) {
|
|
244
|
-
Dialog.confirm({
|
|
245
|
-
title: Strings.getLang('feature_activate_dialog_text'),
|
|
246
|
-
subTitle: Strings.getLang('music_reactivate_dialog_text'),
|
|
247
|
-
cancelText: Strings.getLang('cancel_dialog_delete_item_sleepschedule_answer_no_text'),
|
|
248
|
-
confirmText: Strings.getLang('cancel_dialog_delete_item_sleepschedule_answer_yes_text'),
|
|
249
|
-
onConfirm: async (_, { close }) => {
|
|
250
|
-
close()
|
|
251
|
-
state.musicEnable = v
|
|
252
|
-
await openMusic()
|
|
253
|
-
},
|
|
254
|
-
})
|
|
255
|
-
} else {
|
|
256
|
-
state.musicEnable = v
|
|
257
|
-
if (v) {
|
|
258
|
-
await openMusic()
|
|
259
|
-
} else {
|
|
260
|
-
await closeMusic()
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
}} />
|
|
264
|
-
{props.dreamMusicDp && <TabBar
|
|
265
|
-
type='radio'
|
|
266
|
-
tabs={musicTabs}
|
|
267
|
-
style={{ borderRadius: cx(8), backgroundColor: '#f6f6f6', height: cx(36) }}
|
|
268
|
-
tabTextStyle={{ color: '#000' }}
|
|
269
|
-
tabActiveTextStyle={{ color: '#000', fontWeight: 'bold' }}
|
|
270
|
-
activeKey={state.musicType}
|
|
271
|
-
onChange={async (v) => {
|
|
272
|
-
state.musicType = Number(v)
|
|
273
|
-
await saveSelect(state.phoneGenreMode)
|
|
274
|
-
}}
|
|
275
|
-
/>}
|
|
276
|
-
<Spacer />
|
|
277
|
-
<Text style={styles.tiptext}>{Strings.getLang(state.musicType === 0 ? 'devicemusic_devicemic_description_text' : 'devicemusic_description_text')}</Text>
|
|
278
|
-
<View style={{ alignItems: 'center', marginVertical: cx(38) }}>
|
|
279
|
-
<Image
|
|
280
|
-
style={{ width: cx(200), height: cx(204) }}
|
|
281
|
-
source={state.musicEnable ? Img.app_music_center_on : Img.app_music_center_off}
|
|
282
|
-
resizeMode="contain"
|
|
283
|
-
/>
|
|
284
|
-
</View>
|
|
285
|
-
{
|
|
286
|
-
state.musicEnable &&
|
|
287
|
-
<>
|
|
288
|
-
{props.dreamMusicDp && state.musicType === 0 &&
|
|
289
|
-
<LdvSlider
|
|
290
|
-
title={Strings.getLang('devicemusic_switch_tab_device_sensitivity')}
|
|
291
|
-
value={state.currentMusic?.sensitivity || 50}
|
|
292
|
-
min={1}
|
|
293
|
-
max={100}
|
|
294
|
-
onValueChange={() => { }}
|
|
295
|
-
onSlidingComplete={(v: number) => {
|
|
296
|
-
if (state.currentMusic) {
|
|
297
|
-
state.currentMusic.sensitivity = v
|
|
298
|
-
updateRemoteDreamMusic()
|
|
299
|
-
}
|
|
300
|
-
}}
|
|
301
|
-
subTitleStr={''} />
|
|
302
|
-
}
|
|
303
|
-
<TextFieldStyleButton
|
|
304
|
-
text={getSelectModeData()[0] || Strings.getLang('devicemusic_music_text')}
|
|
305
|
-
placeholder={Strings.getLang('devicemusic_subheadline_text')}
|
|
306
|
-
onPress={() => {
|
|
307
|
-
const paramsSelect: SelectPageParams<number> = {
|
|
308
|
-
title: Strings.getLang('devicemusic_subheadline_text'),
|
|
309
|
-
data: getSelectModeData()[1],
|
|
310
|
-
onSelect: selectPageData => {
|
|
311
|
-
if (props.dreamMusicDp && state.musicType === 0) {
|
|
312
|
-
state.deviceGenreMode = selectPageData.value
|
|
313
|
-
state.currentMusic = state.musicModeData.find(music => music.id === selectPageData.value) as DreamLightMicMusicData
|
|
314
|
-
} else {
|
|
315
|
-
state.phoneGenreMode = selectPageData.value
|
|
316
|
-
}
|
|
317
|
-
},
|
|
318
|
-
}
|
|
319
|
-
navigation.navigate(ui_biz_routerKey.ui_biz_select_page, paramsSelect)
|
|
320
|
-
}}
|
|
321
|
-
/>
|
|
322
|
-
</>
|
|
323
|
-
}
|
|
324
|
-
</View>
|
|
325
|
-
</Page>
|
|
326
|
-
)
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
const styles = StyleSheet.create({
|
|
330
|
-
content: {
|
|
331
|
-
flex: 1,
|
|
332
|
-
marginHorizontal: cx(18)
|
|
333
|
-
},
|
|
334
|
-
headSwitch: {
|
|
335
|
-
position: 'absolute',
|
|
336
|
-
right: 0,
|
|
337
|
-
top: - cx(40),
|
|
338
|
-
zIndex: 2,
|
|
339
|
-
marginBottom: cx(24)
|
|
340
|
-
},
|
|
341
|
-
tiptext: {
|
|
342
|
-
color: '#000',
|
|
343
|
-
fontSize: cx(14),
|
|
344
|
-
lineHeight: cx(14),
|
|
345
|
-
}
|
|
346
|
-
})
|
|
347
|
-
|
|
1
|
+
import React, { useCallback, useEffect } from 'react'
|
|
2
|
+
import { StyleSheet, View, Text, Image } from 'react-native'
|
|
3
|
+
import { useRoute, useNavigation } from '@react-navigation/core'
|
|
4
|
+
import Page from '@ledvance/base/src/components/Page'
|
|
5
|
+
import { useDeviceId, useDeviceInfo } from '@ledvance/base/src/models/modules/NativePropsSlice'
|
|
6
|
+
import Strings from '@ledvance/base/src/i18n'
|
|
7
|
+
import Img from './res'
|
|
8
|
+
import { useEnable, useWorkMode, useMixRgbcw, useMixScene, useMusicData, useDreamMusic, DreamLightMicMusicData, getRemoteDreamMusic, DreamLightMicMusicUIState, saveRemoteDreamMusic } from './MusicPageActions'
|
|
9
|
+
import { useReactive, useUpdateEffect } from 'ahooks'
|
|
10
|
+
import { NativeApi } from '@ledvance/base/src/api/native'
|
|
11
|
+
import { AppleMusicDataType, musicDefalutDatasource, musicTabs } from './MusicDataBean'
|
|
12
|
+
import { Dialog, SwitchButton, TabBar, Utils } from 'tuya-panel-kit'
|
|
13
|
+
import * as MusicManager from './MusicManager'
|
|
14
|
+
import { JudgeTimeScheduleProps } from "../timeSchedule/TimeScheduleBean"
|
|
15
|
+
import Spacer from '@ledvance/base/src/components/Spacer'
|
|
16
|
+
import LdvSlider from '@ledvance/base/src/components/ldvSlider'
|
|
17
|
+
import TextFieldStyleButton from '@ledvance/base/src/components/TextFieldStyleButton'
|
|
18
|
+
import { SelectPageParams } from '@ledvance/ui-biz-bundle/src/modules/select/SelectPage'
|
|
19
|
+
import { ui_biz_routerKey } from '@ledvance/ui-biz-bundle/src/navigation/Routers'
|
|
20
|
+
import { cloneDeep } from 'lodash'
|
|
21
|
+
const { convertX: cx } = Utils.RatioUtils
|
|
22
|
+
|
|
23
|
+
export interface MusicPageRouterParams extends JudgeTimeScheduleProps {
|
|
24
|
+
switch_led: string
|
|
25
|
+
work_mode: string
|
|
26
|
+
mix_rgbcw: string
|
|
27
|
+
mix_light_scene: string
|
|
28
|
+
music_data: string
|
|
29
|
+
dreamMusicDp?: string
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
const MusicPage = () => {
|
|
33
|
+
const deviceInfo = useDeviceInfo()
|
|
34
|
+
const deviceId = useDeviceId()
|
|
35
|
+
const navigation = useNavigation()
|
|
36
|
+
const props = useRoute().params as MusicPageRouterParams
|
|
37
|
+
const [workMode, setWorkMode] = useWorkMode(props.work_mode)
|
|
38
|
+
const [mixLight] = useMixRgbcw(props.mix_rgbcw, props.switch_led)
|
|
39
|
+
const [, setMixScene] = useMixScene(props.mix_light_scene, props.work_mode)
|
|
40
|
+
const [, setMusicData] = useMusicData(props.music_data)
|
|
41
|
+
const [dreamMusic, setDreamMusic] = props.dreamMusicDp ? useDreamMusic(props.dreamMusicDp) : []
|
|
42
|
+
const [switchLed, setSwitchLed] = useEnable(props.switch_led)
|
|
43
|
+
|
|
44
|
+
const state = useReactive({
|
|
45
|
+
musicEnable: false,
|
|
46
|
+
musicType: props.dreamMusicDp ? 0 : 1, // 0 设备麦克风, 1 手机麦克风
|
|
47
|
+
isColourExist: true,
|
|
48
|
+
isTempExist: true,
|
|
49
|
+
deviceGenreMode: dreamMusic ? dreamMusic.id : 0,
|
|
50
|
+
phoneGenreMode: 0,
|
|
51
|
+
genreMode: 0,
|
|
52
|
+
currentMusic: cloneDeep(dreamMusic) as DreamLightMicMusicData,
|
|
53
|
+
musicModeData: [] as DreamLightMicMusicUIState[],
|
|
54
|
+
musicSelect: 0
|
|
55
|
+
})
|
|
56
|
+
|
|
57
|
+
useEffect(() => {
|
|
58
|
+
if (props.dreamMusicDp) {
|
|
59
|
+
getRemoteDreamMusic(deviceId).then(res => {
|
|
60
|
+
if (res.success) {
|
|
61
|
+
state.musicModeData = res.data
|
|
62
|
+
}
|
|
63
|
+
})
|
|
64
|
+
}
|
|
65
|
+
}, [])
|
|
66
|
+
|
|
67
|
+
useUpdateEffect(() => {
|
|
68
|
+
// 设备麦克风
|
|
69
|
+
if (!state.musicEnable) return
|
|
70
|
+
if (props.dreamMusicDp && state.musicType === 0) {
|
|
71
|
+
openMusic()
|
|
72
|
+
} else {
|
|
73
|
+
changeMusic(state.phoneGenreMode)
|
|
74
|
+
}
|
|
75
|
+
}, [state.deviceGenreMode, state.phoneGenreMode, state.musicModeData])
|
|
76
|
+
|
|
77
|
+
useUpdateEffect(() => {
|
|
78
|
+
if (!state.musicEnable) return
|
|
79
|
+
if (state.musicType === 0) MusicManager.close()
|
|
80
|
+
openMusic()
|
|
81
|
+
}, [state.musicType])
|
|
82
|
+
|
|
83
|
+
const updateRemoteDreamMusic = useCallback(() => {
|
|
84
|
+
const newMusicData = cloneDeep(state.musicModeData).map(music => {
|
|
85
|
+
return music.id === state.currentMusic.id ? {
|
|
86
|
+
...state.currentMusic,
|
|
87
|
+
title: music.title
|
|
88
|
+
} : music
|
|
89
|
+
})
|
|
90
|
+
setDreamMusic && setDreamMusic({
|
|
91
|
+
...state.currentMusic,
|
|
92
|
+
power: true
|
|
93
|
+
}, {}).then()
|
|
94
|
+
saveRemoteDreamMusic(deviceId, newMusicData).then()
|
|
95
|
+
}, [state.currentMusic, state.musicModeData])
|
|
96
|
+
|
|
97
|
+
const openMusic = useCallback(async () => {
|
|
98
|
+
if (workMode !== 'music') {
|
|
99
|
+
savePreWorkmode().then()
|
|
100
|
+
}
|
|
101
|
+
const extraDp = {}
|
|
102
|
+
if (!switchLed) extraDp[props.switch_led] = true
|
|
103
|
+
if (workMode !== 'music') extraDp[props.work_mode] = 'music'
|
|
104
|
+
if (props.dreamMusicDp && state.musicType === 0) {
|
|
105
|
+
setDreamMusic && setDreamMusic({
|
|
106
|
+
...state.currentMusic,
|
|
107
|
+
power: true
|
|
108
|
+
}, extraDp).then()
|
|
109
|
+
} else {
|
|
110
|
+
if (workMode !== 'music') await setWorkMode('music')
|
|
111
|
+
if (!switchLed) setSwitchLed(true)
|
|
112
|
+
await MusicManager.open(
|
|
113
|
+
musicDefalutDatasource[state.phoneGenreMode],
|
|
114
|
+
() => { },
|
|
115
|
+
(data) => {
|
|
116
|
+
putMusicDataFn(data, {})
|
|
117
|
+
},
|
|
118
|
+
{ isColourExist: true, isTempExist: true }
|
|
119
|
+
)
|
|
120
|
+
}
|
|
121
|
+
}, [state.musicType, state.phoneGenreMode, props.dreamMusicDp, state.currentMusic, switchLed, workMode])
|
|
122
|
+
|
|
123
|
+
const closeMusic = useCallback(async () => {
|
|
124
|
+
await MusicManager.close()
|
|
125
|
+
const res: any = await NativeApi.getJson(deviceId, 'musicPreWorkMode')
|
|
126
|
+
const workMode = res?.data && JSON.parse(res?.data)?.workMode
|
|
127
|
+
if (state.musicType === 1) {
|
|
128
|
+
if (props.isMixRGBWLamp) {
|
|
129
|
+
const mixRes: any = await NativeApi.getJson(deviceId, 'musicPreMixLight')
|
|
130
|
+
const getLight = mixRes?.data && JSON.parse(mixRes?.data)?.mixLight
|
|
131
|
+
await setMixScene({
|
|
132
|
+
version: 0,
|
|
133
|
+
id: 0,
|
|
134
|
+
lamps: [
|
|
135
|
+
{
|
|
136
|
+
enable: getLight?.whiteLightSwitch,
|
|
137
|
+
nodes: [{
|
|
138
|
+
brightness: getLight?.brightness,
|
|
139
|
+
changeTime: 0,
|
|
140
|
+
changeType: 0,
|
|
141
|
+
colorTemp: getLight?.colorTempPercent,
|
|
142
|
+
intervalTime: 0,
|
|
143
|
+
hue: 0,
|
|
144
|
+
sat: 0,
|
|
145
|
+
lightness: 0
|
|
146
|
+
}],
|
|
147
|
+
type: 2
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
enable: getLight?.colorLightSwitch,
|
|
151
|
+
nodes: [{
|
|
152
|
+
intervalTime: 0,
|
|
153
|
+
changeTime: 0,
|
|
154
|
+
changeType: 0,
|
|
155
|
+
hue: getLight?.hue,
|
|
156
|
+
sat: getLight?.sat,
|
|
157
|
+
lightness: getLight?.lightness,
|
|
158
|
+
brightness: 0,
|
|
159
|
+
colorTemp: 0,
|
|
160
|
+
}],
|
|
161
|
+
type: 3
|
|
162
|
+
},
|
|
163
|
+
]
|
|
164
|
+
})
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
await setWorkMode(workMode)
|
|
168
|
+
}, [state.musicType])
|
|
169
|
+
|
|
170
|
+
const saveSelect = async (id: string | number) => {
|
|
171
|
+
await NativeApi.putJson(deviceId, 'musicSelect', JSON.stringify({ type: id, musicType: state.musicType }));
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
const savePreWorkmode = async () => {
|
|
175
|
+
await NativeApi.putJson(deviceId, 'musicPreWorkMode', JSON.stringify({ workMode }));
|
|
176
|
+
if (props.isMixRGBWLamp) {
|
|
177
|
+
await NativeApi.putJson(deviceId, 'musicPreMixLight', JSON.stringify({ mixLight }));
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
const getSelect = async () => {
|
|
182
|
+
const res: any = await NativeApi.getJson(deviceId, 'musicSelect')
|
|
183
|
+
const type = res?.data ? (JSON.parse(res?.data)?.type || 0) : 0
|
|
184
|
+
state.musicType = res?.data ? JSON.parse(res?.data)?.musicType : props.dreamMusicDp ? 0 : 1
|
|
185
|
+
state.phoneGenreMode = musicDefalutDatasource[type]?.id
|
|
186
|
+
state.musicEnable = workMode === 'music' && !!switchLed
|
|
187
|
+
if (type !== '' && state.musicType === 1 && state.musicEnable) {
|
|
188
|
+
openMusic()
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
const changeMusic = async (id: number) => {
|
|
193
|
+
console.log(id, '< --- id')
|
|
194
|
+
if (workMode !== 'music') await setWorkMode('music')
|
|
195
|
+
if (!switchLed) setSwitchLed(true)
|
|
196
|
+
await saveSelect(id)
|
|
197
|
+
await MusicManager.close()
|
|
198
|
+
await MusicManager.open(
|
|
199
|
+
musicDefalutDatasource[id],
|
|
200
|
+
(_: AppleMusicDataType) => {
|
|
201
|
+
},
|
|
202
|
+
(data) => {
|
|
203
|
+
putMusicDataFn(data, {})
|
|
204
|
+
},
|
|
205
|
+
{ isColourExist: true, isTempExist: true }
|
|
206
|
+
)
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
const putMusicDataFn = (data: any, extraDp = {}) => {
|
|
210
|
+
console.log(data, '< --- data')
|
|
211
|
+
setMusicData(data, extraDp).then()
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
useEffect(() => {
|
|
215
|
+
getSelect().then()
|
|
216
|
+
}, [])
|
|
217
|
+
|
|
218
|
+
const getSelectModeData = useCallback((): [string | undefined, any[]] => {
|
|
219
|
+
const genreModeData = props.dreamMusicDp && state.musicType === 0 ? state.musicModeData : musicDefalutDatasource
|
|
220
|
+
const genreMode = props.dreamMusicDp && state.musicType === 0 ? state.deviceGenreMode : state.phoneGenreMode
|
|
221
|
+
const title = genreModeData.find(mode => mode.id === genreMode)?.title
|
|
222
|
+
const selectModeData = genreModeData.map(music => {
|
|
223
|
+
return {
|
|
224
|
+
text: music.title,
|
|
225
|
+
selected: music.id === genreMode,
|
|
226
|
+
value: music.id,
|
|
227
|
+
}
|
|
228
|
+
})
|
|
229
|
+
return [title, selectModeData]
|
|
230
|
+
}, [state.deviceGenreMode, state.phoneGenreMode, state.musicModeData, state.musicType, props.dreamMusicDp])
|
|
231
|
+
|
|
232
|
+
return (
|
|
233
|
+
<Page
|
|
234
|
+
backText={deviceInfo.name}
|
|
235
|
+
headlineText={Strings.getLang('devicemusic_headline_text')}
|
|
236
|
+
>
|
|
237
|
+
<View style={styles.content}>
|
|
238
|
+
<SwitchButton
|
|
239
|
+
style={styles.headSwitch}
|
|
240
|
+
value={state.musicEnable}
|
|
241
|
+
thumbStyle={{ elevation: 0 }}
|
|
242
|
+
onValueChange={async v => {
|
|
243
|
+
if (!switchLed && v) {
|
|
244
|
+
Dialog.confirm({
|
|
245
|
+
title: Strings.getLang('feature_activate_dialog_text'),
|
|
246
|
+
subTitle: Strings.getLang('music_reactivate_dialog_text'),
|
|
247
|
+
cancelText: Strings.getLang('cancel_dialog_delete_item_sleepschedule_answer_no_text'),
|
|
248
|
+
confirmText: Strings.getLang('cancel_dialog_delete_item_sleepschedule_answer_yes_text'),
|
|
249
|
+
onConfirm: async (_, { close }) => {
|
|
250
|
+
close()
|
|
251
|
+
state.musicEnable = v
|
|
252
|
+
await openMusic()
|
|
253
|
+
},
|
|
254
|
+
})
|
|
255
|
+
} else {
|
|
256
|
+
state.musicEnable = v
|
|
257
|
+
if (v) {
|
|
258
|
+
await openMusic()
|
|
259
|
+
} else {
|
|
260
|
+
await closeMusic()
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
}} />
|
|
264
|
+
{props.dreamMusicDp && <TabBar
|
|
265
|
+
type='radio'
|
|
266
|
+
tabs={musicTabs}
|
|
267
|
+
style={{ borderRadius: cx(8), backgroundColor: '#f6f6f6', height: cx(36) }}
|
|
268
|
+
tabTextStyle={{ color: '#000' }}
|
|
269
|
+
tabActiveTextStyle={{ color: '#000', fontWeight: 'bold' }}
|
|
270
|
+
activeKey={state.musicType}
|
|
271
|
+
onChange={async (v) => {
|
|
272
|
+
state.musicType = Number(v)
|
|
273
|
+
await saveSelect(state.phoneGenreMode)
|
|
274
|
+
}}
|
|
275
|
+
/>}
|
|
276
|
+
<Spacer />
|
|
277
|
+
<Text style={styles.tiptext}>{Strings.getLang(state.musicType === 0 ? 'devicemusic_devicemic_description_text' : 'devicemusic_description_text')}</Text>
|
|
278
|
+
<View style={{ alignItems: 'center', marginVertical: cx(38) }}>
|
|
279
|
+
<Image
|
|
280
|
+
style={{ width: cx(200), height: cx(204) }}
|
|
281
|
+
source={state.musicEnable ? Img.app_music_center_on : Img.app_music_center_off}
|
|
282
|
+
resizeMode="contain"
|
|
283
|
+
/>
|
|
284
|
+
</View>
|
|
285
|
+
{
|
|
286
|
+
state.musicEnable &&
|
|
287
|
+
<>
|
|
288
|
+
{props.dreamMusicDp && state.musicType === 0 &&
|
|
289
|
+
<LdvSlider
|
|
290
|
+
title={Strings.getLang('devicemusic_switch_tab_device_sensitivity')}
|
|
291
|
+
value={state.currentMusic?.sensitivity || 50}
|
|
292
|
+
min={1}
|
|
293
|
+
max={100}
|
|
294
|
+
onValueChange={() => { }}
|
|
295
|
+
onSlidingComplete={(v: number) => {
|
|
296
|
+
if (state.currentMusic) {
|
|
297
|
+
state.currentMusic.sensitivity = v
|
|
298
|
+
updateRemoteDreamMusic()
|
|
299
|
+
}
|
|
300
|
+
}}
|
|
301
|
+
subTitleStr={''} />
|
|
302
|
+
}
|
|
303
|
+
<TextFieldStyleButton
|
|
304
|
+
text={getSelectModeData()[0] || Strings.getLang('devicemusic_music_text')}
|
|
305
|
+
placeholder={Strings.getLang('devicemusic_subheadline_text')}
|
|
306
|
+
onPress={() => {
|
|
307
|
+
const paramsSelect: SelectPageParams<number> = {
|
|
308
|
+
title: Strings.getLang('devicemusic_subheadline_text'),
|
|
309
|
+
data: getSelectModeData()[1],
|
|
310
|
+
onSelect: selectPageData => {
|
|
311
|
+
if (props.dreamMusicDp && state.musicType === 0) {
|
|
312
|
+
state.deviceGenreMode = selectPageData.value
|
|
313
|
+
state.currentMusic = state.musicModeData.find(music => music.id === selectPageData.value) as DreamLightMicMusicData
|
|
314
|
+
} else {
|
|
315
|
+
state.phoneGenreMode = selectPageData.value
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
}
|
|
319
|
+
navigation.navigate(ui_biz_routerKey.ui_biz_select_page, paramsSelect)
|
|
320
|
+
}}
|
|
321
|
+
/>
|
|
322
|
+
</>
|
|
323
|
+
}
|
|
324
|
+
</View>
|
|
325
|
+
</Page>
|
|
326
|
+
)
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
const styles = StyleSheet.create({
|
|
330
|
+
content: {
|
|
331
|
+
flex: 1,
|
|
332
|
+
marginHorizontal: cx(18)
|
|
333
|
+
},
|
|
334
|
+
headSwitch: {
|
|
335
|
+
position: 'absolute',
|
|
336
|
+
right: 0,
|
|
337
|
+
top: - cx(40),
|
|
338
|
+
zIndex: 2,
|
|
339
|
+
marginBottom: cx(24)
|
|
340
|
+
},
|
|
341
|
+
tiptext: {
|
|
342
|
+
color: '#000',
|
|
343
|
+
fontSize: cx(14),
|
|
344
|
+
lineHeight: cx(14),
|
|
345
|
+
}
|
|
346
|
+
})
|
|
347
|
+
|
|
348
348
|
export default MusicPage
|