iceshrimp-legacy/packages/client/src/components/MkUpdated.vue

91 lines
1.8 KiB
Vue
Raw Normal View History

<template>
2023-04-08 02:01:42 +02: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>
2023-02-01 20:06:34 +01:00
</div>
2023-04-08 02:01:42 +02:00
<div :class="$style.version"> {{ version }} 🚀</div>
<div v-if="newRelease" :class="$style.releaseNotes">
<Mfm :text="data.notes" />
<div v-if="data.screenshots.length > 0" style="max-width: 500">
<img
v-for="i in data.screenshots"
:key="i"
:src="i"
alt="screenshot"
/>
</div>
</div>
<MkButton
:class="$style.gotIt"
primary
full
@click="$refs.modal.close()"
>{{ i18n.ts.gotIt }}</MkButton
>
2023-01-04 02:38:07 +01:00
</div>
2023-04-08 02:01:42 +02:00
</MkModal>
</template>
2021-12-29 05:14:19 +01:00
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import { shallowRef } from "vue";
import MkModal from "@/components/MkModal.vue";
import MkSparkle from "@/components/MkSparkle.vue";
import MkButton from "@/components/MkButton.vue";
import { version } from "@/config";
import { i18n } from "@/i18n";
import * as os from "@/os";
2023-02-19 05:09:14 +01:00
const modal = shallowRef<InstanceType<typeof MkModal>>();
2023-01-04 03:31:27 +01:00
2023-02-01 20:06:34 +01:00
let newRelease = $ref(false);
let data = $ref(Object);
2023-04-08 02:01:42 +02:00
os.api("release").then((res) => {
2023-01-04 03:03:45 +01:00
data = res;
2023-04-08 02:01:42 +02:00
newRelease = version === data?.version;
2023-01-04 03:03:45 +01:00
});
2023-02-19 05:09:14 +01:00
2023-04-08 02:01:42 +02:00
console.log(`Version: ${version}`);
console.log(`Data version: ${data.version}`);
console.log(newRelease);
console.log(data);
</script>
2023-02-19 05:13:24 +01:00
<style lang="scss" module>
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>