diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/notifee.ts | 30 | ||||
-rw-r--r-- | src/lib/routes/helpers.ts | 2 | ||||
-rw-r--r-- | src/lib/strings/rich-text-detection.ts | 2 | ||||
-rw-r--r-- | src/platform/polyfills.ts | 2 | ||||
-rw-r--r-- | src/state/models/content/post-thread.ts | 13 | ||||
-rw-r--r-- | src/state/models/feeds/notifications.ts | 6 | ||||
-rw-r--r-- | src/state/models/session.ts | 4 | ||||
-rw-r--r-- | src/view/com/auth/create/Step1.tsx | 6 | ||||
-rw-r--r-- | src/view/com/profile/ProfileHeader.tsx | 2 | ||||
-rw-r--r-- | src/view/com/util/post-embeds/index.tsx | 2 | ||||
-rw-r--r-- | src/view/screens/Home.tsx | 2 |
11 files changed, 39 insertions, 32 deletions
diff --git a/src/lib/notifee.ts b/src/lib/notifee.ts index 866319031..42feb01c6 100644 --- a/src/lib/notifee.ts +++ b/src/lib/notifee.ts @@ -41,26 +41,26 @@ export function displayNotification( } export function displayNotificationFromModel( - notif: NotificationsFeedItemModel, + notification: NotificationsFeedItemModel, ) { let author = sanitizeDisplayName( - notif.author.displayName || notif.author.handle, + notification.author.displayName || notification.author.handle, ) let title: string let body: string = '' - if (notif.isLike) { + if (notification.isLike) { title = `${author} liked your post` - body = notif.additionalPost?.thread?.postRecord?.text || '' - } else if (notif.isRepost) { + body = notification.additionalPost?.thread?.postRecord?.text || '' + } else if (notification.isRepost) { title = `${author} reposted your post` - body = notif.additionalPost?.thread?.postRecord?.text || '' - } else if (notif.isMention) { + body = notification.additionalPost?.thread?.postRecord?.text || '' + } else if (notification.isMention) { title = `${author} mentioned you` - body = notif.additionalPost?.thread?.postRecord?.text || '' - } else if (notif.isReply) { + body = notification.additionalPost?.thread?.postRecord?.text || '' + } else if (notification.isReply) { title = `${author} replied to your post` - body = notif.additionalPost?.thread?.postRecord?.text || '' - } else if (notif.isFollow) { + body = notification.additionalPost?.thread?.postRecord?.text || '' + } else if (notification.isFollow) { title = 'New follower!' body = `${author} has followed you` } else { @@ -68,10 +68,12 @@ export function displayNotificationFromModel( } let image if ( - AppBskyEmbedImages.isView(notif.additionalPost?.thread?.post.embed) && - notif.additionalPost?.thread?.post.embed.images[0]?.thumb + AppBskyEmbedImages.isView( + notification.additionalPost?.thread?.post.embed, + ) && + notification.additionalPost?.thread?.post.embed.images[0]?.thumb ) { - image = notif.additionalPost.thread.post.embed.images[0].thumb + image = notification.additionalPost.thread.post.embed.images[0].thumb } return displayNotification(title, body, image) } diff --git a/src/lib/routes/helpers.ts b/src/lib/routes/helpers.ts index cfa6ae53b..071e1ae9b 100644 --- a/src/lib/routes/helpers.ts +++ b/src/lib/routes/helpers.ts @@ -11,7 +11,7 @@ export function getCurrentRoute(state: State) { export function isStateAtTabRoot(state: State | undefined) { if (!state) { // NOTE - // if state is not defined it's because init is occuring + // if state is not defined it's because init is occurring // and therefore we can safely assume we're at root // -prf return true diff --git a/src/lib/strings/rich-text-detection.ts b/src/lib/strings/rich-text-detection.ts index 51d09ec5d..931617cd1 100644 --- a/src/lib/strings/rich-text-detection.ts +++ b/src/lib/strings/rich-text-detection.ts @@ -27,7 +27,7 @@ export function detectLinkables(text: string): DetectedLinkable[] { matchValue = matchValue.slice(1) } - // strip ending puncuation + // strip ending punctuation if (/[.,;!?]$/.test(matchValue)) { matchValue = matchValue.slice(0, -1) } diff --git a/src/platform/polyfills.ts b/src/platform/polyfills.ts index a64c2c33a..d5028c294 100644 --- a/src/platform/polyfills.ts +++ b/src/platform/polyfills.ts @@ -23,7 +23,7 @@ globalThis.atob = (str: string): string => { ) } - // Adding the padding if missing, for semplicity + // Adding the padding if missing, for simplicity str += '=='.slice(2 - (str.length & 3)) var bitmap, result = '', diff --git a/src/state/models/content/post-thread.ts b/src/state/models/content/post-thread.ts index 74a75d803..577b76e01 100644 --- a/src/state/models/content/post-thread.ts +++ b/src/state/models/content/post-thread.ts @@ -118,7 +118,7 @@ export class PostThreadItemModel { assignTreeModels( v: AppBskyFeedDefs.ThreadViewPost, - higlightedPostUri: string, + highlightedPostUri: string, includeParent = true, includeChildren = true, ) { @@ -130,7 +130,12 @@ export class PostThreadItemModel { parentModel._showChildReplyLine = true if (v.parent.parent) { parentModel._showParentReplyLine = true - parentModel.assignTreeModels(v.parent, higlightedPostUri, true, false) + parentModel.assignTreeModels( + v.parent, + highlightedPostUri, + true, + false, + ) } this.parent = parentModel } else if (AppBskyFeedDefs.isNotFoundPost(v.parent)) { @@ -147,10 +152,10 @@ export class PostThreadItemModel { const itemModel = new PostThreadItemModel(this.rootStore, item) itemModel._depth = this._depth + 1 itemModel._showParentReplyLine = - itemModel.parentUri !== higlightedPostUri && replies.length === 0 + itemModel.parentUri !== highlightedPostUri && replies.length === 0 if (item.replies?.length) { itemModel._showChildReplyLine = true - itemModel.assignTreeModels(item, higlightedPostUri, false, true) + itemModel.assignTreeModels(item, highlightedPostUri, false, true) } replies.push(itemModel) } else if (AppBskyFeedDefs.isNotFoundPost(item)) { diff --git a/src/state/models/feeds/notifications.ts b/src/state/models/feeds/notifications.ts index 3777abb92..5005f1d91 100644 --- a/src/state/models/feeds/notifications.ts +++ b/src/state/models/feeds/notifications.ts @@ -181,7 +181,7 @@ export class NotificationsFeedItemModel { return false } - get additionaDataUri(): string | undefined { + get additionalDataUri(): string | undefined { if (this.isReply || this.isQuote || this.isMention) { return this.uri } else if (this.isLike || this.isRepost) { @@ -492,7 +492,7 @@ export class NotificationsFeedModel { 'mostRecent', res.data.notifications[0], ) - const addedUri = notif.additionaDataUri + const addedUri = notif.additionalDataUri if (addedUri) { const postsRes = await this.rootStore.agent.app.bsky.feed.getPosts({ uris: [addedUri], @@ -585,7 +585,7 @@ export class NotificationsFeedModel { `item-${_idCounter++}`, item, ) - const uri = itemModel.additionaDataUri + const uri = itemModel.additionalDataUri if (uri) { const models = addedPostMap.get(uri) || [] models.push(itemModel) diff --git a/src/state/models/session.ts b/src/state/models/session.ts index c36537601..aa9c97750 100644 --- a/src/state/models/session.ts +++ b/src/state/models/session.ts @@ -187,7 +187,7 @@ export class SessionModel { account => account.service === service && account.did === did, ) - // fall back to any pre-existing access tokens + // fall back to any preexisting access tokens let refreshJwt = session?.refreshJwt || existingAccount?.refreshJwt let accessJwt = session?.accessJwt || existingAccount?.accessJwt if (event === 'expired') { @@ -247,7 +247,7 @@ export class SessionModel { const res = await agent.getProfile({actor: did}).catch(_e => undefined) if (res) { return { - dispayName: res.data.displayName, + displayName: res.data.displayName, aviUrl: res.data.avatar, } } diff --git a/src/view/com/auth/create/Step1.tsx b/src/view/com/auth/create/Step1.tsx index ac0d706d7..57747f070 100644 --- a/src/view/com/auth/create/Step1.tsx +++ b/src/view/com/auth/create/Step1.tsx @@ -32,7 +32,7 @@ export const Step1 = observer(({model}: {model: CreateAccountModel}) => { model.setServiceDescription(undefined) }, [setIsDefaultSelected, model]) - const fetchServiceDesription = React.useMemo( + const fetchServiceDescription = React.useMemo( () => debounce(() => model.fetchServiceDescription(), 1e3), [model], ) @@ -40,9 +40,9 @@ export const Step1 = observer(({model}: {model: CreateAccountModel}) => { const onChangeServiceUrl = React.useCallback( (v: string) => { model.setServiceUrl(v) - fetchServiceDesription() + fetchServiceDescription() }, - [model, fetchServiceDesription], + [model, fetchServiceDescription], ) const onDebugChangeServiceUrl = React.useCallback( diff --git a/src/view/com/profile/ProfileHeader.tsx b/src/view/com/profile/ProfileHeader.tsx index 3b9ca67c9..d5ae3a885 100644 --- a/src/view/com/profile/ProfileHeader.tsx +++ b/src/view/com/profile/ProfileHeader.tsx @@ -218,7 +218,7 @@ const ProfileHeaderLoaded = observer( onRefreshAll() Toast.show('Account unblocked') } catch (e: any) { - store.log.error('Failed to block unaccount', e) + store.log.error('Failed to block account', e) Toast.show(`There was an issue! ${e.toString()}`) } }, diff --git a/src/view/com/util/post-embeds/index.tsx b/src/view/com/util/post-embeds/index.tsx index 9eb140c2e..8156d7732 100644 --- a/src/view/com/util/post-embeds/index.tsx +++ b/src/view/com/util/post-embeds/index.tsx @@ -109,7 +109,7 @@ export function PostEmbeds({ RNImage.prefetch(firstImageToShow) items.forEach(item => { if (firstImageToShow !== item.uri) { - // First image already prefeched above + // First image already prefetched above RNImage.prefetch(item.uri) } }) diff --git a/src/view/screens/Home.tsx b/src/view/screens/Home.tsx index eae4d9799..d7a2aa231 100644 --- a/src/view/screens/Home.tsx +++ b/src/view/screens/Home.tsx @@ -202,7 +202,7 @@ const FeedPage = observer( } }, [store, doPoll, onSoftReset, screen, feed]), ) - // fires when tab is actived/deactivated + // fires when tab is activated/deactivated // - check for latest useTabFocusEffect( 'Home', |