mirror of
https://github.com/JackyKLai/kunkun-ext-letterboxd.git
synced 2025-04-04 10:16:43 +00:00
Use kv instead of db to store username
This commit is contained in:
parent
584be90837
commit
3fdc014367
40
src/index.ts
40
src/index.ts
@ -5,7 +5,7 @@ import {
|
|||||||
IconEnum,
|
IconEnum,
|
||||||
List,
|
List,
|
||||||
Form,
|
Form,
|
||||||
db,
|
kv,
|
||||||
open,
|
open,
|
||||||
fetch,
|
fetch,
|
||||||
toast,
|
toast,
|
||||||
@ -22,7 +22,7 @@ import {
|
|||||||
|
|
||||||
const LETTERBOXD_URL = "https://letterboxd.com"
|
const LETTERBOXD_URL = "https://letterboxd.com"
|
||||||
const LETTERBOXD_TMDB_URL = `${LETTERBOXD_URL}/tmdb`
|
const LETTERBOXD_TMDB_URL = `${LETTERBOXD_URL}/tmdb`
|
||||||
const DB_SEARCH_TEXT = 'letterboxdUser'
|
const USERNAME_KEY = 'letterboxdUser'
|
||||||
|
|
||||||
function convertActions(actions: any) {
|
function convertActions(actions: any) {
|
||||||
return actions.map((action: any) => {
|
return actions.map((action: any) => {
|
||||||
@ -52,48 +52,18 @@ async function getFinalURL(initialURL: string) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function setLetterboxdUsername(username: string) {
|
|
||||||
const existingUsername = await db.search({ searchText: DB_SEARCH_TEXT });
|
|
||||||
if (!username) {
|
|
||||||
if (existingUsername.length > 0) {
|
|
||||||
await db.delete(existingUsername[0].dataId);
|
|
||||||
}
|
|
||||||
} else if (existingUsername.length > 0) {
|
|
||||||
await db.update({
|
|
||||||
dataId: existingUsername[0].dataId,
|
|
||||||
data: JSON.stringify({ letterboxdUser: username }),
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
await db.add({
|
|
||||||
data: JSON.stringify({ letterboxdUser: username }),
|
|
||||||
dataType: 'preference',
|
|
||||||
searchText: DB_SEARCH_TEXT,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function getLetterboxdUsername() {
|
|
||||||
const existingUsername = await db.search({ searchText: DB_SEARCH_TEXT, fields: ['data', 'search_text'] });
|
|
||||||
if (existingUsername.length > 0) {
|
|
||||||
if (existingUsername[0].data) {
|
|
||||||
return JSON.parse(existingUsername[0].data).letterboxdUser;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
class LetterboxdCmd extends TemplateUiCommand {
|
class LetterboxdCmd extends TemplateUiCommand {
|
||||||
highlightedItem: string = ""
|
highlightedItem: string = ""
|
||||||
highlightedMovieId: string = ""
|
highlightedMovieId: string = ""
|
||||||
currentLetterboxdUsername: string = ""
|
currentLetterboxdUsername: string = ""
|
||||||
async onFormSubmit(value: Record<string, any>): Promise<void> {
|
async onFormSubmit(value: Record<string, any>): Promise<void> {
|
||||||
await setLetterboxdUsername(value['clear-username'] ? '' : value.username)
|
await kv.set(USERNAME_KEY, value['clear-username'] ? '' : value.username)
|
||||||
this.currentLetterboxdUsername = value.username
|
this.currentLetterboxdUsername = value.username
|
||||||
toast.success("Letterboxd username " + value['clear-username'] ? 'removed.' : `set to: ${value.username}`)
|
toast.success("Letterboxd username " + value['clear-username'] ? 'removed.' : `set to: ${value.username}`)
|
||||||
this.load()
|
this.load()
|
||||||
}
|
}
|
||||||
async load() {
|
async load() {
|
||||||
this.currentLetterboxdUsername = await getLetterboxdUsername();
|
this.currentLetterboxdUsername = await kv.get(USERNAME_KEY) ?? '';
|
||||||
await ui.setSearchBarPlaceholder("Search for a movie...");
|
await ui.setSearchBarPlaceholder("Search for a movie...");
|
||||||
await ui.render(
|
await ui.render(
|
||||||
new List.List({
|
new List.List({
|
||||||
@ -195,7 +165,7 @@ class LetterboxdCmd extends TemplateUiCommand {
|
|||||||
label: 'Letterboxd Username',
|
label: 'Letterboxd Username',
|
||||||
description: 'Providing your Letterboxd username will enable additional actions like viewing your friends\' reviews and lists.',
|
description: 'Providing your Letterboxd username will enable additional actions like viewing your friends\' reviews and lists.',
|
||||||
optional: true,
|
optional: true,
|
||||||
placeholder: await getLetterboxdUsername() ?? 'Enter your Letterboxd username'
|
placeholder: await kv.get(USERNAME_KEY) ?? 'Enter your Letterboxd username'
|
||||||
})
|
})
|
||||||
]
|
]
|
||||||
if (this.currentLetterboxdUsername) {
|
if (this.currentLetterboxdUsername) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user