153e4f4fcd
Actually fixes #694 by providing an option to make the labels like they used to be.
65 lines
2.1 KiB
JavaScript
65 lines
2.1 KiB
JavaScript
import { getAccountAccessibleName } from './getAccountAccessibleName'
|
|
import { POST_PRIVACY_OPTIONS } from '../_static/statuses'
|
|
import { htmlToPlainText } from '../_utils/htmlToPlainText'
|
|
|
|
function getNotificationText (notification, omitEmojiInDisplayNames) {
|
|
if (!notification) {
|
|
return
|
|
}
|
|
let notificationAccountDisplayName = getAccountAccessibleName(notification.account, omitEmojiInDisplayNames)
|
|
if (notification.type === 'reblog') {
|
|
return `${notificationAccountDisplayName} boosted your status`
|
|
} else if (notification.type === 'favourite') {
|
|
return `${notificationAccountDisplayName} favorited your status`
|
|
}
|
|
}
|
|
|
|
function getPrivacyText (visibility) {
|
|
for (let option of POST_PRIVACY_OPTIONS) {
|
|
if (option.key === visibility) {
|
|
return option.label
|
|
}
|
|
}
|
|
}
|
|
|
|
function getReblogText (reblog, account, omitEmojiInDisplayNames) {
|
|
if (!reblog) {
|
|
return
|
|
}
|
|
let accountDisplayName = getAccountAccessibleName(account, omitEmojiInDisplayNames)
|
|
return `Boosted by ${accountDisplayName}`
|
|
}
|
|
|
|
function cleanupText (text) {
|
|
return text.replace(/\s+/g, ' ').trim()
|
|
}
|
|
|
|
export function getAccessibleLabelForStatus (originalAccount, account, content,
|
|
timeagoFormattedDate, spoilerText, showContent,
|
|
reblog, notification, visibility, omitEmojiInDisplayNames,
|
|
disableLongAriaLabels) {
|
|
let originalAccountDisplayName = getAccountAccessibleName(originalAccount, omitEmojiInDisplayNames)
|
|
let contentTextToShow = (showContent || !spoilerText)
|
|
? cleanupText(htmlToPlainText(content))
|
|
: `Content warning: ${cleanupText(spoilerText)}`
|
|
let privacyText = getPrivacyText(visibility)
|
|
|
|
if (disableLongAriaLabels) {
|
|
// Long text can crash NVDA; allow users to shorten it like we had it before.
|
|
// https://github.com/nolanlawson/pinafore/issues/694
|
|
return `${privacyText} status by ${originalAccountDisplayName}`
|
|
}
|
|
|
|
let values = [
|
|
getNotificationText(notification, omitEmojiInDisplayNames),
|
|
originalAccountDisplayName,
|
|
contentTextToShow,
|
|
timeagoFormattedDate,
|
|
`@${originalAccount.acct}`,
|
|
privacyText,
|
|
getReblogText(reblog, account, omitEmojiInDisplayNames)
|
|
].filter(Boolean)
|
|
|
|
return values.join(', ')
|
|
}
|