mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 15:23:09 +02:00
c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
22 lines
543 B
TypeScript
22 lines
543 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { render } from 'buraha';
|
|
|
|
const canvas = new OffscreenCanvas(64, 64);
|
|
|
|
onmessage = (event) => {
|
|
// console.log(event.data);
|
|
if (!('id' in event.data && typeof event.data.id === 'string')) {
|
|
return;
|
|
}
|
|
if (!('hash' in event.data && typeof event.data.hash === 'string')) {
|
|
return;
|
|
}
|
|
|
|
render(event.data.hash, canvas);
|
|
const bitmap = canvas.transferToImageBitmap();
|
|
postMessage({ id: event.data.id, bitmap });
|
|
};
|