<template>
<div class="iroscrza" :class="{ center: page.alignCenter, serif: page.font === 'serif' }" v-if="hpml">
	<XBlock v-for="child in page.content" :block="child" :hpml="hpml" :key="child.id" :h="2"/>
</div>
</template>

<script lang="ts">
import { defineComponent, onMounted, nextTick, onUnmounted, PropType } from 'vue';
import { parse } from '@syuilo/aiscript';
import XBlock from './page.block.vue';
import { Hpml } from '@client/scripts/hpml/evaluator';
import { url } from '@client/config';
import { $i } from '@client/account';
import { defaultStore } from '@client/store';

export default defineComponent({
	components: {
		XBlock
	},
	props: {
		page: {
			type: Object as PropType<Record<string, any>>,
			required: true
		},
	},
	setup(props, ctx) {

		const hpml = new Hpml(props.page, {
			randomSeed: Math.random(),
			visitor: $i,
			url: url,
			enableAiScript: !defaultStore.state.disablePagesScript
		});

		onMounted(() => {
			nextTick(() => {
				if (props.page.script && hpml.aiscript) {
					let ast;
					try {
						ast = parse(props.page.script);
					} catch (e) {
						console.error(e);
						/*os.dialog({
							type: 'error',
							text: 'Syntax error :('
						});*/
						return;
					}
					hpml.aiscript.exec(ast).then(() => {
						hpml.eval();
					}).catch(e => {
						console.error(e);
						/*os.dialog({
							type: 'error',
							text: e
						});*/
					});
				} else {
					hpml.eval();
				}
			});
			onUnmounted(() => {
				if (hpml.aiscript) hpml.aiscript.abort();
			});
		});

		return {
			hpml,
		};
	},
});
</script>

<style lang="scss" scoped>
.iroscrza {
	&.serif {
		> div {
			font-family: serif;
		}
	}

	&.center {
		text-align: center;
	}
}
</style>