2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer :content-max="800">
|
2023-01-06 04:40:17 +00:00
|
|
|
<MkPagination v-slot="{items}" :pagination="pagination" class="ruryvtyk _gaps_m">
|
2023-01-06 00:41:14 +00:00
|
|
|
<section v-for="(announcement, i) in items" :key="announcement.id" class="announcement _panel">
|
|
|
|
<div class="header"><span v-if="$i && !announcement.isRead">🆕 </span>{{ announcement.title }}</div>
|
|
|
|
<div class="content">
|
2022-06-20 08:38:49 +00:00
|
|
|
<Mfm :text="announcement.text"/>
|
|
|
|
<img v-if="announcement.imageUrl" :src="announcement.imageUrl"/>
|
|
|
|
</div>
|
2023-01-06 00:41:14 +00:00
|
|
|
<div v-if="$i && !announcement.isRead" class="footer">
|
2022-12-19 10:01:30 +00:00
|
|
|
<MkButton primary @click="read(items, announcement, i)"><i class="ti ti-check"></i> {{ $ts.gotIt }}</MkButton>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</MkPagination>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkPagination from '@/components/MkPagination.vue';
|
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2023-04-01 04:52:07 +00:00
|
|
|
import { $i } from '@/account';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const pagination = {
|
|
|
|
endpoint: 'announcements' as const,
|
|
|
|
limit: 10,
|
|
|
|
};
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
// TODO: これは実質的に親コンポーネントから子コンポーネントのプロパティを変更してるのでなんとかしたい
|
|
|
|
function read(items, announcement, i) {
|
|
|
|
items[i] = {
|
|
|
|
...announcement,
|
|
|
|
isRead: true,
|
|
|
|
};
|
|
|
|
os.api('i/read-announcement', { announcementId: announcement.id });
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.announcements,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-speakerphone',
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-01-29 19:37:25 +00:00
|
|
|
.ruryvtyk {
|
|
|
|
> .announcement {
|
2023-01-07 10:57:48 +00:00
|
|
|
padding: 16px;
|
|
|
|
|
2023-01-06 00:41:14 +00:00
|
|
|
> .header {
|
2023-01-07 10:57:48 +00:00
|
|
|
margin-bottom: 16px;
|
2023-01-06 00:41:14 +00:00
|
|
|
font-weight: bold;
|
2021-10-24 15:13:54 +00:00
|
|
|
}
|
|
|
|
|
2023-01-06 00:41:14 +00:00
|
|
|
> .content {
|
2020-01-29 19:37:25 +00:00
|
|
|
> img {
|
|
|
|
display: block;
|
|
|
|
max-height: 300px;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2023-01-06 00:41:14 +00:00
|
|
|
|
|
|
|
> .footer {
|
2023-01-07 10:57:48 +00:00
|
|
|
margin-top: 16px;
|
2023-01-06 00:41:14 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|