diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-10-04 08:57:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-04 08:57:23 -0700 |
commit | b1a1bae02e021e509f678ba423a4d030166a02a9 (patch) | |
tree | 4143d3befce048701229111c6203e9493c225b73 /src/state/models/ui/reminders.ts | |
parent | a76fb78d532e436b6b84efd09d70088410a2bb20 (diff) | |
download | voidsky-b1a1bae02e021e509f678ba423a4d030166a02a9.tar.zst |
Onboarding & feed fixes (#1602)
* Fix: improve the 'end of feed' detection condition * Fix the feeds link on mobile in the empty state * Align the following empty state better on web * Dont autofocus the search input in the search tab * Fix the error boundary render * Add 'end of feed' CTA to following feed * Reduce the default feeds to discover now that we have feed-selection during onboarding * Fix case where loading spinner fails to stop rendering in bottom of feed * Fix: dont show loading spinner at footer of feed when refreshing * Fix: dont fire reminders during onboarding * Optimize adding feeds and update to mirror the api behaviors more closely * Use the lock in preferences to avoid clobbering in-flight updates * Refresh the feed after onboarding to ensure content is visible * Remove the now-incorrect comment * Tune copy
Diffstat (limited to 'src/state/models/ui/reminders.ts')
-rw-r--r-- | src/state/models/ui/reminders.ts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/state/models/ui/reminders.ts b/src/state/models/ui/reminders.ts index f8becdec3..60dbf5d88 100644 --- a/src/state/models/ui/reminders.ts +++ b/src/state/models/ui/reminders.ts @@ -6,10 +6,6 @@ import {toHashCode} from 'lib/strings/helpers' const DAY = 60e3 * 24 * 1 // 1 day (ms) export class Reminders { - // NOTE - // by defaulting to the current date, we ensure that the user won't be nagged - // on first run (aka right after creating an account) - // -prf lastEmailConfirm: Date = new Date() constructor(public rootStore: RootStoreModel) { @@ -46,6 +42,9 @@ export class Reminders { if (sess.emailConfirmed) { return false } + if (this.rootStore.onboarding.isActive) { + return false + } const today = new Date() // shard the users into 2 day of the week buckets // (this is to avoid a sudden influx of email updates when |