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