Fix various bugs and release

This commit is contained in:
Jacky Lai 2025-02-23 14:34:10 -05:00
parent 3501790343
commit ef44f867f8
No known key found for this signature in database
GPG Key ID: 362C22DB0752BDA7
2 changed files with 24 additions and 15 deletions

View File

@ -6,7 +6,7 @@
"url": "https://github.com/JackyKLai/kunkun-ext-letterboxd" "url": "https://github.com/JackyKLai/kunkun-ext-letterboxd"
}, },
"name": "kunkun-ext-letterboxd", "name": "kunkun-ext-letterboxd",
"version": "0.0.4", "version": "0.0.5",
"type": "module", "type": "module",
"kunkun": { "kunkun": {
"name": "Letterboxd", "name": "Letterboxd",

View File

@ -53,17 +53,21 @@ async function getFinalURL(initialURL: string) {
} }
class LetterboxdCmd extends TemplateUiCommand { class LetterboxdCmd extends TemplateUiCommand {
highlightedItem: string = ""
highlightedMovieId: string = "" highlightedMovieId: string = ""
currentLetterboxdUsername: string = ""
async onFormSubmit(value: Record<string, any>): Promise<void> { async onFormSubmit(value: Record<string, any>): Promise<void> {
await kv.set(USERNAME_KEY, value['clear-username'] ? '' : value.username) if (value.username) {
this.currentLetterboxdUsername = value.username await kv.set(USERNAME_KEY, value['clear-username'] ? '' : value.username)
toast.success(`Letterboxd username ${value['clear-username'] ? 'removed' : 'set to ' + value.username}.`) toast.success(`Letterboxd username set to ${value.username}.`)
this.load() }
if (value['clear-username']) {
await kv.delete(USERNAME_KEY)
toast.success(`Letterboxd username removed.`)
}
ui.goBack()
} }
async load() { async load() {
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({
@ -92,14 +96,18 @@ class LetterboxdCmd extends TemplateUiCommand {
} }
async onEnterPressedOnSearchBar(): Promise<void> { async onEnterPressedOnSearchBar(): Promise<void> {
if (!this.searchTerm) {
return
}
const url = `https://tmdb-kunkun.jackyklai.workers.dev/?search=${encodeURIComponent(this.searchTerm)}`; const url = `https://tmdb-kunkun.jackyklai.workers.dev/?search=${encodeURIComponent(this.searchTerm)}`;
const searchData = await (await fetch(url)).json(); const searchData = await (await fetch(url)).json();
let actions = convertActions(generalActions) let actions = convertActions(generalActions)
if (this.currentLetterboxdUsername) { if (await kv.get(USERNAME_KEY)) {
actions = actions.concat(convertActions(friendsActions)) actions = actions.concat(convertActions(friendsActions))
actions = actions.concat(convertActions(userActions)) actions = actions.concat(convertActions(userActions))
} }
actions = actions.concat(convertActions(specialActions)) actions = actions.concat(convertActions(specialActions))
ui.render(new List.List({}))
ui.render( ui.render(
new List.List({ new List.List({
filter: 'none', filter: 'none',
@ -126,18 +134,18 @@ class LetterboxdCmd extends TemplateUiCommand {
}) })
}) })
}) })
) )
ui.setSearchTerm('') ui.setSearchTerm('')
return Promise.resolve() return Promise.resolve()
} }
onHighlightedListItemChanged(value: string): Promise<void> { onHighlightedListItemChanged(value: string): Promise<void> {
this.highlightedItem = value
this.highlightedMovieId = value == 'search' ? '' : JSON.parse(value).id this.highlightedMovieId = value == 'search' ? '' : JSON.parse(value).id
return Promise.resolve() return Promise.resolve()
} }
async onActionSelected(value: string): Promise<void> { async onActionSelected(value: string): Promise<void> {
let letterboxdUsername = await kv.get(USERNAME_KEY)
if (actionsContainsValue(generalActions, value)) { if (actionsContainsValue(generalActions, value)) {
getFinalURL(`${LETTERBOXD_TMDB_URL}/${this.highlightedMovieId}`) getFinalURL(`${LETTERBOXD_TMDB_URL}/${this.highlightedMovieId}`)
.then((url) => { .then((url) => {
@ -148,14 +156,14 @@ class LetterboxdCmd extends TemplateUiCommand {
.then((url) => { .then((url) => {
const base_url = url.split('/film/')[0] const base_url = url.split('/film/')[0]
const movie_uri = url.split('/film/')[1] const movie_uri = url.split('/film/')[1]
open.url(`${base_url}/${this.currentLetterboxdUsername}/friends/film/${movie_uri}/${value}`) open.url(`${base_url}/${letterboxdUsername}/friends/film/${movie_uri}/${value}`)
}) })
} else if (actionsContainsValue(userActions, value)) { } else if (actionsContainsValue(userActions, value)) {
getFinalURL(`${LETTERBOXD_TMDB_URL}/${this.highlightedMovieId}`) getFinalURL(`${LETTERBOXD_TMDB_URL}/${this.highlightedMovieId}`)
.then((url) => { .then((url) => {
const base_url = url.split('/film/')[0] const base_url = url.split('/film/')[0]
const movie_uri = url.split('/film/')[1] const movie_uri = url.split('/film/')[1]
open.url(`${base_url}/${this.currentLetterboxdUsername}/film/${movie_uri}/${value}`) open.url(`${base_url}/${letterboxdUsername}/film/${movie_uri}/${value}`)
}) })
} else { } else {
if (value === 'settings') { if (value === 'settings') {
@ -168,7 +176,7 @@ class LetterboxdCmd extends TemplateUiCommand {
placeholder: await kv.get(USERNAME_KEY) ?? 'Enter your Letterboxd username' placeholder: await kv.get(USERNAME_KEY) ?? 'Enter your Letterboxd username'
}) })
] ]
if (this.currentLetterboxdUsername) { if (letterboxdUsername) {
formFields.push( formFields.push(
new Form.BooleanField({ new Form.BooleanField({
key: 'clear-username', key: 'clear-username',
@ -191,7 +199,8 @@ class LetterboxdCmd extends TemplateUiCommand {
} }
onListItemSelected(value: string): Promise<void> { onListItemSelected(value: string): Promise<void> {
if (value !== 'search') { if (value !== 'search' && this.searchTerm === '') {
this.highlightedMovieId = JSON.parse(value).id
open.url(`${LETTERBOXD_TMDB_URL}/${this.highlightedMovieId}`) open.url(`${LETTERBOXD_TMDB_URL}/${this.highlightedMovieId}`)
} }
return Promise.resolve() return Promise.resolve()