From 7e77fc76ffc8f1e84dab234f5574831e68cb872a Mon Sep 17 00:00:00 2001 From: kawamataryo Date: Fri, 18 Oct 2024 09:17:32 +0900 Subject: [PATCH] chore: fix lint --- src/background/messages/login.ts | 10 ++++++---- src/lib/constants.ts | 3 ++- src/lib/domHelpers.ts | 7 ++++++- src/lib/searchBskyUsers.ts | 3 ++- src/popup.tsx | 2 +- 5 files changed, 17 insertions(+), 8 deletions(-) diff --git a/src/background/messages/login.ts b/src/background/messages/login.ts index 2982ae4..ae885bb 100644 --- a/src/background/messages/login.ts +++ b/src/background/messages/login.ts @@ -1,7 +1,7 @@ -import type { PlasmoMessaging } from "@plasmohq/messaging"; -import { BskyClient } from "../../lib/bskyClient"; -import { AUTH_FACTOR_TOKEN_REQUIRED_ERROR_MESSAGE } from "~lib/constants"; import { ComAtprotoServerCreateSession } from "@atproto/api"; +import type { PlasmoMessaging } from "@plasmohq/messaging"; +import { AUTH_FACTOR_TOKEN_REQUIRED_ERROR_MESSAGE } from "~lib/constants"; +import { BskyClient } from "../../lib/bskyClient"; const handler: PlasmoMessaging.MessageHandler = async (req, res) => { const { identifier, password, authFactorToken } = req.body; @@ -17,7 +17,9 @@ const handler: PlasmoMessaging.MessageHandler = async (req, res) => { session: agent.session, }); } catch (e) { - if (e instanceof ComAtprotoServerCreateSession.AuthFactorTokenRequiredError) { + if ( + e instanceof ComAtprotoServerCreateSession.AuthFactorTokenRequiredError + ) { res.send({ error: { message: AUTH_FACTOR_TOKEN_REQUIRED_ERROR_MESSAGE, diff --git a/src/lib/constants.ts b/src/lib/constants.ts index f9829f1..0b48f6d 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -74,4 +74,5 @@ export const MATCH_TYPE_LABEL_AND_COLOR = { }, }; -export const AUTH_FACTOR_TOKEN_REQUIRED_ERROR_MESSAGE = "AuthFactorTokenRequiredError"; +export const AUTH_FACTOR_TOKEN_REQUIRED_ERROR_MESSAGE = + "AuthFactorTokenRequiredError"; diff --git a/src/lib/domHelpers.ts b/src/lib/domHelpers.ts index e9dcb0c..69ff674 100644 --- a/src/lib/domHelpers.ts +++ b/src/lib/domHelpers.ts @@ -25,5 +25,10 @@ export const getAccountNameAndDisplayName = (userCell: Element) => { const twAccountNameRemoveUnderscore = twAccountName.replaceAll("_", ""); // bsky does not allow underscores in handle, so remove them. const twAccountNameReplaceUnderscore = twAccountName.replaceAll("_", "-"); const twDisplayName = displayNameEl?.textContent; - return { twAccountName, twDisplayName, twAccountNameRemoveUnderscore, twAccountNameReplaceUnderscore }; + return { + twAccountName, + twDisplayName, + twAccountNameRemoveUnderscore, + twAccountNameReplaceUnderscore, + }; }; diff --git a/src/lib/searchBskyUsers.ts b/src/lib/searchBskyUsers.ts index e3c542a..7b0878c 100644 --- a/src/lib/searchBskyUsers.ts +++ b/src/lib/searchBskyUsers.ts @@ -33,7 +33,8 @@ export const searchBskyUser = async ({ { accountName: userData.twAccountName, accountNameRemoveUnderscore: userData.twAccountNameRemoveUnderscore, - accountNameReplaceUnderscore: userData.twAccountNameReplaceUnderscore, + accountNameReplaceUnderscore: + userData.twAccountNameReplaceUnderscore, displayName: userData.twDisplayName, }, searchResult, diff --git a/src/popup.tsx b/src/popup.tsx index c94d02e..ec91182 100644 --- a/src/popup.tsx +++ b/src/popup.tsx @@ -6,12 +6,12 @@ import "./style.css"; import { sendToContentScript } from "@plasmohq/messaging"; import { + AUTH_FACTOR_TOKEN_REQUIRED_ERROR_MESSAGE, MAX_RELOAD_COUNT, MESSAGE_NAMES, MESSAGE_TYPE, STORAGE_KEYS, TARGET_URLS_REGEX, - AUTH_FACTOR_TOKEN_REQUIRED_ERROR_MESSAGE, } from "~lib/constants"; function IndexPopup() {