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

68 lines
1.5 KiB
Vue
Raw Normal View History

<template>
2023-01-04 03:31:27 +01:00
<MkModal ref="modal" :z-priority="'middle'" @click="modal.close()" @closed="$emit('closed')">
<div class="ewlycnyt">
2022-07-20 15:24:26 +02:00
<div class="title"><MkSparkle>{{ i18n.ts.misskeyUpdated }}</MkSparkle></div>
2022-12-16 22:39:45 +01:00
<div class="version"> {{ version }} 🚀</div>
2023-01-04 03:31:27 +01:00
<div v-if="newRelease" class="releaseNotes">
2023-01-04 02:38:07 +01:00
<Mfm :text="data.notes"/>
2023-01-13 07:22:42 +01:00
<!-- <div v-if="data.screenshots.length > 0" style="max-width: 500">
2023-01-04 02:38:07 +01:00
<img v-for="i in data.screenshots" :key="i" :src="i"/>
2023-01-13 07:22:42 +01:00
</div> -->
2023-01-04 02:38:07 +01:00
</div>
2023-01-04 03:31:27 +01:00
<MkButton class="gotIt" primary full @click="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-01-04 03:03:45 +01:00
let newRelease = false;
let data;
2023-01-04 03:12:02 +01:00
os.api('release').then(res => {
2023-01-04 03:03:45 +01:00
data = res;
2023-01-04 03:08:36 +01:00
console.log(data);
2023-01-04 03:03:45 +01:00
newRelease = (version === data?.version);
});
</script>
<style lang="scss" scoped>
.ewlycnyt {
position: relative;
padding: 32px;
min-width: 320px;
max-width: 480px;
box-sizing: border-box;
text-align: center;
background: var(--panel);
border-radius: var(--radius);
> .title {
font-weight: bold;
}
> .version {
margin: 1em 0;
}
2021-10-22 19:45:25 +02:00
> .gotIt {
margin: 8px 0 0 0;
}
2023-01-04 02:38:07 +01:00
> .releaseNotes {
> img {
border-radius: 10px;
}
}
}
</style>