From 66c61fb95e13dbf3a900f4e98f8d3f7fe0daff03 Mon Sep 17 00:00:00 2001 From: kawamataryo Date: Fri, 26 Jan 2024 14:58:18 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20remove=20unused=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lib/searchBskyUsers.ts | 10 +- src/style.content.legacy.css | 210 ----------------------------------- 2 files changed, 2 insertions(+), 218 deletions(-) delete mode 100644 src/style.content.legacy.css diff --git a/src/lib/searchBskyUsers.ts b/src/lib/searchBskyUsers.ts index f513e57..99d8a87 100644 --- a/src/lib/searchBskyUsers.ts +++ b/src/lib/searchBskyUsers.ts @@ -1,14 +1,8 @@ -import type { ProfileView } from "@atproto/api/dist/client/types/app/bsky/actor/defs"; import { isSimilarUser } from "~lib/bskyHelpers"; -import { getAccountNameAndDisplayName, getUserCells } from "~lib/domHelpers"; -import { debugLog, isOneSymbol } from "~lib/utils"; -import type { BskyClient } from "./bskyClient"; +import { getAccountNameAndDisplayName } from "~lib/domHelpers"; +import { isOneSymbol } from "~lib/utils"; import type { BskyServiceWorkerClient } from "./bskyServiceWorkerClient"; -const notFoundUserCache = new Set(); - -const bskyUserUrlMap = new Map(); - export const searchBskyUser = async ({ client, userData, diff --git a/src/style.content.legacy.css b/src/style.content.legacy.css deleted file mode 100644 index e2dd398..0000000 --- a/src/style.content.legacy.css +++ /dev/null @@ -1,210 +0,0 @@ -/* ----------------- */ -/* base */ -/* ----------------- */ -:root { - --bsky-primary-color: rgb(29, 78, 216); - --bsky-primary-hover-color: #2563eb; -} - -.bsky-user-content-wrapper { - font-family: "TwitterChirp",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;; -} - -.bsky-user-content-wrapper .match-type { - color: var(--bsky-primary-color); - padding: 2px 14px 2px 14px; - font-size: 12px; - font-weight: bold; - width: fit-content; - display: flex; - gap: 4px; - border-radius: 10px 10px 0px 0px; -} - -.bsky-user-content-wrapper .match-type.match-type__handle { - background-color: #ffd700; -} - -.bsky-user-content-wrapper .match-type.match-type__display-name { - background-color: #FFA07A; -} - -.bsky-user-content-wrapper .match-type.match-type__description { - background-color: #D3D3D3; -} - -.bsky-user-content { - background: rgb(2,0,36); - background: var(--bsky-primary-color); - color: #fff; - display: flex; - gap: 15px; - padding: 12px 16px; -} -.bsky-user-content p { - margin: 0; -} - -/* ----------------- */ -/* icon */ -/* ----------------- */ -.bsky-user-content .icon-section { - display: grid; - place-content: center; -} -.bsky-user-content .icon-section a{ - text-decoration: none; - width: 40px; -} -.bsky-user-content .icon-section img { - border-radius: 50%; -} -.bsky-user-content .icon-section .no-avatar { - width: 40px; - height: 40px; - background: #ccc; - border-radius: 50%; -} - -/* ----------------- */ -/* card content */ -/* ----------------- */ -.bsky-user-content .content { - width: 100%; -} -.bsky-user-content .content .display-name a { - font-size: 15px; - font-weight: bold; - color: #fff; - text-decoration: none; -} -.bsky-user-content .content .display-name a:hover { - text-decoration: underline; -} -.bsky-user-content .content .handle { - font-size: 14px; - color: #ccc; -} -.bsky-user-content .content .description { - margin-top: 5px; - font-size: 14px; - word-break: break-word; -} -.name-and-controller { - display: flex; - gap: 10px; - justify-content: space-between; -} - -.name-and-controller .action-button { - border: 1px solid #fff; - padding: 6px 30px; - font-size: 14px; - border: 1px solid #fff; - background: #fff; - color: var(--bsky-primary-color); - border-radius: 27px; - cursor: pointer; -} - -.name-and-controller .action-button__being { - background: transparent; - color: #fff; - cursor: pointer; -} - -.name-and-controller .action-button__being:hover { - background: rgba(255, 0, 0, 0.1); - color: red; - border: 1px solid red; - cursor: pointer; -} - -.name-and-controller .action-button__being.action-button__just-applied:hover { - background: transparent !important; - color: #fff !important; - border: 1px solid #fff !important; - cursor: pointer; -} - -.name-and-controller .action-button__processing { - background: rgb(255,255,255, 0.3) !important; - color: #fff !important; - border: 1px solid #fff !important; - cursor: auto; -} - -/* ----------------- */ -/* not found card */ -/* ----------------- */ -.bsky-user-content__not-found { - font-family: "TwitterChirp",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;; - padding: 4px 16px; - background: #333; - font-size: 12px; - display: flex; - align-items: center; - gap: 5px; -} - -.bsky-user-content__not-found svg { - width: 16px; -} - -/* ----------------- */ -/* reload btn */ -/* ----------------- */ -.bsky-reload-btn-wrapper { - padding: 24px 0; - text-align: center; -} - -.bsky-reload-btn { - padding: 8px 16px; - width: 280px; - font-size: 14px; - border: none; - border-radius: 5px; - background-color: var(--bsky-primary-color); - color: #fff; - top: 60px; - cursor: pointer; - animation: btnwrapanime 1.5s infinite; - box-shadow: 0 0 0 0 rgb(0, 53, 188); -} - -.bsky-reload-btn:hover { - animation: none; - background-color: var(--bsky-primary-hover-color); -} - -.bsky-reload-btn__processing { - background-color: var(--bsky-primary-hover-color); - animation: none; - cursor: auto; -} - -@keyframes btnwrapanime { - 70% { - box-shadow: 0 0 0 20px rgba(233, 30, 99, 0); - } - - 100% { - box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); - } -} - -@keyframes fade-in { - 0% { - opacity: 0; - transform: translateY(10px); - } - 100% { - opacity: 1; - transform: translateY(0); - } -} - -.bsky-fade-in { - animation: fade-in 0.5s ease-in-out; -}