-
Notifications
You must be signed in to change notification settings - Fork 20
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
Transactions List #92
Comments
Hi Mas Zain @zainfathoni, I would like to try solving this issue. I will try to create the draft PR later after i went home. Can you assign this to me? Thank you |
By creating a draft PR, you are assigning this issue to yourself. 😉 What a direct Collaborator means is, you have access to write directly to this repository without having to fork it. Keep contributing to this repository and I will eventually invite you as a collaborator, just like I invited Mas @retry19 last week. 😉 |
Oh okay then, thank you 👍 |
Hi Mas Zain @zainfathoni, I have question about this issue:
|
What do you mean by "category tab"? Could you please elaborate further? Probably by quoting my description above or providing a screenshot.
Please show the |
Okay then i will try to implement it 👍 |
Description
Implement the Transactions List page to show all transactions related to the Author. We can do it in parallel with #84.
Narrative
Acceptance Criteria
The
/dashboard/transactions
route should load all the transactions related to the Author and show them as a list. Please compose the UI based on this With page heading and stacked list screen.Scenario 1: View Transactions List
/dashboard/transactions
route,/dashboard/transactions/$transactionId
route to see the details of that transaction.Implementation Model
Use the denormalized
authorId
field to get all the Author's transactions.Image previews
With page heading and stacked list
Desktop view
Mobile view
Code snippets
With page heading and stacked list
Tasks
app/route/dashboard/transactions.tsx
file (if not exist) as a route shell rendering nothing other than Remix's Outlet componentapp/route/dashboard/transactions/index.tsx
rendering all the transactionsapp/route/dashboard/transactions.tsx
file to load all the transactions related to the author then show the data into the screenThe text was updated successfully, but these errors were encountered: