mirror of
https://github.com/misode/misode.github.io.git
synced 2026-04-23 07:10:41 +00:00
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import { useEffect, useState } from 'preact/hooks'
|
|
import { useLocale } from '../../contexts/index.js'
|
|
import { useCanvas } from '../../hooks/index.js'
|
|
import { decorator } from '../../previews/index.js'
|
|
import { randomSeed } from '../../Utils.js'
|
|
import { Btn } from '../index.js'
|
|
import type { PreviewProps } from './index.js'
|
|
|
|
export const DecoratorPreview = ({ data, version, shown }: PreviewProps) => {
|
|
const { locale } = useLocale()
|
|
const [scale, setScale] = useState(4)
|
|
const [seed, setSeed] = useState(randomSeed())
|
|
|
|
const state = JSON.stringify(data)
|
|
|
|
const { canvas, redraw } = useCanvas({
|
|
size() {
|
|
return [scale * 16, scale * 16]
|
|
},
|
|
async draw(img) {
|
|
decorator(data, img, { seed, version, size: [scale * 16, 128, scale * 16] })
|
|
},
|
|
}, [version, state, seed])
|
|
|
|
useEffect(() => {
|
|
if (shown) {
|
|
redraw()
|
|
}
|
|
}, [version, state, scale, seed, shown])
|
|
|
|
return <>
|
|
<div class="controls preview-controls">
|
|
<Btn icon="dash" tooltip={locale('zoom_out')}
|
|
onClick={() => setScale(Math.min(16, scale + 1))} />
|
|
<Btn icon="plus" tooltip={locale('zoom_in')}
|
|
onClick={() => setScale(Math.max(1, scale - 1))} />
|
|
<Btn icon="sync" tooltip={locale('generate_new_seed')}
|
|
onClick={() => setSeed(randomSeed())} />
|
|
</div>
|
|
<canvas ref={canvas} width="64" height="64"></canvas>
|
|
</>
|
|
}
|