2023-01-08 15:21:09 +09:00
|
|
|
import type { mastodon } from 'masto'
|
2022-11-23 08:42:20 +09:00
|
|
|
|
2023-04-24 04:40:55 +09:00
|
|
|
export const UserLinkRE = /^(?:https:\/)?\/([^/]+)\/@([^/]+)$/
|
2023-04-29 02:33:34 +09:00
|
|
|
export const TagLinkRE = /^https?:\/\/([^/]+)\/tags\/([^/]+)\/?$/
|
2022-12-21 16:46:36 +09:00
|
|
|
export const HTMLTagRE = /<[^>]+>/g
|
2022-11-23 12:48:01 +09:00
|
|
|
|
2022-11-21 22:21:53 +09:00
|
|
|
export function getDataUrlFromArr(arr: Uint8ClampedArray, w: number, h: number) {
|
|
|
|
if (typeof w === 'undefined' || typeof h === 'undefined')
|
|
|
|
w = h = Math.sqrt(arr.length / 4)
|
|
|
|
|
|
|
|
const canvas = document.createElement('canvas')
|
|
|
|
const ctx = canvas.getContext('2d')!
|
|
|
|
|
|
|
|
canvas.width = w
|
|
|
|
canvas.height = h
|
|
|
|
|
|
|
|
const imgData = ctx.createImageData(w, h)
|
|
|
|
imgData.data.set(arr)
|
|
|
|
ctx.putImageData(imgData, 0, 0)
|
|
|
|
|
|
|
|
return canvas.toDataURL()
|
|
|
|
}
|
2022-11-23 08:42:20 +09:00
|
|
|
|
2023-01-08 15:21:09 +09:00
|
|
|
export function emojisArrayToObject(emojis: mastodon.v1.CustomEmoji[]) {
|
2022-11-23 08:42:20 +09:00
|
|
|
return Object.fromEntries(emojis.map(i => [i.shortcode, i]))
|
|
|
|
}
|
2022-11-24 12:42:03 +09:00
|
|
|
|
2022-11-30 15:35:12 +09:00
|
|
|
export function noop() {}
|
|
|
|
|
2023-03-31 04:01:24 +09:00
|
|
|
export function useIsMac() {
|
2023-02-12 20:48:52 +09:00
|
|
|
const headers = useRequestHeaders(['user-agent'])
|
|
|
|
return computed(() => headers['user-agent']?.includes('Macintosh')
|
2022-12-02 17:52:00 +09:00
|
|
|
?? navigator?.platform?.includes('Mac') ?? false)
|
2023-02-12 20:48:52 +09:00
|
|
|
}
|
2022-12-21 16:46:36 +09:00
|
|
|
|
2023-03-31 04:01:24 +09:00
|
|
|
export function isEmptyObject(object: Object) {
|
|
|
|
return Object.keys(object).length === 0
|
|
|
|
}
|
2022-12-26 17:50:11 +09:00
|
|
|
|
2022-12-21 16:46:36 +09:00
|
|
|
export function removeHTMLTags(str: string) {
|
|
|
|
return str.replaceAll(HTMLTagRE, '')
|
|
|
|
}
|