/*
* 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 { Params } from '@ohos/settings.common/src/main/ets/core/controller/Controller';
import { LogUtil } from '@ohos/settings.common/src/main/ets/utils/LogUtil';
const TAG: string = 'AuthorizationContainer';
const BUNDLE_NAME: string = 'com.ohos.parentcontrol';
const ABILITY_NAME: string = 'AuthorizationAbility';
@Builder
export function AuthorizationContainerLoader($$: Params): void {
AuthorizationContainer();
}
@Component
export struct AuthorizationContainer {
@State context: Context = getContext(this);
@State observedData: ObservedData = new ObservedData();
private viewModel: UiExtensionViewModel = new UiExtensionViewModel(this.observedData);
@Consume('pathInfos') pathInfos: NavPathStack;
recoverController: CustomDialogController = new CustomDialogController({
builder: ExitAbnormallyComponent(),
});
build() {
NavDestination() {
UIExtensionComponent({
bundleName: BUNDLE_NAME,
abilityName: ABILITY_NAME,
parameters: {
'ability.want.params.IsNotifyOccupiedAreaChange': true,
'reconnect': this.observedData.reconnect,
}
})
.defaultFocus(true)
.onError((error) => {
LogUtil.info(`${TAG} UIExtensionComponent onError code: ${error?.code} message: ${error?.message}`);
this.viewModel.refreshing(error, this.recoverController, BUNDLE_NAME, ABILITY_NAME);
})
.onTerminated(()=>{})
.onReceive((data) => {
let result: string = data['authorizationResult'] as string;
this.pathInfos.pop(result);
})
.expandSafeArea([SafeAreaType.SYSTEM], [SafeAreaEdge.BOTTOM, SafeAreaEdge.TOP])
.backgroundColor($r('app.color.transparent'))
.width('100%')
.height('100%')
}
.backgroundColor($r('app.color.transparent'))
.hideTitleBar(true)
.mode(NavDestinationMode.DIALOG)
}
aboutToAppear(): void {
LogUtil.info(`${TAG} aboutToAppear`);
this.viewModel.listening(this.recoverController);
}
aboutToDisappear(): void {
LogUtil.info(`${TAG} aboutToDisappear`);
this.viewModel.destroyListening();
}
}