about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
...
* | Use a post and handle-resolution cache to enable quick postthread loading ↵Paul Frazee2023-08-039-18/+167
| | | | | | | | | | | | | | | | | | | | | | (#1097) * Use a post and handle-resolution cache to enable quick postthread loading * Fix positioning of thread when loaded from cache and give more visual cues * Include parent posts in cache * Include notifications in cache
* | Change button based on option (#1077)William2023-08-021-1/+3
| |
* | change copy in `InviteCodes.tsx (#1082)Ansh2023-08-021-5/+1
| |
* | update readme (#1083)Emily Liu2023-08-021-0/+6
|/ | | Co-authored-by: Emily Liu <emilyliu732l@gmail.com>
* 1.42Paul Frazee2023-07-282-4/+4
|
* Fix keyboard support on the dropdown (#1073)Paul Frazee2023-07-283-39/+109
| | | | | * Fix: dropdown now supports accessibility labels and keyboard controls * Fix event propagation around the post dropdown
* Fix to testsPaul Frazee2023-07-281-5/+5
|
* [APP-737] Accessible native dropdown menu (#988)Ansh2023-07-2830-340/+1091
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fix comments * add zeego package * get basic native dropdown working * add separator and icon components * refined native dropdown component * add android build properties to app.json * move `PostDropdownBtn` to its own component * fix selectors issue * move `PostDropdownBtn` to its own component * fix hitslop * fix post dropdown hitslop * fix android dropdown icons * move `UserAvatar.tsx` to native dropdown * use native dropdown in `ProfileHeader.tsx` * use native dropdown in `PostThreadItem.tsx` * use native dropdown in `UserBanner.tsx` * use native dropdown in `CustomFeed.tsx` * replace `testId` with `testID` (which is what is used everywhere) * move `Settings.tsx` to use native dropdown * create jest mocks for zeego * create jest mock for `zeego/dropdown-menu` * web styles for native dropdown * remove example native dropdown * adjust web styles * fix propagation * fix pressable in `Settings.tsx` * animate dropdown on web * add keyboard nav and hover styles * add hitslop to constants * add comments to NativeDropdown component * temporarily removed android icons * add testID to PostDropdownBtn * add testID back to all NativeDropdown button implementations * add postDropdownBtn testID * add testID to dropdown items * remove testID from dropdown menu item * refactor home-screen tests for native dropdown * refactor profile-screen tests for native dropdown * refactor thread-muting tests for native dropdown * refactor thread-screen tests for native dropdown * fix dropdown color for post dropdown button * remove icons from android dropdown menu * fix `create-account.test.ts` * fix `invite-codes.test.ts`
* List cleanup on remove (#1069)Foysal Ahamed2023-07-286-12/+60
| | | | | | | | | * :lipstick: Hide Add to List option on own profile * :sparkles: Remove Lists tab when last list is removed * :sparkles: Add listener to list delete on profile screen * :sparkles: Only show save changes in list modal when changes are made
* Search custom feeds (#1031)Ansh2023-07-287-18/+81
| | | | | | | | | | | * paginate custom feeds * basic search * update `@atproto/api` * use search from the API * debounce search for 200ms
* :lipstick: Hide Add to List option on own profile (#1068)Foysal Ahamed2023-07-271-5/+6
|
* [APP-782] Support invalid handles correctly (#1049)Paul Frazee2023-07-2733-117/+291
| | | | | | | | | | | | | | | | | | | * 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
* fix: invisible url when only a protocol (#1059)Steven2023-07-271-1/+4
| | | | | | | * fix: invisible url when only a protocol - Fixes https://github.com/bluesky-social/social-app/issues/1058 * fix: handle more cases when url is not http/https
* Update icons.tsx - Simplify SatelliteDishIcon paths (#1048)David Buchanan2023-07-251-1/+1
| | | This prevents rendering jank
* fix: ALT text entered in the compose dialog is erased when you press "Edit" ↵GitStart2023-07-251-1/+1
| | | | again (#1054)
* Bump react-native-paste-input; remove hack (#1051)Logan Rosen2023-07-254-27/+23
|
* [APP-720] Paginate custom feeds (#1030)Ansh2023-07-214-5/+50
| | | | | | | * paginate custom feeds * Fix loading state bug * DRY code up
* #995 use `asAnchor` on external embeds (#1043)Eric Bailey2023-07-212-5/+5
| | | | | * use asAnchor on external embeds * add noFeedback back, fix TouchableWithoutFeedback anchor handling
* fix mute list overflow bug (#1041)Ansh2023-07-201-0/+2
|
* [APP-775] Add Welcome screen after account creation (#1038)Ansh2023-07-1914-4/+231
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * add comments to step 1-3 * add onboarding screen * add analytics for onboarding tracking * fix useEffect * change text * change icon size * put onboarding into bottom sheet modal instead of react navigation * wip * Simplify the type validation * Fix: only trigger onboarding modal when account creation succeeds * Add the 'session-ready' event which fires when the new session is stable * Use the 'session-ready' event to trigger the onboarding modal * update copy * update copy --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
* Hotfix mobile web styling issues (#1039)Ansh2023-07-193-4/+3
| | | | | * remove hardcoded height for bottom bar * prevent overflow of tab bar on mobile web
* wrap interval in runInAction (#1037)Eric Bailey2023-07-191-2/+4
|
* #984 Updating `indexedAt` timestamps (#1024)Eric Bailey2023-07-194-12/+51
| | | | | | | | | * add TimeElapsed util component, integrate into PostThreadItem * integrate into posts * use consistent naming * use mobx and single interval for TimeElapsed
* #929 Wrap `PasteInput` updates in a `setTimeout` (#1033)Eric Bailey2023-07-191-39/+51
| | | | | * wrap PasteInput updates in a setTimeout * just wrap the whole callback
* Fix cursor not being a pointer on profile back button (#1022)Sam Brownstone2023-07-181-0/+2
| | | | | | | | | | | * Fix cursor not being a pointer on profile back button * Change TouchableOpacity to Pressable * switch back to TouchableWithoutFeedback --------- Co-authored-by: Ansh Nanda <anshnanda10@gmail.com>
* Merge pull request #1032 from bluesky-social/fix-1001-modal-scrollingEric Bailey2023-07-182-1/+8
|\ | | | | #1001 Modal content overflow
| * fix lintEric Bailey2023-07-181-1/+3
| |
| * create explicit relationship between valuesEric Bailey2023-07-182-2/+6
| |
| * use calcEric Bailey2023-07-181-2/+2
| |
| * Merge pull request #1025 from GitStartHQ/BLUESKY-OSS-8Eric Bailey2023-07-181-0/+1
| |\ | | | | | | [Web] A lot of post content in a modal causes parts of modal to become inaccessible
| | * fix hidden parts on modalgitstart2023-07-181-0/+1
| | |
* | | Merge pull request #1011 from bluesky-social/eric/app-741-add-pre-commit-hookEric Bailey2023-07-184-14/+217
|\ \ \ | |/ / |/| | add pre commit hook for linting/formatting
| * | undo commitAnsh Nanda2023-07-181-1/+0
| | |
| * | testAnsh Nanda2023-07-181-0/+1
| | |
| * | fix typoEric Bailey2023-07-131-1/+1
| | |
| * | move eslint dep to devDepsEric Bailey2023-07-131-1/+1
| | |
| * | conditionally install huskyEric Bailey2023-07-132-1/+9
| | |
| * | set up lint-staged via huskyEric Bailey2023-07-134-14/+209
| | | | | | | | | | | | (cherry picked from commit 98151fafbd9b248fce62f013cecd3d20d4d17006)
* | | Merge branch 'therealjeffg-term_violation_addition' into mainPaul Frazee2023-07-181-0/+13
|\ \ \ | |_|/ |/| |
| * | Tweak copyPaul Frazee2023-07-181-2/+2
| | |
| * | Merge branch 'term_violation_addition' of ↵Paul Frazee2023-07-181-0/+13
|/| | | | | | | | | | | https://github.com/therealjeffg/social-app into therealjeffg-term_violation_addition
| * | adds additional reason for reporting an account profileJeff Griffiths2023-07-141-0/+13
| |/
* | handle failed custom feeds on home screen (#1012)Eric Bailey2023-07-171-1/+8
| | | | | | | | | | | | | | | | | | * handle failed custom feeds on home screen * remove unnecessary edit * make sure edits to pinned feeds are handled and reloaded * fix lint
* | Bump ios build numberPaul Frazee2023-07-171-1/+1
| |
* | [APP-773] Change waitlist explainer copy (#1021)Paul Frazee2023-07-174-34/+7
|/ | | | | | | * Change waitlist explainer copy * Restore the waitlist modal snap point to 80% to account for smaller phones * Tune copy further
* 1.41Paul Frazee2023-07-072-3/+3
|
* Fixes and improvements to the Profile Preview modal (#992)Paul Frazee2023-07-078-59/+101
| | | | | | | | | | | | | * 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
* 1.40Paul Frazee2023-07-062-3/+3
|
* Post UI updates (Profile Preview on mobile) (#990)Paul Frazee2023-07-0617-190/+215
| | | | | | | | | | | | | | | | | | | | | | | * Update postmeta to put the timestamp on the right side on mobile * Drop the two-line PostMeta mode * Add ProfilePreview modal * Tune PostMeta to give the best behavior possible for a given platform * Remove old showFollowBtn attributes * Fix style issue * Switch the follow button in the profile header to use the inverted color for consistency with the rest of the app * Fix lint * Fix darkmode * Tune the profile preview footer * Better analytics choice
* [APP-703] Android horizontal scroll registers as tap (#960)Ansh2023-07-063-9/+74
| | | | | | | | | | | | | * use Touchables from react-native-gesture-handler * upgrade `react-native-gesture-handler` to latest version * add FixedTouchableHighlight for android * add workaround comment * wait for animations to complete before loading data * downgrade RNGH back to the version we had