-
-
Notifications
You must be signed in to change notification settings - Fork 349
Add frontend for Flow #3454
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Add frontend for Flow #3454
Conversation
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
4c4916f
to
edda6a3
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
🚀 New features to boost your workflow:
|
tinohager
reviewed
Jun 17, 2025
JasonMillward
approved these changes
Jul 1, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
alpha-ready
Branch is available in alpha
Review: medium
Medium review expected: not many files, some attention to details required.
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.
This pull request introduces several new components and refactors existing ones to improve modularity, readability, and functionality in the gallery and flow modules. The most significant changes include the creation of reusable components like
AlbumStatistics
,Blur
, andPhotoBox
, as well as enhancements to the album and photo viewing experience.Refactoring and Componentization
AlbumStatistics
Component: Extracted the album statistics display logic into a reusable component, simplifyingAlbumHero.vue
and improving maintainability. (resources/js/components/gallery/albumModule/AlbumStatistics.vue
, [1];resources/js/components/gallery/albumModule/AlbumHero.vue
, [2] [3]Blur
Component: Added a reusable component to handle NSFW content blurring with hover-to-reveal functionality. (resources/js/components/gallery/flowModule/Blur.vue
, resources/js/components/gallery/flowModule/Blur.vueR1-R18)Enhancements to Album and Photo Views
AlbumHero.vue
Refactor: Replaced inline statistics display with the newAlbumStatistics
component. (resources/js/components/gallery/albumModule/AlbumHero.vue
, resources/js/components/gallery/albumModule/AlbumHero.vueL107-R107)PhotoBox
Component: Introduced a versatile photo viewer with support for various media types (e.g., images, videos, PDFs, live photos). (resources/js/components/gallery/photoModule/PhotoBox.vue
, resources/js/components/gallery/photoModule/PhotoBox.vueR1-R138)LightBox
Component: Added a lightbox for viewing photos with navigation and overlay capabilities. (resources/js/components/gallery/flowModule/LigtBox.vue
, resources/js/components/gallery/flowModule/LigtBox.vueR1-R58)New Features in Flow Module
CarouselImages
andTopImages
Components: Created components for displaying album photos in carousel and grid formats, with NSFW blurring support. (resources/js/components/gallery/flowModule/CarouselImages.vue
, [1];resources/js/components/gallery/flowModule/TopImages.vue
, [2]HeaderImage
Component: Added support for configurable album header images with blur effects for NSFW content. (resources/js/components/gallery/flowModule/HeaderImage.vue
, resources/js/components/gallery/flowModule/HeaderImage.vueR1-R45)Routing and Navigation Improvements
AlbumThumb.vue
: Updated album navigation to use a composable for dynamic route generation, improving flexibility and consistency. (resources/js/components/gallery/albumModule/thumbs/AlbumThumb.vue
, [1] [2] [3]