2019-04-28 19:11:57 -05:00
|
|
|
<template>
|
2021-11-19 04:36:12 -06:00
|
|
|
<div v-if="hpml" class="iroscrza" :class="{ center: page.alignCenter, serif: page.font === 'serif' }">
|
|
|
|
<XBlock v-for="child in page.content" :key="child.id" :block="child" :hpml="hpml" :h="2"/>
|
2019-04-28 19:11:57 -05:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-01-29 19:59:05 -06:00
|
|
|
import { defineComponent, onMounted, nextTick, onUnmounted, PropType } from 'vue';
|
2019-04-28 19:11:57 -05:00
|
|
|
import XBlock from './page.block.vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
import { Hpml } from '@/scripts/hpml/evaluator';
|
|
|
|
import { url } from '@/config';
|
|
|
|
import { $i } from '@/account';
|
|
|
|
import { defaultStore } from '@/store';
|
2019-04-28 19:11:57 -05:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
export default defineComponent({
|
2019-04-28 19:11:57 -05:00
|
|
|
components: {
|
2022-12-22 01:01:59 -06:00
|
|
|
XBlock,
|
2019-04-28 19:11:57 -05:00
|
|
|
},
|
|
|
|
props: {
|
2019-07-06 16:56:13 -05:00
|
|
|
page: {
|
2021-01-29 19:59:05 -06:00
|
|
|
type: Object as PropType<Record<string, any>>,
|
2022-12-22 01:01:59 -06:00
|
|
|
required: true,
|
2019-04-28 19:11:57 -05:00
|
|
|
},
|
|
|
|
},
|
2021-01-29 19:59:05 -06:00
|
|
|
setup(props, ctx) {
|
|
|
|
const hpml = new Hpml(props.page, {
|
2019-07-06 16:56:13 -05:00
|
|
|
randomSeed: Math.random(),
|
2021-01-29 19:59:05 -06:00
|
|
|
visitor: $i,
|
2020-04-13 09:46:53 -05:00
|
|
|
url: url,
|
2019-07-06 16:56:13 -05:00
|
|
|
});
|
2019-04-28 19:11:57 -05:00
|
|
|
|
2021-01-29 19:59:05 -06:00
|
|
|
onMounted(() => {
|
|
|
|
nextTick(() => {
|
2023-01-03 00:51:49 -06:00
|
|
|
hpml.eval();
|
2021-01-29 19:59:05 -06:00
|
|
|
});
|
2020-04-15 10:39:21 -05:00
|
|
|
});
|
|
|
|
|
2021-01-29 19:59:05 -06:00
|
|
|
return {
|
|
|
|
hpml,
|
|
|
|
};
|
2020-04-13 09:46:53 -05:00
|
|
|
},
|
2019-04-28 19:11:57 -05:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2022-12-27 03:29:39 -06:00
|
|
|
<style lang="scss" scoped>
|
2020-01-29 13:37:25 -06:00
|
|
|
.iroscrza {
|
|
|
|
&.serif {
|
|
|
|
> div {
|
|
|
|
font-family: serif;
|
|
|
|
}
|
|
|
|
}
|
2019-04-28 19:11:57 -05:00
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
&.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
2019-04-28 19:11:57 -05:00
|
|
|
</style>
|