about summary refs log tree commit diff
path: root/src/view/shell
Commit message (Collapse)AuthorAgeFilesLines
...
* Updates to use dynamic/responsive styles on web (#1351)Paul Frazee2023-09-054-40/+147
| | | | | | | | | | | | | | | | | | | * Move most responsive queries to the hook * Fix invalid CSS value * Fixes to tablet render of post thread * Fix overflow issues on web * Fix search header on tablet * Fix QP margin in web composer * Fix: only apply double gutter once to flatlist (close #1368) * Fix styles on discover feeds header * Fix double discover links in multifeed
* Fix mismatching button label for speech recognition (#1372)dan2023-09-051-1/+1
| | | | | * Fix mismatching a11y label * Update all new post button labels to match
* Merge branch 'ansh/app-812-add-custom-feed-discovery-to-onboarding' into mainPaul Frazee2023-08-301-3/+5
|\
| * More fixes to mobile onboardPaul Frazee2023-08-301-1/+2
| |
| * Rework web onboardingPaul Frazee2023-08-291-2/+3
| |
* | Fix: Don't flash default profile avatar and link in nav (#1287)Patroll2023-08-281-1/+6
|/
* Move the web composer to the top of the screen (#1282)Paul Frazee2023-08-251-1/+1
|
* [APP-834] Allow @ing someone in post directly from profile (#1241)Ansh2023-08-225-1/+24
| | | | | * setup `initMention` for mobile * setup creating post with profile tagged on web
* [APP-782] Support invalid handles correctly (#1049)Paul Frazee2023-07-272-6/+5
| | | | | | | | | | | | | | | | | | | * Update profile link construction to support handle.invalid * Update list links to support using handles * Use did for isMe check to ensure invalid handles dont distort the check * Shift the red (error) colors away from the pink spectrum * Add ThemedText helper component * Add sanitizedHandle() helper to render invalid handles well * Fix regression: only show avatar in PostMeta when needed * Restore the color of likes * Remove users with invalid handles from default autosuggests
* Hotfix mobile web styling issues (#1039)Ansh2023-07-192-4/+2
| | | | | * remove hardcoded height for bottom bar * prevent overflow of tab bar on mobile web
* fix lintEric Bailey2023-07-181-1/+3
|
* create explicit relationship between valuesEric Bailey2023-07-182-2/+6
|
* use calcEric Bailey2023-07-181-2/+2
|
* fix hidden parts on modalgitstart2023-07-181-0/+1
|
* [APP-773] Change waitlist explainer copy (#1021)Paul Frazee2023-07-171-6/+1
| | | | | | | * Change waitlist explainer copy * Restore the waitlist modal snap point to 80% to account for smaller phones * Tune copy further
* Fixes and improvements to the Profile Preview modal (#992)Paul Frazee2023-07-071-1/+1
| | | | | | | | | | | | | * Fix: use more reliable navigation method * Fix: show lightbox over the active modal * Fix: close the profile preview on navigation * Factor out UserPreviewLink and add preview behavior to notifications * Fix postmeta overflow on web * Fix lint
* Update support links (#977)Paul Frazee2023-07-052-13/+50
| | | | | | | | | | | | | | | | | | | * Add the new zendesk feedback form URL * Dont wrap handle or display name in the drawer * Add help link * Tune drawer footer layout * Type fixes * make helpdesk urls more composable for future * fix typo --------- Co-authored-by: Ansh Nanda <anshnanda10@gmail.com>
* Make sidebar avatar keyboard-clickable. (#921)Markus Amalthea Magnuson2023-07-021-1/+4
|
* Fix some broken links on policy docs (#916)Paul Frazee2023-06-271-2/+2
|
* [APP-657] Add share list functionality (#863)Ansh2023-06-262-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * replace delete list button text with icon * fix mute list styling on desktop * add share button to nav bar on a list * fix styling when on profile * bug: add key to ImageHorzList * clean up code & refactor * fix styling for ListItems * create a reusable ListActions component for actions on a list * remove dead styles * add keys to ListActions * add helpers to set list embed * render list embeds * fix list sharing on web * make style prop optional in ListCard * update `@atproto/api` to `0.3.13`
* [APP-511] metrics overhaul: frontend work (#506)Ansh2023-06-152-3/+5
| | | | | | | | | | | | | | | | | | | | | * WIP * fix types and update imports * wip * tagged events that should be server side * remove server-side analytics * remove useless import * add additional profile header events * remove useless import * track follow/unfollow clicks * add missing types
* Add testnet warning (#880)Paul Frazee2023-06-141-4/+13
| | | | | | | * Add testnet warning * Add watermarks to posts * Call the test environment the Sandbox
* Upgrade Reanimated from 2.14.4 to 3.1.0 (#753)Tymoteusz Boba2023-06-141-2/+0
| | | | | | | | | | | | | | | | | * Update Reanimated API to v3 * Fix failing tests after updating Reanimated * Include changes from package.json in Reanimated library to patch * upgrade reanimated to 3.3.0 * remove patch * upgrade bottom sheet --------- Co-authored-by: Ansh Nanda <anshnanda10@gmail.com>
* Desktop: prevent unnecessary X scroll between 1230px and 1260px (#828)Ivan Silvestre2023-06-131-1/+1
| | | | | | | * Desktop: prevent unnecessary X scroll between 1230px and 1260px * imports structure without changes * re add dot to text
* [APP-107] OTA updates (#587)Ansh2023-06-021-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | * add 1000ms fallbackToCacheTimeout * add listener via useOTAUpdate hook and show modal if update is available * finish expo-updates setup * setup useOTAUpdate hook * add 1000ms fallbackToCacheTimeout * add listener via useOTAUpdate hook and show modal if update is available * finish expo-updates setup * setup useOTAUpdate hook * add OTA updates * Update build.md * temporarily disable ota updates * refactor useOTAUpdate code
* Fix a bunch of type errors and add a type-check to the github workflows (#837)Paul Frazee2023-06-021-2/+4
| | | | | | | | | | | | | | | * Add yarn type-check * Rename to yarn typecheck * Fix a collection of type errors * Add typecheck to automated tests * add `dist` to exluded folders tsconfig --------- Co-authored-by: Ansh Nanda <anshnanda10@gmail.com>
* Fix line breaks on side bar links (#815)Michi Hoffmann2023-06-011-1/+1
|
* fix: make DesktopLeftNav not overflow screen (#762)LW2023-05-301-0/+2
| | | | | * fix: make DesktopLeftNav not overflow screen * scroll: auto
* Merge branch 'main' into inherit_system_themeJaz2023-05-306-32/+129
|\
| * Fix profile load issue + enhancement of profile isCurrent style (#764)MohammadReza Mahmoudi2023-05-301-5/+8
| | | | | | | | | | | | | | | | | | * fix profile isActive issue * fix myProfile load issue when visiting other profiles first * fix lint issues * change currentRouteName to currentRouteInfo
| * Hide both the left and right nav on desktop when logged outPaul Frazee2023-05-302-3/+3
| |
| * Desktop: hide the left panel and the invite codes from the main page if you ↵Ivan Silvestre2023-05-302-2/+3
| | | | | | | | are not logged in
| * Fixes & updates for mobile webPaul Frazee2023-05-251-0/+14
| |
| * Tune up custom feed uis on webPaul Frazee2023-05-251-9/+9
| |
| * Add feeds tabPaul Frazee2023-05-253-13/+49
| |
| * Add scrollview to drawerPaul Frazee2023-05-251-7/+11
| |
| * Add my feeds to the drawerPaul Frazee2023-05-251-2/+16
| |
| * Add custom satellite-dish iconsPaul Frazee2023-05-251-6/+8
| |
| * add saved feeds to left nav on desktopAnsh Nanda2023-05-251-0/+18
| |
| * put user avatar on bottom bar and replace with hamburger menu on topAnsh Nanda2023-05-252-12/+18
| |
* | Merge branch 'main' into inherit_system_themeJaz2023-05-173-4/+23
|\|
| * Update to empty hint if no notificationsrenahlee2023-05-172-2/+2
| |
| * Update hint for notificationsrenahlee2023-05-172-3/+12
| |
| * feat: add basic visual feedback on Button interactions (#708)Paul Frazee2023-05-171-5/+4
| | | | | | | | | | | | | | | | | | | | | | * feat: add basic visual feedback on Button interaction * Use a more efficient approach to providing visual feedback * Fix some lint issues left over from another PR --------- Co-authored-by: Simek <gosimek@gmail.com>
| * Close active elements on state change (#677)Ollie H2023-05-171-1/+11
| |
| * fix theme opposite labels (#700)Mohammad Reza Mahmoudi2023-05-171-3/+9
| |
* | Remove unused importsJaz2023-05-172-3/+2
| |
* | Move appearance settings to settings pageJaz2023-05-172-255/+1
| |
* | Fix mobile layout at least for mobile webJaz2023-05-161-29/+28
| |
* | Use a three-state radio button for color modeJaz2023-05-162-59/+220
| |