901feba6db
* Replace pluralize with plural or Plural * Replace all pluralize (defined by src/lib/strings/helpers.ts) with plural or Plural (defined by @lingui/macro) to make some UI elements translatable. * Delete pluralize() and related test. * Import @formatjs polyfill libraries for plural on ios and android - ios and andorid: import `@formtjs/intl-locale` and `@formatjs/intl-pluralrules` to polyfill `Intl.Locale` and `Intl.PluralRules` which are used in `plural()` and '<Plural />'. - update `plural` use in notification messages for better translation. * Rewrite to pass lint * Add Catalan plural polyfill * more replacement * import zh plural data for zh-CN * Refactor feed header components (#2964) * Move home-related files to view/com/home * Add HomeHeader in front of FeedTabBar * Move isDekstop check outside FeedsTabBar * Remove PWI logic from tabbar * Separate platform-specific layout from shared logic * Rename Home Feed Prefs to Following Feed Prefs (#2965) * use `useOpenLink` hook for links in ALF (#2975) * use `useOpenLink` hook for links in ALF * web only for `outline` * increase timeout to 15s (#2958) * Normalize relative day (#2874) * fix: normalize relative date * chore: add comments * refactor: skip flooring normalized diff * refactor: let -> const * fix: get own copy of date to prevent mutating * refactor: rounding does the same trick * Add handle validation to create account UI (#2959) * show uiState errors in the box as well simplify copy update ui for only letters and numbers add ui validation to handle selection * simplify names * Fix accidental text-node render --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com> * Make dim theme dim (#2966) * Make dim color scheme dim * Tweaks * Overall tweaks * We have to go darker * Tweak saturation of blues in dim * Increase contrast on dark-dark mode * adjust dim --------- Co-authored-by: Eric Bailey <git@esb.lol> Co-authored-by: Paul Frazee <pfrazee@gmail.com> Co-authored-by: Hailey <me@haileyok.com> * Fix dim mode unread notif color * use `showControls` to show/hide live text icon on ios (#2982) * Update .po files * fix reversed icons in validator 🤦 (#2991) * Adjust `windowSize` on `PostThread` `FlatList` (#2989) * adjust window size, cells batching period * rm batching period change * Pluralize 'follow(s)' * Include a space between the msgid count and "follower(s)/following(s)" so the translator can adjust the translated count line to fit within the Drawer. * pluralie '# following' * Fix & Update * Rewrite to use Plural * rmeove unused import * When commiting changes, disable 'simple-import-sort' plugin in .eslintrc.js to sync with bluesky-social:main * Revert simple-import-sort/imports related changes * Move ProfileHoverCard web to plural util * Followings -> following * Add plural following to hovercard * Followings -> Following --------- Co-authored-by: Takayuki KUSANO <kusano@tkusano.jp> Co-authored-by: Takayuki KUSANO <65759+tkusano@users.noreply.github.com> Co-authored-by: dan <dan.abramov@gmail.com> Co-authored-by: Hailey <me@haileyok.com> Co-authored-by: Mary <148872143+mary-ext@users.noreply.github.com> Co-authored-by: Eric Bailey <git@esb.lol>
71 lines
1.9 KiB
TypeScript
71 lines
1.9 KiB
TypeScript
export function enforceLen(
|
|
str: string,
|
|
len: number,
|
|
ellipsis = false,
|
|
mode: 'end' | 'middle' = 'end',
|
|
): string {
|
|
str = str || ''
|
|
if (str.length > len) {
|
|
if (ellipsis) {
|
|
if (mode === 'end') {
|
|
return str.slice(0, len) + '…'
|
|
} else if (mode === 'middle') {
|
|
const half = Math.floor(len / 2)
|
|
return str.slice(0, half) + '…' + str.slice(-half)
|
|
} else {
|
|
// fallback
|
|
return str.slice(0, len)
|
|
}
|
|
} else {
|
|
return str.slice(0, len)
|
|
}
|
|
}
|
|
return str
|
|
}
|
|
|
|
// https://stackoverflow.com/a/52171480
|
|
export function toHashCode(str: string, seed = 0): number {
|
|
let h1 = 0xdeadbeef ^ seed,
|
|
h2 = 0x41c6ce57 ^ seed
|
|
for (let i = 0, ch; i < str.length; i++) {
|
|
ch = str.charCodeAt(i)
|
|
h1 = Math.imul(h1 ^ ch, 2654435761)
|
|
h2 = Math.imul(h2 ^ ch, 1597334677)
|
|
}
|
|
h1 = Math.imul(h1 ^ (h1 >>> 16), 2246822507)
|
|
h1 ^= Math.imul(h2 ^ (h2 >>> 13), 3266489909)
|
|
h2 = Math.imul(h2 ^ (h2 >>> 16), 2246822507)
|
|
h2 ^= Math.imul(h1 ^ (h1 >>> 13), 3266489909)
|
|
|
|
return 4294967296 * (2097151 & h2) + (h1 >>> 0)
|
|
}
|
|
|
|
export function countLines(str: string | undefined): number {
|
|
if (!str) return 0
|
|
return str.match(/\n/g)?.length ?? 0
|
|
}
|
|
|
|
// Augments search query with additional syntax like `from:me`
|
|
export function augmentSearchQuery(query: string, {did}: {did?: string}) {
|
|
// Don't do anything if there's no DID
|
|
if (!did) {
|
|
return query
|
|
}
|
|
|
|
// We don't want to replace substrings that are being "quoted" because those
|
|
// are exact string matches, so what we'll do here is to split them apart
|
|
|
|
// Even-indexed strings are unquoted, odd-indexed strings are quoted
|
|
const splits = query.split(/("(?:[^"\\]|\\.)*")/g)
|
|
|
|
return splits
|
|
.map((str, idx) => {
|
|
if (idx % 2 === 0) {
|
|
return str.replaceAll(/(^|\s)from:me(\s|$)/g, `$1${did}$2`)
|
|
}
|
|
|
|
return str
|
|
})
|
|
.join('')
|
|
}
|