2023-07-27 14:31:52 +09:00
|
|
|
<!--
|
2024-02-14 00:59:27 +09:00
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 14:31:52 +09:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-12-31 00:22:20 +09:00
|
|
|
<template>
|
2023-01-15 09:14:17 +09:00
|
|
|
<div v-if="meta" :class="$style.root" :style="{ backgroundImage: `url(${ meta.backgroundImageUrl })` }"></div>
|
2020-12-31 00:22:20 +09:00
|
|
|
</template>
|
|
|
|
|
2022-01-18 23:06:16 +09:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref } from 'vue';
|
|
|
|
import * as Misskey from 'misskey-js';
|
2024-01-04 18:32:46 +09:00
|
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
2020-12-31 00:22:20 +09:00
|
|
|
|
2023-12-02 21:00:05 +09:00
|
|
|
const meta = ref<Misskey.entities.MetaResponse>();
|
2020-12-31 00:22:20 +09:00
|
|
|
|
2024-01-04 18:32:46 +09:00
|
|
|
misskeyApi('meta', { detail: true }).then(gotMeta => {
|
2022-01-18 23:06:16 +09:00
|
|
|
meta.value = gotMeta;
|
2020-12-31 00:22:20 +09:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-01-15 09:14:17 +09:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-12-31 00:22:20 +09:00
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
</style>
|