begin refactoring card types

This commit is contained in:
Triston Armstrong 2024-10-23 11:48:47 +07:00
parent a7a84a24e1
commit 958124cd9e
Signed by: tristonarmstrong
GPG Key ID: A23B48AE45EB6EFE
7 changed files with 55 additions and 23 deletions

View File

@ -27,7 +27,7 @@ export function ImageCard({ key: itemKey, data: item }: ImageCard.ImageCardProps
function debounceLSUpdate(time?: number) { function debounceLSUpdate(time?: number) {
debounce(() => { debounce(() => {
updateLocalStorage("images", images.images.value) updateLocalStorage("images", images.images).notify()
}, time) }, time)
} }

View File

@ -47,7 +47,7 @@ export function ImageCardButton() {
}) })
try { try {
updateLocalStorage("images", images.images.value) updateLocalStorage("images", images.images).notify()
} catch (e: unknown) { } catch (e: unknown) {
if (e instanceof DOMException) { if (e instanceof DOMException) {
if (e.name !== 'QuotaExceededError') return if (e.name !== 'QuotaExceededError') return

View File

@ -1,6 +1,7 @@
import images from "../../signals/images" import images, { ImageCardType } from "../../signals/images"
import notes from "../../signals/notes" import notes, { NoteCardType } from "../../signals/notes"
import { Card } from "../../types" import texts, { TextCardType } from "../../signals/texts"
import { Card, CardTypes } from "../../types"
import { convertBase64ToJson } from "../../utils/convertBase64ToJson" import { convertBase64ToJson } from "../../utils/convertBase64ToJson"
import { updateLocalStorage } from "../../utils/localStorage" import { updateLocalStorage } from "../../utils/localStorage"
import { Tooltip } from "./Tooltip" import { Tooltip } from "./Tooltip"
@ -9,6 +10,12 @@ import { defaultClassName } from "./utils"
export function ImportButton() { export function ImportButton() {
function _handleImport() { function _handleImport() {
// guard clause to prevent overwriting existing cards
if (images.images.value || notes.notes.value) {
const isConfirmed = confirm("Are you sure you want to overwrite your existing cards?")
if (!isConfirmed) return
}
const input = document.createElement('input') const input = document.createElement('input')
input.type = 'file' input.type = 'file'
input.accept = ".json" input.accept = ".json"
@ -21,24 +28,33 @@ export function ImportButton() {
let content = readerEvent.target?.result; let content = readerEvent.target?.result;
// get only the base64 parts and not any identifiers // get only the base64 parts and not any identifiers
content = (content as string).split(',')[1] content = (content as string).split(',')[1]
const data: Record<string, Card<'notes'> | Card<'images'>> = convertBase64ToJson(content) const data: Record<string, Card<CardTypes>> = convertBase64ToJson(content)
console.log(data)
for (let key in data) { for (let key in data) {
const item = data[key] const item = data[key]
if (item.type == 'images') { const { id, ...rest } = item
const { id, ...rest } = item console.log(id, rest)
images.addImage(rest) switch (item.type) {
} case CardTypes:
console.log("adding image: ", rest)
if (item.type == 'notes') { images.addImage(rest as ImageCardType)
const { id, ...rest } = item break;
notes.addNote(rest) case 'notes':
notes.addNote(rest as NoteCardType)
break;
case 'texts':
texts.addText(rest as TextCardType)
break;
default:
break;
} }
} }
updateLocalStorage('notes', notes.notes.value) console.log("images: ", images.images.value)
updateLocalStorage('images', images.images.value)
notes.notes.notify() updateLocalStorage('notes', notes.notes).notify()
images.images.notify() updateLocalStorage('images', images.images).notify()
updateLocalStorage('texts', texts.texts).notify()
} }
} }
input.click() input.click()

View File

@ -21,7 +21,7 @@ export function TextButton() {
h: 100 h: 100
} }
}) })
updateLocalStorage("texts", texts.texts.value) updateLocalStorage("texts", texts.texts).notify()
} }
return ( return (

View File

@ -15,6 +15,7 @@ function addImage(data: Omit<ImageCardType, "id">) {
...data, ...data,
id: crypto.randomUUID(), id: crypto.randomUUID(),
} }
console.log("adding image: ", newCard)
images.value[newCard.id] = newCard images.value[newCard.id] = newCard
images.notify() images.notify()
focusedItem.value = newCard.id focusedItem.value = newCard.id

View File

@ -1,7 +1,12 @@
export type CardTypes = "notes" | "images" | "texts"
export type positionCoords = { x: number; y: number } export type positionCoords = { x: number; y: number }
export type dimensionCoords = { w: number; h: number } export type dimensionCoords = { w: number; h: number }
export enum CardTypes {
NOTES = "notes",
IMAGES = "images",
TEXTS = "texts",
}
type Base64 = string type Base64 = string
export interface Card<Ttype extends CardTypes> { export interface Card<Ttype extends CardTypes> {

View File

@ -1,8 +1,18 @@
import { CardTypes } from "../types" import { Signal } from "kaioken"
import { Card, CardTypes } from "../types"
export function updateLocalStorage( export function updateLocalStorage(
location: CardTypes, location: CardTypes,
collection: unknown[] | Record<string, unknown> collection: Signal<Record<string, Card<CardTypes>>>
) { ) {
localStorage.setItem(location, JSON.stringify(collection)) try {
localStorage.setItem(location, JSON.stringify(collection.value))
} catch (e) {
// throw new Error("Could not update local storage")
throw new DOMException(
"Could not update local storage",
"LocalStorageError"
)
}
return collection
} }