This repository was archived by the owner on Mar 8, 2026. It is now read-only.
feat/favorites#22
Open
Astrol99 wants to merge 81 commits into
Open
Conversation
Collaborator
|
lgtm |
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR implements new features and improvements for the "feat/favorites" initiative by introducing several new UI components, updating routing paths, and upgrading dependencies and configurations for the Longhorn Studies application. Key changes include:
- Enhancements and additions to core components such as TagSelector, SpotIcon, SpotCard, and ImageUploader.
- Updates to routing in authentication and protected areas including sign up, login, and tab navigation.
- Various dependency upgrades and configuration changes in package.json, babel.config.js, and app.json.
Reviewed Changes
Copilot reviewed 37 out of 37 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| longhorn-studies/package.json | Added new scripts and upgraded dependency versions. |
| longhorn-studies/components/TagSelector.tsx | New component for tag selection with debounced search and tag management. |
| longhorn-studies/components/SpotIcon.tsx | New component to display spot images with a loading indicator and gradient overlay. |
| longhorn-studies/components/SpotCard.tsx | New component for rendering spot cards with favorite toggle functionality. |
| longhorn-studies/components/ImageUploader.tsx | New component for multi-image upload with drag-and-drop reordering. |
| longhorn-studies/components/Container.tsx | Updated to wrap SafeAreaView inside an extra View for improved layout. |
| longhorn-studies/components/Button.tsx | Updated button styles and spacing. |
| longhorn-studies/babel.config.js | Modified presets to include unstable_transformImportMeta option. |
| Various app/(app)/* files | Updated routing paths and UI elements such as title and icon color adjustments. |
| longhorn-studies/app/(app)/(protected)/create-spot.tsx | Added create spot form with image processing, tag selection, and map location setup. |
| longhorn-studies/app/(app)/(protected)/(tabs)/* | Improved tab layout, map integration, and explored spot/favorites listings. |
| longhorn-studies/app.json and .vscode/settings.json | Configuration adjustments for project name, owner, and formatter settings. |
Comments suppressed due to low confidence (1)
longhorn-studies/app/(app)/(protected)/create-spot.tsx:104
- [nitpick] The magic numbers used for checking the longitude range could be extracted into well-named constants or documented for clarity.
if (newImages[0].exif.GPSLongitudeRef === 'W' || (longitude > 100 && longitude < 180) // North America western regions) {
The merge-base changed after approval.
rithvikch
approved these changes
Jul 9, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
resolves #15

