rudeshark.net/packages/client/src/components/MkUpdated.vue

72 lines
1.6 KiB
Vue
Raw Normal View History

<template>
2023-02-19 04:58:42 +01:00
<MkModal ref="modal" :z-priority="'middle'" @click="$refs.modal.close()" @closed="$emit('closed')">
<div :class="$style.root">
<div :class="$style.title"><MkSparkle>{{ i18n.ts.misskeyUpdated }}</MkSparkle></div>
<div :class="$style.version"> {{ version }} 🚀</div>
<div v-if="newRelease" :class="$style.releaseNotes">
2023-01-04 02:38:07 +01:00
<Mfm :text="data.notes"/>
2023-02-01 20:06:34 +01:00
<div v-if="data.screenshots.length > 0" style="max-width: 500">
2023-02-19 01:28:50 +01:00
<img v-for="i in data.screenshots" :key="i" :src="i" alt="screenshot"/>
2023-02-01 20:06:34 +01:00
</div>
2023-01-04 02:38:07 +01:00
</div>
2023-02-19 04:58:42 +01:00
<MkButton :class="$style.gotIt" primary full @click="$refs.modal.close()">{{ i18n.ts.gotIt }}</MkButton>
</div>
</MkModal>
</template>
2021-12-29 05:14:19 +01:00
<script lang="ts" setup>
import MkModal from '@/components/MkModal.vue';
import MkSparkle from '@/components/MkSparkle.vue';
2023-01-04 02:38:07 +01:00
import MkButton from '@/components/MkButton.vue';
2021-11-11 18:02:25 +01:00
import { version } from '@/config';
2022-07-20 15:24:26 +02:00
import { i18n } from '@/i18n';
2023-01-04 02:38:07 +01:00
import * as os from '@/os';
2023-01-04 03:31:27 +01:00
const modal = $ref<InstanceType<typeof MkModal>>();
2023-02-01 20:06:34 +01:00
let newRelease = $ref(false);
let data = $ref(Object);
2023-01-04 03:12:02 +01:00
os.api('release').then(res => {
2023-01-04 03:03:45 +01:00
data = res;
newRelease = (version === data?.version);
});
console.log(`Version: ${version}`)
console.log(`Data version: ${data.version}`)
console.log(newRelease)
console.log(data);
2023-01-04 03:03:45 +01:00
</script>
<style lang="scss" scoped>
2023-02-19 04:58:42 +01:00
.root {
margin: auto;
position: relative;
padding: 32px;
min-width: 320px;
max-width: 480px;
box-sizing: border-box;
text-align: center;
background: var(--panel);
border-radius: var(--radius);
2023-02-19 04:58:42 +01:00
}
2023-02-19 04:58:42 +01:00
.title {
font-weight: bold;
}
2021-10-22 19:45:25 +02:00
2023-02-19 04:58:42 +01:00
.version {
margin: 1em 0;
}
2023-01-04 02:38:07 +01:00
2023-02-19 04:58:42 +01:00
.gotIt {
margin: 8px 0 0 0;
}
2023-01-04 02:38:07 +01:00
2023-02-19 05:02:58 +01:00
.releaseNotes {
2023-02-19 04:58:42 +01:00
> img {
border-radius: 10px;
2023-01-04 02:38:07 +01:00
}
}
</style>