From 92bf1f779bd86756f78f94283e6085e6fe2f5de0 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:45:50 +0100 Subject: [chore] Expose move endpoint again, small settings panel fixes (#2752) --- web/source/settings/user/migration.tsx | 90 +++++++++++++++++----------------- 1 file changed, 45 insertions(+), 45 deletions(-) (limited to 'web/source') diff --git a/web/source/settings/user/migration.tsx b/web/source/settings/user/migration.tsx index d0c5e3393..9dfa3a75b 100644 --- a/web/source/settings/user/migration.tsx +++ b/web/source/settings/user/migration.tsx @@ -40,49 +40,23 @@ export default function UserMigration() { } function UserMigrationForm({ data: profile }) { - let urlStr = store.getState().oauth.instanceUrl ?? ""; - let url = new URL(urlStr); - return ( <>

Account Migration Settings

-
- - Moving your account to another instance, or moving an account from another instance to your account, isn't implemented yet! You will only be able to use the "alias" section of the below panel. See here for progress. -

- The following settings allow you to alias your account to another account - elsewhere, and to move your followers and following lists to another account. + The following settings allow you to alias your account to + another account elsewhere, or to move to another account.

Account aliasing is harmless and reversible; you can set and unset up to five account aliases as many times as you wish.

- The account move action, on the other hand, has serious and irreversible consequences. -

-

- To move, you must set an alias from your account to the target account, using this settings panel. + The account move action, on the other + hand, has serious and irreversible consequences.

- You must also set an alias from the target account back to your account, using - the settings panel of the instance on which the target account resides. -

-

- Provide the following details to the other instance: -

-
-
-
Account handle/username:
-
@{profile.acct}@{url.host}
-
-
-
Account URI:
-
{urlStr}/users/{profile.username}
-
-
-

- For more information on account migration, please see the documentation. + For more information on account migration, please see the documentation.

@@ -166,44 +140,70 @@ function AlsoKnownAsURI({ index, data }) { } function MoveForm({ data: profile }) { + let urlStr = store.getState().oauth.instanceUrl ?? ""; + let url = new URL(urlStr); + const form = { movedToURI: useTextInput("moved_to_uri", { source: profile, - valueSelector: (p) => p.moved?.uri }, + valueSelector: (p) => p.moved?.url }, ), password: useTextInput("password"), }; - const [submitForm, result] = useFormSubmit(form, useMoveAccountMutation()); + const [submitForm, result] = useFormSubmit(form, useMoveAccountMutation(), { + changedOnly: false, + }); return (

Move Account

- - Learn more about moving your account (opens in a new tab) - +

+

+ For a move to be successful, you must have already set an alias from the + target account back to the account you're moving from (ie., this account), + using the settings panel of the instance on which the target account resides. +

+

+ To do this, provide the following details to the other instance: +

+
+
+
Account handle/username:
+
@{profile.acct}@{url.host}
+
+
+
Account URI:
+
{urlStr}/users/{profile.username}
+
+
+
+ + Learn more about moving your account (opens in a new tab) + +

-- cgit v1.2.3