mirror of
https://github.com/tooot-app/app
synced 2025-04-06 22:51:05 +02:00
129 lines
3.5 KiB
TypeScript
129 lines
3.5 KiB
TypeScript
import { debounce, differenceWith, isEqual } from 'lodash'
|
|
import React, { createElement, Dispatch } from 'react'
|
|
import { Text } from 'react-native'
|
|
import { FetchOptions } from 'react-query/types/core/query'
|
|
import Autolinker from '@root/modules/autolinker'
|
|
import { useTheme } from '@utils/styles/ThemeManager'
|
|
import { ComposeAction, ComposeState } from './utils/types'
|
|
import { instanceConfigurationStatusCharsURL } from './Root'
|
|
|
|
export interface Params {
|
|
textInput: ComposeState['textInputFocus']['current']
|
|
composeDispatch: Dispatch<ComposeAction>
|
|
content: string
|
|
refetch?: (options?: FetchOptions | undefined) => Promise<any>
|
|
disableDebounce?: boolean
|
|
}
|
|
|
|
const TagText = ({ text }: { text: string }) => {
|
|
const { colors } = useTheme()
|
|
|
|
return <Text style={{ color: colors.blue }}>{text}</Text>
|
|
}
|
|
|
|
const debouncedSuggestions = debounce(
|
|
(composeDispatch, tag) => {
|
|
composeDispatch({ type: 'tag', payload: tag })
|
|
},
|
|
500,
|
|
{
|
|
trailing: true
|
|
}
|
|
)
|
|
|
|
let prevTags: ComposeState['tag'][] = []
|
|
|
|
const formatText = ({
|
|
textInput,
|
|
composeDispatch,
|
|
content,
|
|
disableDebounce = false
|
|
}: Params) => {
|
|
const tags: ComposeState['tag'][] = []
|
|
Autolinker.link(content, {
|
|
email: false,
|
|
phone: false,
|
|
mention: 'mastodon',
|
|
hashtag: 'twitter',
|
|
replaceFn: props => {
|
|
const type = props.getType()
|
|
let newType: 'url' | 'accounts' | 'hashtags'
|
|
switch (type) {
|
|
case 'mention':
|
|
newType = 'accounts'
|
|
break
|
|
case 'hashtag':
|
|
newType = 'hashtags'
|
|
break
|
|
default:
|
|
newType = 'url'
|
|
break
|
|
}
|
|
tags.push({
|
|
type: newType,
|
|
text: props.getMatchedText(),
|
|
offset: props.getOffset(),
|
|
length: props.getMatchedText().length
|
|
})
|
|
return
|
|
}
|
|
})
|
|
|
|
const changedTag = differenceWith(tags, prevTags, isEqual)
|
|
if (changedTag.length > 0 && !disableDebounce) {
|
|
if (changedTag[0]?.type !== 'url') {
|
|
debouncedSuggestions(composeDispatch, changedTag[0])
|
|
}
|
|
} else {
|
|
debouncedSuggestions.cancel()
|
|
composeDispatch({ type: 'tag', payload: undefined })
|
|
}
|
|
prevTags = tags
|
|
let _content = content
|
|
let pointer = 0
|
|
let contentLength: number = 0
|
|
const children = []
|
|
tags.forEach((tag, index) => {
|
|
if (tag) {
|
|
const prev = _content.substr(0, tag.offset - pointer)
|
|
const main = _content.substr(tag.offset - pointer, tag.length)
|
|
const next = _content.substr(tag.offset - pointer + tag.length)
|
|
children.push(prev)
|
|
contentLength = contentLength + prev.length
|
|
children.push(<TagText key={index} text={main} />)
|
|
switch (tag.type) {
|
|
case 'url':
|
|
contentLength = contentLength + instanceConfigurationStatusCharsURL
|
|
break
|
|
case 'accounts':
|
|
const theMatch = main.match(/@/g)
|
|
if (theMatch && theMatch.length > 1) {
|
|
contentLength =
|
|
contentLength + main.split(new RegExp('(@.*?)@'))[1].length
|
|
} else {
|
|
contentLength = contentLength + main.length
|
|
}
|
|
break
|
|
case 'hashtags':
|
|
contentLength = contentLength + main.length
|
|
break
|
|
}
|
|
_content = next
|
|
pointer = pointer + prev.length + tag.length
|
|
}
|
|
})
|
|
children.push(_content)
|
|
contentLength = contentLength + _content.length
|
|
|
|
composeDispatch({
|
|
type: textInput,
|
|
payload: {
|
|
count: contentLength,
|
|
raw: content,
|
|
formatted: createElement(Text, null, children)
|
|
}
|
|
})
|
|
}
|
|
|
|
export default formatText
|