fix: fix issue with delete button not working #17

Merged
tristonarmstrong merged 1 commits from 7-bug-broke_delete_button into main 2024-03-22 05:05:51 +00:00
2 changed files with 30 additions and 10 deletions
Showing only changes of commit 9a6c8c5f91 - Show all commits

View File

@ -1,4 +1,3 @@
import { writeTextFile } from "@tauri-apps/api/fs"
import { createStore } from "kaioken"
export const useStationsStore = createStore(
@ -13,10 +12,15 @@ export const useStationsStore = createStore(
//@ts-ignore
return newState
},
delete: (stationId) =>
set(
(state) => state?.filter((station) => station.id !== stationId) ?? []
),
rmStation: (stationId): Station[] => {
let newState: Station[] | null = null
set((state) => {
newState = state?.filter((station) => station.id !== stationId) ?? []
return newState
})
//@ts-ignore
return newState
},
override: (stationsList: Station[]) => {
set((_state) => stationsList)
},

View File

@ -1,15 +1,31 @@
import { navigate } from "kaioken"
import { Station, useSelectStationStore } from "../hooks/stationStores"
import { useStationsStore } from "../hooks/stationStores"
import { writeFile } from "@tauri-apps/api/fs"
import { useStorageStore } from "../hooks/storageStores"
export default function Main() {
const { make } = useSelectStationStore()
const stations = useStationsStore.getState()
const { value, rmStation } = useStationsStore()
const { value: storageFile } = useStorageStore()
const stations = value
function _handleStationClick(station: Station) {
return function() {
make(station)
navigate('/player')
}
}
function _handleDeleteClick(s: Station) {
return function(ev: MouseEvent) {
ev.preventDefault()
ev.stopPropagation()
const newStations = rmStation(s.id)
if (!storageFile) return
writeFile(storageFile, JSON.stringify(newStations))
}
}
if (!stations?.length) {
return (
@ -33,11 +49,11 @@ export default function Main() {
<div className="p-4 flex flex-col align-between h-full gap-2">
{stations.map((s) => (
<button onclick={() => _handleStationClick(s)} className="paper p-2 flex flex-row border gap-4">
<button onclick={_handleStationClick(s)} className="paper p-2 flex flex-row border gap-4">
<img src={s.avatar} width={40} height={40} className="w-20 rounded-xl" />
<div className="flex flex-col gap-2 w-full">
<h2 className="text-xl">{s.title}</h2>
<button className="border border-red-500 rounded w-full text-red-500 px-4">Delete</button>
<button onclick={_handleDeleteClick(s)} className="border border-red-500 rounded w-full text-red-500 px-4 hover:bg-red-500 hover:text-white">Delete</button>
</div>
</button>
))}