<template>
<MkContainer :style="`height: ${props.height}px;`" :show-header="props.showHeader" :scrollable="true">
	<template #header><Fa :icon="faBell"/>{{ $ts.notifications }}</template>
	<template #func><button @click="configure()" class="_button"><Fa :icon="faCog"/></button></template>

	<div>
		<XNotifications :include-types="props.includingTypes"/>
	</div>
</MkContainer>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
import { faBell, faCog } from '@fortawesome/free-solid-svg-icons';
import MkContainer from '@client/components/ui/container.vue';
import XNotifications from '@client/components/notifications.vue';
import define from './define';
import * as os from '@client/os';

const widget = define({
	name: 'notifications',
	props: () => ({
		showHeader: {
			type: 'boolean',
			default: true,
		},
		height: {
			type: 'number',
			default: 300,
		},
		includingTypes: {
			type: 'array',
			hidden: true,
			default: null,
		},
	})
});

export default defineComponent({
	extends: widget,

	components: {
		MkContainer,
		XNotifications,
	},

	data() {
		return {
			faBell, faCog
		};
	},

	methods: {
		configure() {
			os.popup(import('@client/components/notification-setting-window.vue'), {
				includingTypes: this.props.includingTypes,
			}, {
				done: async (res) => {
					const { includingTypes } = res;
					this.props.includingTypes = includingTypes;
					this.save();
				}
			}, 'closed');
		}
	}
});
</script>