You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.9 KiB
54 lines
1.9 KiB
|
2 weeks ago
|
import { AbilityConstant, ConfigurationConstant, UIAbility, Want } from '@kit.AbilityKit';
|
||
|
|
import { hilog } from '@kit.PerformanceAnalysisKit';
|
||
|
|
import { window } from '@kit.ArkUI';
|
||
|
|
import { TaroHybridManager } from '@hybrid/web-container';
|
||
|
|
|
||
|
|
const DOMAIN = 0x0000;
|
||
|
|
|
||
|
|
export default class EntryAbility extends UIAbility {
|
||
|
|
onCreate(want: Want, launchParam: AbilityConstant.LaunchParam): void {
|
||
|
|
try {
|
||
|
|
this.context.getApplicationContext().setColorMode(ConfigurationConstant.ColorMode.COLOR_MODE_NOT_SET);
|
||
|
|
} catch (err) {
|
||
|
|
hilog.error(DOMAIN, 'testTag', 'Failed to set colorMode. Cause: %{public}s', JSON.stringify(err));
|
||
|
|
}
|
||
|
|
hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onCreate');
|
||
|
|
}
|
||
|
|
|
||
|
|
onDestroy(): void {
|
||
|
|
hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onDestroy');
|
||
|
|
}
|
||
|
|
|
||
|
|
onWindowStageCreate(windowStage: window.WindowStage): void {
|
||
|
|
hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onWindowStageCreate');
|
||
|
|
|
||
|
|
windowStage.loadContent('pages/Index', (err) => {
|
||
|
|
if (err.code) {
|
||
|
|
hilog.error(DOMAIN, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err));
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
hilog.info(DOMAIN, 'testTag', 'Succeeded in loading the content.');
|
||
|
|
const windowClass = windowStage.getMainWindowSync();
|
||
|
|
TaroHybridManager.init({
|
||
|
|
uiAbilityContext: this.context,
|
||
|
|
windowClass: windowClass,
|
||
|
|
rawFileName: 'spa',
|
||
|
|
});
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
onWindowStageDestroy(): void {
|
||
|
|
// Main window is destroyed, release UI related resources
|
||
|
|
hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onWindowStageDestroy');
|
||
|
|
}
|
||
|
|
|
||
|
|
onForeground(): void {
|
||
|
|
// Ability has brought to foreground
|
||
|
|
hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onForeground');
|
||
|
|
}
|
||
|
|
|
||
|
|
onBackground(): void {
|
||
|
|
// Ability has back to background
|
||
|
|
hilog.info(DOMAIN, 'testTag', '%{public}s', 'Ability onBackground');
|
||
|
|
}
|
||
|
|
}
|