generated from Klectr/KTemplate
add tooltips to creation buttons
This commit is contained in:
parent
a09724b38a
commit
6bbed4100a
@ -1,4 +1,5 @@
|
|||||||
import { ImagesSignal, NotesSigal } from "../../signals"
|
import { ImagesSignal, NotesSigal } from "../../signals"
|
||||||
|
import { Tooltip } from "./Tooltip"
|
||||||
import { defaultClassName } from "./utils"
|
import { defaultClassName } from "./utils"
|
||||||
|
|
||||||
export function ExportButton() {
|
export function ExportButton() {
|
||||||
@ -25,6 +26,7 @@ export function ExportButton() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<Tooltip message="Export Json File">
|
||||||
<svg
|
<svg
|
||||||
onclick={_handleExport}
|
onclick={_handleExport}
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
@ -43,5 +45,6 @@ export function ExportButton() {
|
|||||||
<polyline points="7 10 12 15 17 10" />
|
<polyline points="7 10 12 15 17 10" />
|
||||||
<line x1="12" x2="12" y1="15" y2="3" />
|
<line x1="12" x2="12" y1="15" y2="3" />
|
||||||
</svg>
|
</svg>
|
||||||
|
</Tooltip>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { ImagesSignal } from "../../signals"
|
import { ImagesSignal } from "../../signals"
|
||||||
import images from "../../signals/images"
|
import images from "../../signals/images"
|
||||||
import { updateLocalStorage } from "../../utils/localStorage"
|
import { updateLocalStorage } from "../../utils/localStorage"
|
||||||
|
import { Tooltip } from "./Tooltip"
|
||||||
import { defaultClassName } from "./utils"
|
import { defaultClassName } from "./utils"
|
||||||
|
|
||||||
export function ImageCardButton() {
|
export function ImageCardButton() {
|
||||||
@ -48,6 +49,7 @@ export function ImageCardButton() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<Tooltip message="Create an Image">
|
||||||
<svg
|
<svg
|
||||||
onclick={_handleClick}
|
onclick={_handleClick}
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
@ -74,5 +76,6 @@ export function ImageCardButton() {
|
|||||||
<path
|
<path
|
||||||
d="m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" />
|
d="m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" />
|
||||||
</svg>
|
</svg>
|
||||||
|
</Tooltip>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ import notes from "../../signals/notes"
|
|||||||
import { Card } from "../../types"
|
import { Card } 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 { defaultClassName } from "./utils"
|
import { defaultClassName } from "./utils"
|
||||||
|
|
||||||
export function ImportButton() {
|
export function ImportButton() {
|
||||||
@ -44,6 +45,7 @@ export function ImportButton() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<Tooltip message="Import Json File">
|
||||||
<svg
|
<svg
|
||||||
onclick={_handleImport}
|
onclick={_handleImport}
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
@ -62,5 +64,6 @@ export function ImportButton() {
|
|||||||
<polyline points="7 10 12 15 17 10" />
|
<polyline points="7 10 12 15 17 10" />
|
||||||
<line x1="12" x2="12" y1="15" y2="3" />
|
<line x1="12" x2="12" y1="15" y2="3" />
|
||||||
</svg>
|
</svg>
|
||||||
|
</Tooltip>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { NotesSigal } from "../../signals"
|
import { NotesSigal } from "../../signals"
|
||||||
import notes from "../../signals/notes"
|
import notes from "../../signals/notes"
|
||||||
import { updateLocalStorage } from "../../utils/localStorage"
|
import { updateLocalStorage } from "../../utils/localStorage"
|
||||||
|
import { Tooltip } from "./Tooltip"
|
||||||
import { defaultClassName } from "./utils"
|
import { defaultClassName } from "./utils"
|
||||||
|
|
||||||
export function StickyNoteButton() {
|
export function StickyNoteButton() {
|
||||||
@ -22,6 +23,7 @@ export function StickyNoteButton() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<Tooltip message="Create a Sticky Note">
|
||||||
<svg
|
<svg
|
||||||
onclick={_handleClick}
|
onclick={_handleClick}
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
@ -39,6 +41,7 @@ export function StickyNoteButton() {
|
|||||||
<path
|
<path
|
||||||
d="M15 3v4a2 2 0 0 0 2 2h4" />
|
d="M15 3v4a2 2 0 0 0 2 2h4" />
|
||||||
</svg>
|
</svg>
|
||||||
|
</Tooltip>
|
||||||
)
|
)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
|
import { Tooltip } from "./Tooltip";
|
||||||
import { defaultClassName } from "./utils";
|
import { defaultClassName } from "./utils";
|
||||||
|
|
||||||
export function TextButton() {
|
export function TextButton() {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<Tooltip message="Create a Text Node">
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
width="24"
|
width="24"
|
||||||
@ -19,5 +21,6 @@ export function TextButton() {
|
|||||||
<path d="m6 16 6-12 6 12" />
|
<path d="m6 16 6-12 6 12" />
|
||||||
<path d="M8 12h8" />
|
<path d="M8 12h8" />
|
||||||
</svg>
|
</svg>
|
||||||
|
</Tooltip>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
8
src/components/cardSelector/Tooltip.tsx
Normal file
8
src/components/cardSelector/Tooltip.tsx
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
export function Tooltip({ children, message }: { children: JSX.Element, message: string }) {
|
||||||
|
return (
|
||||||
|
<div title={message}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user