mirror of
https://github.com/elk-zone/elk
synced 2024-11-27 14:28:10 +09:00
feat: StatusQuote interface (experimental)
This commit is contained in:
parent
1180311984
commit
60b0bdb264
@ -24,7 +24,9 @@ const providerName = $computed(() => props.card.providerName ? props.card.provid
|
|||||||
const gitHubCards = $(useFeatureFlag('experimentalGitHubCards'))
|
const gitHubCards = $(useFeatureFlag('experimentalGitHubCards'))
|
||||||
|
|
||||||
// checks if title contains a username
|
// checks if title contains a username
|
||||||
const isMastodonLink = props.card.title.match(/@+[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}/gi)
|
const usernames = props.card.title.match(/@+[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}/gi)
|
||||||
|
const isMastodonLink = usernames?.length === 1 && props.card.type === 'link'
|
||||||
|
const username = isMastodonLink ? usernames[0] : ''
|
||||||
|
|
||||||
// TODO: handle card.type: 'photo' | 'video' | 'rich';
|
// TODO: handle card.type: 'photo' | 'video' | 'rich';
|
||||||
const cardTypeIconMap: Record<CardType, string> = {
|
const cardTypeIconMap: Record<CardType, string> = {
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import type { Card } from 'masto'
|
import type { Card } from 'masto'
|
||||||
|
import type { StatusQuote } from '~~/composables/status-quote'
|
||||||
|
|
||||||
defineProps<{
|
const props = defineProps<{
|
||||||
card: Card
|
card: Card
|
||||||
}>()
|
}>()
|
||||||
|
|
||||||
@ -11,6 +12,50 @@ defineProps<{
|
|||||||
* - generate user profile link
|
* - generate user profile link
|
||||||
* - quotation icon ?
|
* - quotation icon ?
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
{
|
||||||
|
"url": "https://hachyderm.io/@hi_mayank/109638087773020859",
|
||||||
|
"title": "Mayank :verified: (@hi_mayank@hachyderm.io)",
|
||||||
|
"description": "this article from @ben@a11y.info is of course excellent https://benmyers.dev/blog/semantic-selectors/\n\nhowever, in practice, i have found myself unable to fully utilize this approach....\n\ntwo examples:\n\n1. an input with a disabled/required attribute can be styled by targeting `:disabled` or `:required` but styling its label probably needs a data attribute or class\n\n2. vertical tabs can be styled by targeting `aria-orientation` but its content or wrapper probably needs a data attribute or class.\n\n(cont...)",
|
||||||
|
"type": "link",
|
||||||
|
"author_name": "",
|
||||||
|
"author_url": "",
|
||||||
|
"provider_name": "Hachyderm.io",
|
||||||
|
"provider_url": "",
|
||||||
|
"html": "",
|
||||||
|
"width": 400,
|
||||||
|
"height": 400,
|
||||||
|
"image": "https://media.mas.to/masto-public/cache/preview_cards/images/017/761/272/original/e8ce83dfa2e4c64d.jpeg",
|
||||||
|
"embed_url": "",
|
||||||
|
"blurhash": "UREyiOM{-=D%_4IURiRjRiWBM{%M%NRjWCWA"
|
||||||
|
}
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
// build the Status from Card
|
||||||
|
const card = $computed(() => props.card)
|
||||||
|
const usernames = card.title.match(/@+[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}/gi)
|
||||||
|
const fullUserName = usernames?.length && usernames[0]
|
||||||
|
let username, domain
|
||||||
|
if (fullUserName) {
|
||||||
|
username = fullUserName.split('@')[1]
|
||||||
|
domain = fullUserName.split('@')[2]
|
||||||
|
}
|
||||||
|
const isSquare = card.width === card.height
|
||||||
|
const avatar = isSquare ? card.image : '' // todo: default avatar
|
||||||
|
const status: StatusQuote = {
|
||||||
|
id: '',
|
||||||
|
uri: '',
|
||||||
|
createdAt: '',
|
||||||
|
editedAt: null,
|
||||||
|
account: {
|
||||||
|
username: username || '',
|
||||||
|
displayName: 'FAKE NAME', // todo update
|
||||||
|
avatar: avatar || '',
|
||||||
|
},
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
10
composables/status-quote.ts
Normal file
10
composables/status-quote.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import type { Status } from 'masto'
|
||||||
|
|
||||||
|
type RecursivePartial<T> = {
|
||||||
|
[P in keyof T]?:
|
||||||
|
T[P] extends (infer U)[] ? RecursivePartial<U>[] :
|
||||||
|
T[P] extends object ? RecursivePartial<T[P]> :
|
||||||
|
T[P];
|
||||||
|
}
|
||||||
|
|
||||||
|
export type StatusQuote = RecursivePartial<Status>
|
Loading…
Reference in New Issue
Block a user