2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
|
|
|
<div class="mk-follow-page">
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 06:12:00 -05:00
|
|
|
import { defineComponent } from 'vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
import * as os from '@/os';
|
|
|
|
import * as Acct from 'misskey-js/built/acct';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
export default defineComponent({
|
2020-01-29 13:37:25 -06:00
|
|
|
created() {
|
|
|
|
const acct = new URL(location.href).searchParams.get('acct');
|
|
|
|
if (acct == null) return;
|
|
|
|
|
2020-10-17 20:11:34 -05:00
|
|
|
let promise;
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
if (acct.startsWith('https://')) {
|
2020-10-17 20:11:34 -05:00
|
|
|
promise = os.api('ap/show', {
|
2020-01-29 13:37:25 -06:00
|
|
|
uri: acct
|
2020-10-17 20:11:34 -05:00
|
|
|
});
|
|
|
|
promise.then(res => {
|
2020-01-29 13:37:25 -06:00
|
|
|
if (res.type == 'User') {
|
|
|
|
this.follow(res.object);
|
2020-10-17 11:46:40 -05:00
|
|
|
} else if (res.type === 'Note') {
|
|
|
|
this.$router.push(`/notes/${res.object.id}`);
|
2020-01-29 13:37:25 -06:00
|
|
|
} else {
|
2021-11-18 03:45:58 -06:00
|
|
|
os.alert({
|
2020-01-29 13:37:25 -06:00
|
|
|
type: 'error',
|
|
|
|
text: 'Not a user'
|
|
|
|
}).then(() => {
|
|
|
|
window.close();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2021-11-11 11:02:25 -06:00
|
|
|
promise = os.api('users/show', Acct.parse(acct));
|
2020-10-17 20:11:34 -05:00
|
|
|
promise.then(user => {
|
2020-01-29 13:37:25 -06:00
|
|
|
this.follow(user);
|
|
|
|
});
|
|
|
|
}
|
2020-10-17 20:11:34 -05:00
|
|
|
|
2020-12-25 19:47:36 -06:00
|
|
|
os.promiseDialog(promise, null, null, this.$ts.fetchingAsApObject);
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async follow(user) {
|
2021-11-18 03:45:58 -06:00
|
|
|
const { canceled } = await os.confirm({
|
2020-01-29 13:37:25 -06:00
|
|
|
type: 'question',
|
|
|
|
text: this.$t('followConfirm', { name: user.name || user.username }),
|
|
|
|
});
|
|
|
|
|
|
|
|
if (canceled) {
|
|
|
|
window.close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-10-17 20:11:34 -05:00
|
|
|
os.apiWithDialog('following/create', {
|
2020-01-29 13:37:25 -06:00
|
|
|
userId: user.id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|