about summary refs log tree commit diff
path: root/src/view
Commit message (Collapse)AuthorAgeFilesLines
* reload AlgoItem on focus via propAnsh Nanda2023-05-162-1/+6
|
* make sure state is being synced across componentsAnsh Nanda2023-05-164-13/+18
|
* allow for pinning saved feedsAnsh Nanda2023-05-164-58/+120
|
* add heart icon to AlgoItemAnsh Nanda2023-05-161-2/+4
|
* link to user who created custom feed from previewAnsh Nanda2023-05-161-4/+8
|
* like/unlike improvements WIPAnsh Nanda2023-05-151-3/+11
|
* new design for custom feed previewAnsh Nanda2023-05-154-16/+134
|
* remove tab bar underline animationAnsh Nanda2023-05-153-68/+81
|
* saved feeds in tab barAnsh Nanda2023-05-154-22/+40
|
* custom feed screenAnsh Nanda2023-05-152-3/+71
|
* renamed page to savedfeedsAnsh Nanda2023-05-141-4/+2
|
* add empty view to CustomAlgorithms screenAnsh Nanda2023-05-142-34/+43
|
* view all saved algos in settingsAnsh Nanda2023-05-132-8/+78
|
* create algo-item model and redefine data modelsAnsh Nanda2023-05-133-35/+69
|
* custom feed embedAnsh Nanda2023-05-122-4/+34
|
* show algos by user on profileAnsh Nanda2023-05-122-6/+64
|
* add custom algorithm screen to settings under moderationAnsh Nanda2023-05-122-0/+43
|
* Prevent reply to from cascading (#610)Ollie H2023-05-112-16/+24
|
* Only allow one close draft confirmation at a time (#611)Ollie H2023-05-111-2/+8
| | | | | * Only allow one close draft confirmation at a time * lint
* Update web image editor (#588)Ollie H2023-05-094-6/+426
| | | | | | | | | | | | | | | | | | | | | | | * Update web image editor * Delete type-assertions.ts * Re-add getKeys * Uncomment rotation code * Revert "Uncomment rotation code" This reverts commit 6269f3b928c2e5cacaf5d0ff5323fe975ee48eab. * Shuffle dependencies and update mobile resolution * Update ImageEditor modal layout for mobile * Avoid accidental closes of the EditImage modal --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
* Add avatar to mobile autocomplete and create grapheme hook (#602)Ollie H2023-05-093-66/+110
| | | | | * Add avatar to mobile autocomplete and create grapheme hook * Remove comment, update filename, cut out redundant logic
* Add time to app password and fix related text wrapping (#604)Ollie H2023-05-091-9/+24
|
* add target="_blank" prop to LinkText for safari (#606)Ansh2023-05-091-2/+14
|
* Add text wrapping to profile header (#603)Ollie H2023-05-091-2/+11
|
* [APP-639] Improve nsfw handling & force hidden on iOS (#605)Paul Frazee2023-05-096-35/+197
| | | | | | | | | | | * Identify adult content labels and handle them more specifically * Change adult content defaults to more conservative settings * Add an adultcontentenabled override that prohibits access on iOS * Improve usability of the content hider * Fix lint
* [APP-615] COPPA-compliant signup (#570)Paul Frazee2023-05-086-47/+222
| | | | | | | | | * Rework account creation to be COPPA compliant * Fix lint * Switch android datepicker to use the spinner mode * Fix type signatures & usages
* Visual improvements to web autocomplete (#591)Ollie H2023-05-081-14/+108
| | | | | * Visual improvements to web autocomplete * Remove stray styling
* Format count and fix type warning (#600)Ollie H2023-05-086-18/+27
|
* add theme to SafeAreaView and preventAutoHide SplashScreen (#592)Ansh2023-05-081-6/+9
|
* Fix hardbreak formattingrenahlee2023-05-051-0/+2
|
* Add account information to the top of settings (#583)Paul Frazee2023-05-051-0/+17
|
* make haptic feedback weaker on android (#584)Ansh2023-05-051-4/+8
|
* useLegacyImplementation in Android (#585)Ansh2023-05-051-0/+2
|
* sanitize app passwords name (#589)Ansh2023-05-051-4/+38
|
* Move href back to link (#590)Ollie H2023-05-051-5/+7
| | | | | | | | | * Move href back to link * Fix cmd/ctrl click on left nav --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
* [APP-633] Improve some behaviors around desktop leftnav (#581)Paul Frazee2023-05-041-2/+18
| | | | | | | * Make leftnav elements act as anchor tags (bonus feature in this pr) * Add screen reset behavior to the desktop left nav * Move the leftnav link into the text
* Rework alt image modal to be fullscreen due to android bugs with the ↵Paul Frazee2023-05-041-4/+2
| | | | bottomsheet and keyboard (#577)
* [APP-539] Rework lightbox and alt-image behaviors (#573)Paul Frazee2023-05-047-170/+119
| | | | | | | | | | | | | | | | | | | | | * Replace the long press on the lightbox with footer controls * Remove long-press from images in the feed * Tune the lightbox footer control ui * Replace the AltImageRead modal with the ability to view all alt text in the lightbox footer * Tune lightbox footer for iOS * Add alt text to the web lightbox * Fix lint * a11y slight changes --------- Co-authored-by: renahlee <renahlee@outlook.com>
* a11y label cleanup (#576)Ollie H2023-05-0412-67/+56
|
* Remove some confusing horizontal lines in threads (#566)Paul Frazee2023-05-021-1/+9
|
* [APP-601] Add muted accounts list (#565)Paul Frazee2023-05-024-1/+194
| | | | | * Add muted accounts list * Fix icon for muted accounts
* [APP-611] Add nice date to expanded post view (#567)Paul Frazee2023-05-021-2/+5
| | | | | * Add nice date to expanded post view * Fix styles
* [APP-549] Language controls for Whats Hot (#563)Paul Frazee2023-05-028-75/+340
| | | | | | | | | | | * Add a content-language preference control * Update whats hot to only show the selected languages and to refresh on lang pref changes * Fix lint * Fix tests * Add missing accessibility role
* Add keyboard shortcuts: new, escape, and hard break (#552)Ollie H2023-05-026-25/+64
| | | | | | | | | | | | | | | | | | | | | * Add keyboard shortcuts: new, escape, and hard break * Add preferences modal * Remove code accidentally re-added due to rebase * Fix incorrect copy and lint * Put stuff back so diffs are clearer * Re-add invite codes to settings * Address comments * Tune the copy --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
* Fix confirm profile sizing for blocks (#564)Paul Frazee2023-05-022-3/+3
|
* Pre-web image changes refactor (#560)Ollie H2023-05-022-8/+12
| | | | | * Pre-web image changes refactor * Remove unneeded async behavior
* Strip whitespaces from tokens (#558)Ollie H2023-05-012-2/+5
|
* React Native accessibility (#539)Ollie H2023-05-0179-708/+1238
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * React Native accessibility * First round of changes * Latest update * Checkpoint * Wrap up * Lint * Remove unhelpful image hints * Fix navigation * Fix rebase and lint * Mitigate an known issue with the password entry in login * Fix composer dismiss * Remove focus on input elements for web * Remove i and npm * pls work * Remove stray declaration * Regenerate yarn.lock --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
* Image alt text view modal (#551)Ollie H2023-05-016-191/+265
| | | | | | | | | * Image alt text view modal * Minor style tweaks --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
* Format large numbers (#556)Ollie H2023-05-013-4/+11
|