/*
* Copyright (c) Huawei Technologies Co., Ltd. 2024-2025. All rights reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { ObservedData, UiExtensionViewModel } from '@ohos/settings.common/src/main/ets/viewmodel/UiExtensionViewModel';
import { ExitAbnormallyComponent } from '@ohos/settings.common/src/main/ets/viewmodel/ExitAbnormallyComponent';
import { PushParam } from '@ohos/settings.common/src/main/ets/core/controller/Controller';
import { LogUtil } from '@ohos/settings.common/src/main/ets/utils/LogUtil';
import { PageStartModeManager } from '@ohos/settings.common/src/main/ets/window/PageStartModeManager';
/* instrument ignore file */
const TAG: string = 'SuperDevice : ';
const BUNDLE_NAME: string = 'com.ohos.superdevice';
const ABILITY_NAME: string = 'SuperDeviceSettingUI';
@Component
export struct SuperDevice {
uiExtensionProxy?: UIExtensionProxy;
@Consume('pathInfos') pathInfos: NavPathStack;
@State params: PushParam | null = null;
@State observedData: ObservedData = new ObservedData();
private viewModel: UiExtensionViewModel = new UiExtensionViewModel(this.observedData);
recoverController: CustomDialogController = new CustomDialogController({
builder: ExitAbnormallyComponent(),
});
build() {
NavDestination() {
UIExtensionComponent({
bundleName: BUNDLE_NAME,
abilityName: ABILITY_NAME,
parameters: {
'ability.want.params.uiExtensionType': 'sys/commonUI',
'pushParams': this.params?.config as string,
'startReason': this.params?.startReason ?? PageStartModeManager.getInstance().getStartReason(),
'reconnect': this.observedData.reconnect,
},
},
{
windowModeFollowStrategy: WindowModeFollowStrategy.FOLLOW_HOST_WINDOW_MODE
}
)
.defaultFocus(true)
.onRemoteReady((proxy) => {
this.uiExtensionProxy = proxy;
})
.onError((error) => {
LogUtil.error(`${TAG} UIExtensionComponent onError code: ${error?.code} message: ${error?.message}`);
this.viewModel.refreshing(error, this.recoverController, BUNDLE_NAME, ABILITY_NAME);
})
.onTerminated(() => {
})
.onReceive((data) => {
LogUtil.info(`${TAG} UIExtensionComponent onReceive`);
if (data) {
if (data['action'] === 'pop') {
this.pathInfos.pop();
LogUtil.info(`${TAG} pop`);
}
}
})
.size({ width: '100%', height: '100%' })
.expandSafeArea([SafeAreaType.SYSTEM], [SafeAreaEdge.BOTTOM, SafeAreaEdge.TOP])
}
.hideTitleBar(true)
.backgroundColor($r('sys.color.ohos_id_color_sub_background'))
.onShown(() => {
LogUtil.info(`${TAG} NavDestination onShown`);
})
.onHidden(() => {
LogUtil.info(`${TAG} NavDestination onHidden`);
})
.padding({
left: this.observedData.left, right: this.observedData.right
})
}
aboutToAppear(): void {
LogUtil.info(`${TAG} aboutToAppear`);
this.viewModel.listening(this.recoverController);
}
aboutToDisappear(): void {
LogUtil.info(`${TAG} aboutToDisappear`);
this.viewModel.destroyListening();
}
}