2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_m">
|
2023-01-06 01:56:33 +01:00
|
|
|
<FormSection first>
|
2023-01-01 08:57:13 +01:00
|
|
|
<template #label><i class="ti ti-pencil"></i> {{ i18n.ts._exportOrImport.allNotes }}</template>
|
2023-01-09 01:41:25 +01:00
|
|
|
<MkFolder>
|
2022-07-20 15:24:26 +02:00
|
|
|
<template #label>{{ i18n.ts.export }}</template>
|
2022-12-19 11:01:30 +01:00
|
|
|
<template #icon><i class="ti ti-download"></i></template>
|
|
|
|
<MkButton primary :class="$style.button" inline @click="exportNotes()"><i class="ti ti-download"></i> {{ i18n.ts.export }}</MkButton>
|
2023-01-09 01:41:25 +01:00
|
|
|
</MkFolder>
|
2021-10-03 16:51:54 +02:00
|
|
|
</FormSection>
|
2023-01-01 08:53:10 +01:00
|
|
|
<FormSection>
|
2023-01-01 08:57:13 +01:00
|
|
|
<template #label><i class="ti ti-star"></i> {{ i18n.ts._exportOrImport.favoritedNotes }}</template>
|
2023-01-09 01:41:25 +01:00
|
|
|
<MkFolder>
|
2023-01-01 08:53:10 +01:00
|
|
|
<template #label>{{ i18n.ts.export }}</template>
|
|
|
|
<template #icon><i class="ti ti-download"></i></template>
|
|
|
|
<MkButton primary :class="$style.button" inline @click="exportFavorites()"><i class="ti ti-download"></i> {{ i18n.ts.export }}</MkButton>
|
2023-01-09 01:41:25 +01:00
|
|
|
</MkFolder>
|
2023-01-01 08:53:10 +01:00
|
|
|
</FormSection>
|
2021-10-03 16:51:54 +02:00
|
|
|
<FormSection>
|
2023-01-01 08:57:13 +01:00
|
|
|
<template #label><i class="ti ti-users"></i> {{ i18n.ts._exportOrImport.followingList }}</template>
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_s">
|
2023-01-09 01:41:25 +01:00
|
|
|
<MkFolder>
|
2023-01-06 01:56:33 +01:00
|
|
|
<template #label>{{ i18n.ts.export }}</template>
|
|
|
|
<template #icon><i class="ti ti-download"></i></template>
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_s">
|
2023-01-07 06:59:54 +01:00
|
|
|
<MkSwitch v-model="excludeMutingUsers">
|
2023-01-06 01:56:33 +01:00
|
|
|
{{ i18n.ts._exportOrImport.excludeMutingUsers }}
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
|
|
|
<MkSwitch v-model="excludeInactiveUsers">
|
2023-01-06 01:56:33 +01:00
|
|
|
{{ i18n.ts._exportOrImport.excludeInactiveUsers }}
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
2023-01-06 01:56:33 +01:00
|
|
|
<MkButton primary :class="$style.button" inline @click="exportFollowing()"><i class="ti ti-download"></i> {{ i18n.ts.export }}</MkButton>
|
|
|
|
</div>
|
2023-01-09 01:41:25 +01:00
|
|
|
</MkFolder>
|
enhance: account migration (#10592)
* copy block and mute then create follow and unfollow jobs
* copy block and mute and update lists when detecting an account has moved
* no need to care promise orders
* refactor updating actor and target
* automatically accept if a locked account had accepted an old account
* fix exception format
* prevent the old account from calling some endpoints
* do not unfollow when moving
* adjust following and follower counts
* check movedToUri when receiving a follow request
* skip if no need to adjust
* Revert "disable account migration"
This reverts commit 2321214c98591bcfe1385c1ab5bf0ff7b471ae1d.
* fix translation specifier
* fix checking alsoKnownAs and uri
* fix updating account
* fix refollowing locked account
* decrease followersCount if followed by the old account
* adjust following and followers counts when unfollowing
* fix copying mutings
* prohibit moved account from moving again
* fix move service
* allow app creation after moving
* fix lint
* remove unnecessary field
* fix cache update
* add e2e test
* add e2e test of accepting the new account automatically
* force follow if any error happens
* remove unnecessary joins
* use Array.map instead of for const of
* ユーザーリストの移行は追加のみを行う
* nanka iroiro
* fix misskey-js?
* :v:
* 移行を行ったアカウントからのフォローリクエストの自動許可を調整
* newUriを外に出す
* newUriを外に出す2
* clean up
* fix newUri
* prevent moving if the destination account has already moved
* set alsoKnownAs via /i/update
* fix database initialization
* add return type
* prohibit updating alsoKnownAs after moving
* skip to add to alsoKnownAs if toUrl is known
* skip adding to the list if it already has
* use Acct.parse instead
* rename error code
* :art:
* 制限を5から10に緩和
* movedTo(Uri), alsoKnownAsはユーザーidを返すように
* test api res
* fix
* 元アカウントはミュートし続ける
* :art:
* unfollow
* fix
* getUserUriをUserEntityServiceに
* ?
* job!
* :art:
* instance => server
* accountMovedShort, forbiddenBecauseYouAreMigrated
* accountMovedShort
* fix test
* import, pin禁止
* 実績を凍結する
* clean up
* :v:
* change message
* ブロック, フォロー, ミュート, リストのインポートファイルの制限を32MiBに
* Revert "ブロック, フォロー, ミュート, リストのインポートファイルの制限を32MiBに"
This reverts commit 3bd7be35d8aa455cb01ae58f8172a71a50485db1.
* validateAlsoKnownAs
* 移行後2時間以内はインポート可能なファイルサイズを拡大
* clean up
* どうせactorをupdatePersonで更新するならupdatePersonしか移行処理を発行しないことにする
* handle error?
* リモートからの移行処理の条件を是正
* log, port
* fix
* fix
* enhance(dev): non-production環境でhttpサーバー間でもユーザー、ノートの連合が可能なように
* refactor (use checkHttps)
* MISSKEY_WEBFINGER_USE_HTTP
* Environment Variable readme
* NEVER USE IN PRODUCTION
* fix punyHost
* fix indent
* fix
* experimental
---------
Co-authored-by: tamaina <tamaina@hotmail.co.jp>
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
2023-04-29 17:09:29 +02:00
|
|
|
<MkFolder v-if="$i && !$i.movedTo">
|
2023-01-06 01:56:33 +01:00
|
|
|
<template #label>{{ i18n.ts.import }}</template>
|
|
|
|
<template #icon><i class="ti ti-upload"></i></template>
|
2023-10-17 13:56:17 +02:00
|
|
|
<MkSwitch v-model="withReplies">
|
|
|
|
{{ i18n.ts._exportOrImport.withReplies }}
|
|
|
|
</MkSwitch>
|
2023-01-06 01:56:33 +01:00
|
|
|
<MkButton primary :class="$style.button" inline @click="importFollowing($event)"><i class="ti ti-upload"></i> {{ i18n.ts.import }}</MkButton>
|
2023-01-09 01:41:25 +01:00
|
|
|
</MkFolder>
|
2023-01-06 01:56:33 +01:00
|
|
|
</div>
|
2021-10-03 16:51:54 +02:00
|
|
|
</FormSection>
|
|
|
|
<FormSection>
|
2023-01-01 08:57:13 +01:00
|
|
|
<template #label><i class="ti ti-users"></i> {{ i18n.ts._exportOrImport.userLists }}</template>
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_s">
|
2023-01-09 01:41:25 +01:00
|
|
|
<MkFolder>
|
2023-01-06 01:56:33 +01:00
|
|
|
<template #label>{{ i18n.ts.export }}</template>
|
|
|
|
<template #icon><i class="ti ti-download"></i></template>
|
|
|
|
<MkButton primary :class="$style.button" inline @click="exportUserLists()"><i class="ti ti-download"></i> {{ i18n.ts.export }}</MkButton>
|
2023-01-09 01:41:25 +01:00
|
|
|
</MkFolder>
|
enhance: account migration (#10592)
* copy block and mute then create follow and unfollow jobs
* copy block and mute and update lists when detecting an account has moved
* no need to care promise orders
* refactor updating actor and target
* automatically accept if a locked account had accepted an old account
* fix exception format
* prevent the old account from calling some endpoints
* do not unfollow when moving
* adjust following and follower counts
* check movedToUri when receiving a follow request
* skip if no need to adjust
* Revert "disable account migration"
This reverts commit 2321214c98591bcfe1385c1ab5bf0ff7b471ae1d.
* fix translation specifier
* fix checking alsoKnownAs and uri
* fix updating account
* fix refollowing locked account
* decrease followersCount if followed by the old account
* adjust following and followers counts when unfollowing
* fix copying mutings
* prohibit moved account from moving again
* fix move service
* allow app creation after moving
* fix lint
* remove unnecessary field
* fix cache update
* add e2e test
* add e2e test of accepting the new account automatically
* force follow if any error happens
* remove unnecessary joins
* use Array.map instead of for const of
* ユーザーリストの移行は追加のみを行う
* nanka iroiro
* fix misskey-js?
* :v:
* 移行を行ったアカウントからのフォローリクエストの自動許可を調整
* newUriを外に出す
* newUriを外に出す2
* clean up
* fix newUri
* prevent moving if the destination account has already moved
* set alsoKnownAs via /i/update
* fix database initialization
* add return type
* prohibit updating alsoKnownAs after moving
* skip to add to alsoKnownAs if toUrl is known
* skip adding to the list if it already has
* use Acct.parse instead
* rename error code
* :art:
* 制限を5から10に緩和
* movedTo(Uri), alsoKnownAsはユーザーidを返すように
* test api res
* fix
* 元アカウントはミュートし続ける
* :art:
* unfollow
* fix
* getUserUriをUserEntityServiceに
* ?
* job!
* :art:
* instance => server
* accountMovedShort, forbiddenBecauseYouAreMigrated
* accountMovedShort
* fix test
* import, pin禁止
* 実績を凍結する
* clean up
* :v:
* change message
* ブロック, フォロー, ミュート, リストのインポートファイルの制限を32MiBに
* Revert "ブロック, フォロー, ミュート, リストのインポートファイルの制限を32MiBに"
This reverts commit 3bd7be35d8aa455cb01ae58f8172a71a50485db1.
* validateAlsoKnownAs
* 移行後2時間以内はインポート可能なファイルサイズを拡大
* clean up
* どうせactorをupdatePersonで更新するならupdatePersonしか移行処理を発行しないことにする
* handle error?
* リモートからの移行処理の条件を是正
* log, port
* fix
* fix
* enhance(dev): non-production環境でhttpサーバー間でもユーザー、ノートの連合が可能なように
* refactor (use checkHttps)
* MISSKEY_WEBFINGER_USE_HTTP
* Environment Variable readme
* NEVER USE IN PRODUCTION
* fix punyHost
* fix indent
* fix
* experimental
---------
Co-authored-by: tamaina <tamaina@hotmail.co.jp>
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
2023-04-29 17:09:29 +02:00
|
|
|
<MkFolder v-if="$i && !$i.movedTo">
|
2023-01-06 01:56:33 +01:00
|
|
|
<template #label>{{ i18n.ts.import }}</template>
|
|
|
|
<template #icon><i class="ti ti-upload"></i></template>
|
|
|
|
<MkButton primary :class="$style.button" inline @click="importUserLists($event)"><i class="ti ti-upload"></i> {{ i18n.ts.import }}</MkButton>
|
2023-01-09 01:41:25 +01:00
|
|
|
</MkFolder>
|
2023-01-06 01:56:33 +01:00
|
|
|
</div>
|
2021-10-03 16:51:54 +02:00
|
|
|
</FormSection>
|
|
|
|
<FormSection>
|
2023-01-01 08:57:13 +01:00
|
|
|
<template #label><i class="ti ti-user-off"></i> {{ i18n.ts._exportOrImport.muteList }}</template>
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_s">
|
2023-01-09 01:41:25 +01:00
|
|
|
<MkFolder>
|
2023-01-06 01:56:33 +01:00
|
|
|
<template #label>{{ i18n.ts.export }}</template>
|
|
|
|
<template #icon><i class="ti ti-download"></i></template>
|
|
|
|
<MkButton primary :class="$style.button" inline @click="exportMuting()"><i class="ti ti-download"></i> {{ i18n.ts.export }}</MkButton>
|
2023-01-09 01:41:25 +01:00
|
|
|
</MkFolder>
|
enhance: account migration (#10592)
* copy block and mute then create follow and unfollow jobs
* copy block and mute and update lists when detecting an account has moved
* no need to care promise orders
* refactor updating actor and target
* automatically accept if a locked account had accepted an old account
* fix exception format
* prevent the old account from calling some endpoints
* do not unfollow when moving
* adjust following and follower counts
* check movedToUri when receiving a follow request
* skip if no need to adjust
* Revert "disable account migration"
This reverts commit 2321214c98591bcfe1385c1ab5bf0ff7b471ae1d.
* fix translation specifier
* fix checking alsoKnownAs and uri
* fix updating account
* fix refollowing locked account
* decrease followersCount if followed by the old account
* adjust following and followers counts when unfollowing
* fix copying mutings
* prohibit moved account from moving again
* fix move service
* allow app creation after moving
* fix lint
* remove unnecessary field
* fix cache update
* add e2e test
* add e2e test of accepting the new account automatically
* force follow if any error happens
* remove unnecessary joins
* use Array.map instead of for const of
* ユーザーリストの移行は追加のみを行う
* nanka iroiro
* fix misskey-js?
* :v:
* 移行を行ったアカウントからのフォローリクエストの自動許可を調整
* newUriを外に出す
* newUriを外に出す2
* clean up
* fix newUri
* prevent moving if the destination account has already moved
* set alsoKnownAs via /i/update
* fix database initialization
* add return type
* prohibit updating alsoKnownAs after moving
* skip to add to alsoKnownAs if toUrl is known
* skip adding to the list if it already has
* use Acct.parse instead
* rename error code
* :art:
* 制限を5から10に緩和
* movedTo(Uri), alsoKnownAsはユーザーidを返すように
* test api res
* fix
* 元アカウントはミュートし続ける
* :art:
* unfollow
* fix
* getUserUriをUserEntityServiceに
* ?
* job!
* :art:
* instance => server
* accountMovedShort, forbiddenBecauseYouAreMigrated
* accountMovedShort
* fix test
* import, pin禁止
* 実績を凍結する
* clean up
* :v:
* change message
* ブロック, フォロー, ミュート, リストのインポートファイルの制限を32MiBに
* Revert "ブロック, フォロー, ミュート, リストのインポートファイルの制限を32MiBに"
This reverts commit 3bd7be35d8aa455cb01ae58f8172a71a50485db1.
* validateAlsoKnownAs
* 移行後2時間以内はインポート可能なファイルサイズを拡大
* clean up
* どうせactorをupdatePersonで更新するならupdatePersonしか移行処理を発行しないことにする
* handle error?
* リモートからの移行処理の条件を是正
* log, port
* fix
* fix
* enhance(dev): non-production環境でhttpサーバー間でもユーザー、ノートの連合が可能なように
* refactor (use checkHttps)
* MISSKEY_WEBFINGER_USE_HTTP
* Environment Variable readme
* NEVER USE IN PRODUCTION
* fix punyHost
* fix indent
* fix
* experimental
---------
Co-authored-by: tamaina <tamaina@hotmail.co.jp>
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
2023-04-29 17:09:29 +02:00
|
|
|
<MkFolder v-if="$i && !$i.movedTo">
|
2023-01-06 01:56:33 +01:00
|
|
|
<template #label>{{ i18n.ts.import }}</template>
|
|
|
|
<template #icon><i class="ti ti-upload"></i></template>
|
|
|
|
<MkButton primary :class="$style.button" inline @click="importMuting($event)"><i class="ti ti-upload"></i> {{ i18n.ts.import }}</MkButton>
|
2023-01-09 01:41:25 +01:00
|
|
|
</MkFolder>
|
2023-01-06 01:56:33 +01:00
|
|
|
</div>
|
2021-10-03 16:51:54 +02:00
|
|
|
</FormSection>
|
|
|
|
<FormSection>
|
2023-01-01 08:57:13 +01:00
|
|
|
<template #label><i class="ti ti-user-off"></i> {{ i18n.ts._exportOrImport.blockingList }}</template>
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_s">
|
2023-01-09 01:41:25 +01:00
|
|
|
<MkFolder>
|
2023-01-06 01:56:33 +01:00
|
|
|
<template #label>{{ i18n.ts.export }}</template>
|
|
|
|
<template #icon><i class="ti ti-download"></i></template>
|
|
|
|
<MkButton primary :class="$style.button" inline @click="exportBlocking()"><i class="ti ti-download"></i> {{ i18n.ts.export }}</MkButton>
|
2023-01-09 01:41:25 +01:00
|
|
|
</MkFolder>
|
enhance: account migration (#10592)
* copy block and mute then create follow and unfollow jobs
* copy block and mute and update lists when detecting an account has moved
* no need to care promise orders
* refactor updating actor and target
* automatically accept if a locked account had accepted an old account
* fix exception format
* prevent the old account from calling some endpoints
* do not unfollow when moving
* adjust following and follower counts
* check movedToUri when receiving a follow request
* skip if no need to adjust
* Revert "disable account migration"
This reverts commit 2321214c98591bcfe1385c1ab5bf0ff7b471ae1d.
* fix translation specifier
* fix checking alsoKnownAs and uri
* fix updating account
* fix refollowing locked account
* decrease followersCount if followed by the old account
* adjust following and followers counts when unfollowing
* fix copying mutings
* prohibit moved account from moving again
* fix move service
* allow app creation after moving
* fix lint
* remove unnecessary field
* fix cache update
* add e2e test
* add e2e test of accepting the new account automatically
* force follow if any error happens
* remove unnecessary joins
* use Array.map instead of for const of
* ユーザーリストの移行は追加のみを行う
* nanka iroiro
* fix misskey-js?
* :v:
* 移行を行ったアカウントからのフォローリクエストの自動許可を調整
* newUriを外に出す
* newUriを外に出す2
* clean up
* fix newUri
* prevent moving if the destination account has already moved
* set alsoKnownAs via /i/update
* fix database initialization
* add return type
* prohibit updating alsoKnownAs after moving
* skip to add to alsoKnownAs if toUrl is known
* skip adding to the list if it already has
* use Acct.parse instead
* rename error code
* :art:
* 制限を5から10に緩和
* movedTo(Uri), alsoKnownAsはユーザーidを返すように
* test api res
* fix
* 元アカウントはミュートし続ける
* :art:
* unfollow
* fix
* getUserUriをUserEntityServiceに
* ?
* job!
* :art:
* instance => server
* accountMovedShort, forbiddenBecauseYouAreMigrated
* accountMovedShort
* fix test
* import, pin禁止
* 実績を凍結する
* clean up
* :v:
* change message
* ブロック, フォロー, ミュート, リストのインポートファイルの制限を32MiBに
* Revert "ブロック, フォロー, ミュート, リストのインポートファイルの制限を32MiBに"
This reverts commit 3bd7be35d8aa455cb01ae58f8172a71a50485db1.
* validateAlsoKnownAs
* 移行後2時間以内はインポート可能なファイルサイズを拡大
* clean up
* どうせactorをupdatePersonで更新するならupdatePersonしか移行処理を発行しないことにする
* handle error?
* リモートからの移行処理の条件を是正
* log, port
* fix
* fix
* enhance(dev): non-production環境でhttpサーバー間でもユーザー、ノートの連合が可能なように
* refactor (use checkHttps)
* MISSKEY_WEBFINGER_USE_HTTP
* Environment Variable readme
* NEVER USE IN PRODUCTION
* fix punyHost
* fix indent
* fix
* experimental
---------
Co-authored-by: tamaina <tamaina@hotmail.co.jp>
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
2023-04-29 17:09:29 +02:00
|
|
|
<MkFolder v-if="$i && !$i.movedTo">
|
2023-01-06 01:56:33 +01:00
|
|
|
<template #label>{{ i18n.ts.import }}</template>
|
|
|
|
<template #icon><i class="ti ti-upload"></i></template>
|
|
|
|
<MkButton primary :class="$style.button" inline @click="importBlocking($event)"><i class="ti ti-upload"></i> {{ i18n.ts.import }}</MkButton>
|
2023-01-09 01:41:25 +01:00
|
|
|
</MkFolder>
|
2023-01-06 01:56:33 +01:00
|
|
|
</div>
|
2021-10-03 16:51:54 +02:00
|
|
|
</FormSection>
|
2023-05-06 01:17:55 +02:00
|
|
|
<FormSection>
|
|
|
|
<template #label><i class="ti ti-antenna"></i> {{ i18n.ts.antennas }}</template>
|
|
|
|
<div class="_gaps_s">
|
|
|
|
<MkFolder>
|
|
|
|
<template #label>{{ i18n.ts.export }}</template>
|
|
|
|
<template #icon><i class="ti ti-download"></i></template>
|
|
|
|
<MkButton primary :class="$style.button" inline @click="exportAntennas()"><i class="ti ti-download"></i> {{ i18n.ts.export }}</MkButton>
|
|
|
|
</MkFolder>
|
|
|
|
<MkFolder v-if="$i && !$i.movedTo">
|
|
|
|
<template #label>{{ i18n.ts.import }}</template>
|
|
|
|
<template #icon><i class="ti ti-upload"></i></template>
|
|
|
|
<MkButton primary :class="$style.button" inline @click="importAntennas($event)"><i class="ti ti-upload"></i> {{ i18n.ts.import }}</MkButton>
|
|
|
|
</MkFolder>
|
|
|
|
</div>
|
|
|
|
</FormSection>
|
2021-10-03 16:51:54 +02:00
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-05-01 04:55:15 +02:00
|
|
|
<script lang="ts" setup>
|
2022-06-20 10:38:49 +02:00
|
|
|
import { ref } from 'vue';
|
2022-09-06 11:21:49 +02:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import FormSection from '@/components/form/section.vue';
|
2023-01-09 01:41:25 +01:00
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
2023-01-07 06:59:54 +01:00
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
2023-09-19 09:37:43 +02:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { selectFile } from '@/scripts/select-file.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
import { $i } from '@/account.js';
|
2023-10-17 13:56:17 +02:00
|
|
|
import { defaultStore } from "@/store.js";
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-05-01 04:55:15 +02:00
|
|
|
const excludeMutingUsers = ref(false);
|
|
|
|
const excludeInactiveUsers = ref(false);
|
2023-10-17 13:56:17 +02:00
|
|
|
const withReplies = ref(defaultStore.state.defaultWithReplies);
|
2022-05-01 04:55:15 +02:00
|
|
|
|
|
|
|
const onExportSuccess = () => {
|
|
|
|
os.alert({
|
|
|
|
type: 'info',
|
|
|
|
text: i18n.ts.exportRequested,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const onImportSuccess = () => {
|
|
|
|
os.alert({
|
|
|
|
type: 'info',
|
|
|
|
text: i18n.ts.importRequested,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const onError = (ev) => {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: ev.message,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const exportNotes = () => {
|
|
|
|
os.api('i/export-notes', {}).then(onExportSuccess).catch(onError);
|
|
|
|
};
|
|
|
|
|
2023-01-01 08:53:10 +01:00
|
|
|
const exportFavorites = () => {
|
|
|
|
os.api('i/export-favorites', {}).then(onExportSuccess).catch(onError);
|
|
|
|
};
|
|
|
|
|
2022-05-01 04:55:15 +02:00
|
|
|
const exportFollowing = () => {
|
|
|
|
os.api('i/export-following', {
|
|
|
|
excludeMuting: excludeMutingUsers.value,
|
|
|
|
excludeInactive: excludeInactiveUsers.value,
|
|
|
|
})
|
2022-12-19 11:01:30 +01:00
|
|
|
.then(onExportSuccess).catch(onError);
|
2022-05-01 04:55:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const exportBlocking = () => {
|
|
|
|
os.api('i/export-blocking', {}).then(onExportSuccess).catch(onError);
|
|
|
|
};
|
|
|
|
|
|
|
|
const exportUserLists = () => {
|
|
|
|
os.api('i/export-user-lists', {}).then(onExportSuccess).catch(onError);
|
|
|
|
};
|
|
|
|
|
|
|
|
const exportMuting = () => {
|
|
|
|
os.api('i/export-mute', {}).then(onExportSuccess).catch(onError);
|
|
|
|
};
|
|
|
|
|
2023-05-06 01:17:55 +02:00
|
|
|
const exportAntennas = () => {
|
|
|
|
os.api('i/export-antennas', {}).then(onExportSuccess).catch(onError);
|
|
|
|
};
|
|
|
|
|
2022-05-01 04:55:15 +02:00
|
|
|
const importFollowing = async (ev) => {
|
|
|
|
const file = await selectFile(ev.currentTarget ?? ev.target);
|
2023-10-17 13:56:17 +02:00
|
|
|
os.api('i/import-following', {
|
|
|
|
fileId: file.id,
|
|
|
|
withReplies: withReplies.value,
|
|
|
|
}).then(onImportSuccess).catch(onError);
|
2022-05-01 04:55:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const importUserLists = async (ev) => {
|
|
|
|
const file = await selectFile(ev.currentTarget ?? ev.target);
|
|
|
|
os.api('i/import-user-lists', { fileId: file.id }).then(onImportSuccess).catch(onError);
|
|
|
|
};
|
|
|
|
|
|
|
|
const importMuting = async (ev) => {
|
|
|
|
const file = await selectFile(ev.currentTarget ?? ev.target);
|
|
|
|
os.api('i/import-muting', { fileId: file.id }).then(onImportSuccess).catch(onError);
|
|
|
|
};
|
|
|
|
|
|
|
|
const importBlocking = async (ev) => {
|
|
|
|
const file = await selectFile(ev.currentTarget ?? ev.target);
|
|
|
|
os.api('i/import-blocking', { fileId: file.id }).then(onImportSuccess).catch(onError);
|
|
|
|
};
|
|
|
|
|
2023-05-06 01:17:55 +02:00
|
|
|
const importAntennas = async (ev) => {
|
|
|
|
const file = await selectFile(ev.currentTarget ?? ev.target);
|
|
|
|
os.api('i/import-antennas', { fileId: file.id }).then(onImportSuccess).catch(onError);
|
|
|
|
};
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.importAndExport,
|
2022-12-20 00:35:49 +01:00
|
|
|
icon: 'ti ti-package',
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
|
|
|
</script>
|
2021-10-03 16:51:54 +02:00
|
|
|
|
|
|
|
<style module>
|
|
|
|
.button {
|
|
|
|
margin-right: 16px;
|
|
|
|
}
|
|
|
|
</style>
|