mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 02:03:08 +02:00
95 lines
2.5 KiB
Vue
95 lines
2.5 KiB
Vue
<template>
|
|
<FormBase>
|
|
<template v-if="meta">
|
|
<FormInfo v-if="version === meta.version">{{ $ts.youAreRunningUpToDateClient }}</FormInfo>
|
|
<FormInfo v-else warn>{{ $ts.newVersionOfClientAvailable }}</FormInfo>
|
|
</template>
|
|
<FormGroup>
|
|
<template #label>{{ instanceName }}</template>
|
|
<FormKeyValueView>
|
|
<template #key>{{ $ts.currentVersion }}</template>
|
|
<template #value>{{ version }}</template>
|
|
</FormKeyValueView>
|
|
<FormKeyValueView>
|
|
<template #key>{{ $ts.latestVersion }}</template>
|
|
<template v-if="meta" #value>{{ meta.version }}</template>
|
|
<template v-else #value><MkEllipsis/></template>
|
|
</FormKeyValueView>
|
|
</FormGroup>
|
|
<FormGroup>
|
|
<template #label>Misskey</template>
|
|
<FormKeyValueView>
|
|
<template #key>{{ $ts.latestVersion }}</template>
|
|
<template v-if="releases" #value>{{ releases[0].tag_name }}</template>
|
|
<template v-else #value><MkEllipsis/></template>
|
|
</FormKeyValueView>
|
|
<template v-if="releases" #caption><MkTime :time="releases[0].published_at" mode="detail"/></template>
|
|
</FormGroup>
|
|
</FormBase>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineAsyncComponent, defineComponent } from 'vue';
|
|
import FormSwitch from '@/components/form/switch.vue';
|
|
import FormSelect from '@/components/form/select.vue';
|
|
import FormLink from '@/components/debobigego/link.vue';
|
|
import FormBase from '@/components/debobigego/base.vue';
|
|
import FormGroup from '@/components/debobigego/group.vue';
|
|
import FormButton from '@/components/debobigego/button.vue';
|
|
import FormKeyValueView from '@/components/debobigego/key-value-view.vue';
|
|
import FormInfo from '@/components/debobigego/info.vue';
|
|
import * as os from '@/os';
|
|
import { version, instanceName } from '@/config';
|
|
import * as symbols from '@/symbols';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
FormBase,
|
|
FormSelect,
|
|
FormSwitch,
|
|
FormButton,
|
|
FormLink,
|
|
FormGroup,
|
|
FormKeyValueView,
|
|
FormInfo,
|
|
},
|
|
|
|
emits: ['info'],
|
|
|
|
data() {
|
|
return {
|
|
[symbols.PAGE_INFO]: {
|
|
title: 'Misskey Update',
|
|
icon: 'fas fa-sync-alt',
|
|
bg: 'var(--bg)',
|
|
},
|
|
version,
|
|
instanceName,
|
|
releases: null,
|
|
meta: null
|
|
}
|
|
},
|
|
|
|
mounted() {
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
|
|
|
os.api('meta', {
|
|
detail: false
|
|
}).then(meta => {
|
|
this.meta = meta;
|
|
localStorage.setItem('v', meta.version);
|
|
});
|
|
|
|
fetch('https://api.github.com/repos/misskey-dev/misskey/releases', {
|
|
method: 'GET',
|
|
})
|
|
.then(res => res.json())
|
|
.then(res => {
|
|
this.releases = res;
|
|
});
|
|
},
|
|
|
|
methods: {
|
|
}
|
|
});
|
|
</script>
|