chore: format

This commit is contained in:
kawamataryo 2024-11-22 20:25:03 +09:00
parent b2620dd28c
commit aea7994662
5 changed files with 14 additions and 12 deletions

View File

@ -1,8 +1,8 @@
import React from "react";
import { match } from "ts-pattern";
import type { BskyUser } from "~types";
import { ACTION_MODE, MATCH_TYPE_LABEL_AND_COLOR } from "../constants";
import AvatarFallbackSvg from "./Icons/AvatarFallbackSvg";
import type { BskyUser } from "~types";
export type Props = {
user: BskyUser;

View File

@ -180,7 +180,7 @@ export const useBskyUserManager = () => {
bskyClient.current = new BskyServiceWorkerClient(session);
setActionMode(
MESSAGE_NAME_TO_ACTION_MODE_MAP[
result[STORAGE_KEYS.BSKY_MESSAGE_NAME]
result[STORAGE_KEYS.BSKY_MESSAGE_NAME]
],
);
},

View File

@ -2,7 +2,7 @@ import type { AtpSessionData } from "@atproto/api";
import { Storage } from "@plasmohq/storage";
import { useStorage } from "@plasmohq/storage/hook";
import React from "react";
import { match, P } from "ts-pattern";
import { P, match } from "ts-pattern";
import { BskyServiceWorkerClient } from "~lib/bskyServiceWorkerClient";
import { MESSAGE_NAMES, STORAGE_KEYS } from "~lib/constants";
import { searchBskyUser } from "~lib/searchBskyUsers";
@ -12,11 +12,14 @@ import type { BskyUser, CrawledUserInfo, MessageName } from "~types";
const getService = (messageName: string): AbstractService => {
return match(messageName)
.with(P.when((name) => [
MESSAGE_NAMES.SEARCH_BSKY_USER_ON_FOLLOW_PAGE,
MESSAGE_NAMES.SEARCH_BSKY_USER_ON_LIST_MEMBERS_PAGE,
MESSAGE_NAMES.SEARCH_BSKY_USER_ON_BLOCK_PAGE,
].includes(name as MessageName)),
.with(
P.when((name) =>
[
MESSAGE_NAMES.SEARCH_BSKY_USER_ON_FOLLOW_PAGE,
MESSAGE_NAMES.SEARCH_BSKY_USER_ON_LIST_MEMBERS_PAGE,
MESSAGE_NAMES.SEARCH_BSKY_USER_ON_BLOCK_PAGE,
].includes(name as MessageName),
),
() => new XService(messageName),
)
.otherwise(() => new XService(messageName));

View File

@ -19,9 +19,8 @@ export abstract class AbstractService {
),
);
const users = Array.from(userCells).map((userCell) =>
this.extractUserData(userCell),
)
const users = Array.from(userCells)
.map((userCell) => this.extractUserData(userCell))
.filter((user) => {
const isNewUser = !this.crawledUsers.has(user.accountName);
if (isNewUser) {

View File

@ -1,8 +1,8 @@
import { MESSAGE_NAMES } from "~lib/constants";
import { BSKY_DOMAIN, MESSAGE_NAME_TO_QUERY_PARAM_MAP } from "~lib/constants";
import { wait } from "~lib/utils";
import { AbstractService } from "./abstractService";
import type { CrawledUserInfo } from "~types";
import { AbstractService } from "./abstractService";
export class XService extends AbstractService {
extractUserData(userCell: Element): CrawledUserInfo {