generated from Klectr/KTemplate
fix: fix linter and type errors
This commit is contained in:
parent
f436b11102
commit
fee06527a8
@ -1,5 +1,6 @@
|
||||
import { NotesSigal } from "../../signals"
|
||||
import notes from "../../signals/notes"
|
||||
import { CardTypes } from "../../types"
|
||||
import { updateLocalStorage } from "../../utils/localStorage"
|
||||
import { Tooltip } from "./Tooltip"
|
||||
import { defaultClassName } from "./utils"
|
||||
@ -7,7 +8,7 @@ import { defaultClassName } from "./utils"
|
||||
export function StickyNoteButton() {
|
||||
function _handleClick(e: MouseEvent) {
|
||||
NotesSigal.default.addNote({
|
||||
type: "note",
|
||||
type: CardTypes.NOTES,
|
||||
title: "New Note",
|
||||
contents: "",
|
||||
position: {
|
||||
@ -19,7 +20,7 @@ export function StickyNoteButton() {
|
||||
h: 200
|
||||
}
|
||||
})
|
||||
updateLocalStorage("notes", notes.notes.value)
|
||||
updateLocalStorage(CardTypes.NOTES, notes.notes)
|
||||
}
|
||||
|
||||
return (
|
||||
|
@ -3,13 +3,14 @@ import { TextSignal } from "../../signals";
|
||||
import texts from "../../signals/texts";
|
||||
import { updateLocalStorage } from "../../utils/localStorage";
|
||||
import { defaultClassName } from "./utils";
|
||||
import { CardTypes } from "../../types";
|
||||
|
||||
export function TextButton() {
|
||||
|
||||
function _handleClick(e: MouseEvent) {
|
||||
TextSignal.default.addText({
|
||||
fontSize: 84,
|
||||
type: "texts",
|
||||
type: CardTypes.TEXTS,
|
||||
title: "New Note",
|
||||
contents: "todo: fill me",
|
||||
position: {
|
||||
@ -21,7 +22,7 @@ export function TextButton() {
|
||||
h: 100
|
||||
}
|
||||
})
|
||||
updateLocalStorage("texts", texts.texts).notify()
|
||||
updateLocalStorage(CardTypes.TEXTS, texts.texts).notify()
|
||||
}
|
||||
|
||||
return (
|
||||
|
@ -1,4 +1 @@
|
||||
export * from "./CanvasItem"
|
||||
export * from "./CanvasControls"
|
||||
export * from "./InfinateCanvas"
|
||||
export * from "./CardSelector"
|
||||
|
Loading…
Reference in New Issue
Block a user