forked from FoundKeyGang/FoundKey
refactor pages/follow.vue to composition API
This commit is contained in:
parent
bf16b3699e
commit
670c229cd0
1 changed files with 60 additions and 50 deletions
|
@ -1,65 +1,75 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="mk-follow-page">
|
<!-- This page does not really have any content, it is mainly processing stuff -->
|
||||||
</div>
|
<MkLoading v-if="state == 'loading'"/>
|
||||||
|
<MkError v-if="state == 'error'" :final="finalError" @retry="doIt"/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent } from 'vue';
|
import { } from 'vue';
|
||||||
import * as Acct from 'misskey-js/built/acct';
|
import * as Acct from 'misskey-js/built/acct';
|
||||||
import * as os from '@/os';
|
import * as os from '@/os';
|
||||||
import { mainRouter } from '@/router';
|
import { mainRouter } from '@/router';
|
||||||
|
import { i18n } from '@/i18n';
|
||||||
|
|
||||||
export default defineComponent({
|
let state: 'loading' | 'error' | 'done' = $ref('loading');
|
||||||
created() {
|
let finalError: boolean = $ref(false);
|
||||||
const acct = new URL(location.href).searchParams.get('acct');
|
|
||||||
if (acct == null) return;
|
|
||||||
|
|
||||||
let promise;
|
async function follow(user) {
|
||||||
|
const { canceled } = await os.confirm({
|
||||||
|
type: 'question',
|
||||||
|
text: i18n.t('followConfirm', { name: user.name || user.username }),
|
||||||
|
});
|
||||||
|
|
||||||
if (acct.startsWith('https://')) {
|
if (canceled) {
|
||||||
promise = os.api('ap/show', {
|
window.close();
|
||||||
uri: acct,
|
return;
|
||||||
});
|
}
|
||||||
promise.then(res => {
|
|
||||||
if (res.type === 'User') {
|
|
||||||
this.follow(res.object);
|
|
||||||
} else if (res.type === 'Note') {
|
|
||||||
mainRouter.push(`/notes/${res.object.id}`);
|
|
||||||
} else {
|
|
||||||
os.alert({
|
|
||||||
type: 'error',
|
|
||||||
text: 'Not a user',
|
|
||||||
}).then(() => {
|
|
||||||
window.close();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
promise = os.api('users/show', Acct.parse(acct));
|
|
||||||
promise.then(user => {
|
|
||||||
this.follow(user);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
os.promiseDialog(promise, null, null, this.$ts.fetchingAsApObject);
|
os.apiWithDialog('following/create', {
|
||||||
},
|
userId: user.id,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
methods: {
|
function doIt() {
|
||||||
async follow(user) {
|
// this might be a retry
|
||||||
const { canceled } = await os.confirm({
|
state = 'loading';
|
||||||
type: 'question',
|
|
||||||
text: this.$t('followConfirm', { name: user.name || user.username }),
|
|
||||||
});
|
|
||||||
|
|
||||||
if (canceled) {
|
const acct = new URL(location.href).searchParams.get('acct');
|
||||||
window.close();
|
if (acct == null) {
|
||||||
return;
|
finalError = true;
|
||||||
|
state = 'error';
|
||||||
|
}
|
||||||
|
|
||||||
|
let promise;
|
||||||
|
|
||||||
|
if (acct.startsWith('https://')) {
|
||||||
|
promise = os.api('ap/show', {
|
||||||
|
uri: acct,
|
||||||
|
});
|
||||||
|
promise.then(res => {
|
||||||
|
if (res.type === 'User') {
|
||||||
|
follow(res.object);
|
||||||
|
} else if (res.type === 'Note') {
|
||||||
|
mainRouter.push(`/notes/${res.object.id}`);
|
||||||
|
} else {
|
||||||
|
os.alert({
|
||||||
|
type: 'error',
|
||||||
|
text: 'Not a user',
|
||||||
|
}).then(() => {
|
||||||
|
finalError = true;
|
||||||
|
state = 'error';
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
promise = os.api('users/show', Acct.parse(acct));
|
||||||
|
promise.then(user => {
|
||||||
|
follow(user);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
os.apiWithDialog('following/create', {
|
os.promiseDialog(promise, null, null, i18n.ts.fetchingAsApObject);
|
||||||
userId: user.id,
|
}
|
||||||
});
|
|
||||||
},
|
doIt();
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue