Conversation
✅ Deploy Preview for atriacoop ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Jsofeng
requested review from
AlissaPepino,
JeremyKalhok,
Johann235,
KaiChuuu,
Khoi-Duong3,
RYeeAnn,
Remy122,
SittHmuePaing,
Summer-Children,
ansel-rangers11,
ctlchan,
emiranda2,
lemon-mochi and
monadsgg
July 1, 2026 19:46
Jsofeng
marked this pull request as ready for review
July 1, 2026 19:46
✅ Deploy Preview for atriacoop ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
ansel-rangers11
requested changes
Jul 21, 2026
ansel-rangers11
left a comment
Collaborator
There was a problem hiding this comment.
Please add a short video or screen capture showcasing this work @Jsofeng
ansel-rangers11
removed request for
JeremyKalhok,
Johann235,
KaiChuuu,
Khoi-Duong3 and
RYeeAnn
August 5, 2026 04:42
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
JIRA TICKET LINK: https://anselatria2.atlassian.net/jira/software/projects/KAN/boards/1?selectedIssue=KAN-62
[FE] Export Data - Add data export UI to Settings page (JSON & CSV)
Migrations Required?
NO
Summary (a few sentences describing what this PR is doing)
This PR adds the frontend UI for the user data export feature on the Settings page at
/SettingsPage.A new "Data Export" card was added with two buttons -> Export JSON and Export CSV. Clicking either button calls
GET /user/export/?format={json|csv}via the existingauthenticatedFetchhelper, converts the response to a Blob, and triggers a browser file download namedtownhall-user-data.{format}. Both buttons disable during an active export to prevent concurrent requests, and toast notifications confirm success or failure. The download icon was registered in the centralIcons.jsregistry. Button layout stacks vertically on mobile and switches to a two-column grid at thesmbreakpoint.Checks