-
Notifications
You must be signed in to change notification settings - Fork 76
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
UI Phase2 - Adding new screens #1897
Conversation
Co-authored-by: or orsatti <[email protected]> Co-authored-by: GuySerfaty <[email protected]>
Missing from this PR: - [ ] Copy on manage email modal - [ ] Loading tickets state - waiting for answer on linear - [ ] Border on floating buttons - Need to ask Joseph - [ ] Order tickets by dates- missing event duration and time. - [ ] Remove title and subtitle from pod UI - left questions - [ ] Fake name on ticket ("Johnny Cash") - exist only locally for test purposes, for now commented out - [ ] swipe indicator on home page - waiting for mockups - [ ] login-interstitial state - Will add in phase3 PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- there are a few minor things left over from my review, use discretion to follow up on those
- i've noted a few new problems in the earlier notion doc here - @rrrliu, please figure out how to prioritize/assign those
- i think the best way to proceed is to merge this now, then follow up with a bunch of testing. most of the code is basically fine.
return useMemo(() => { | ||
const eventsMap = new Map<string, TicketPack[]>(); | ||
for (const ticket of tickets) { | ||
if (ticket.claim.ticket.ticketName !== "GA") continue; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
}); | ||
} | ||
for (const ticket of tickets) { | ||
if (ticket.claim.ticket.ticketName === "GA") continue; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// eslint-disable-next-line react-hooks/exhaustive-deps | ||
}, [ticketsTrigger]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please either address this or explain why it's necessary
const dispatch = useDispatch(); | ||
const scrollRef = useRef<HTMLDivElement>(null); | ||
const pcdCardScrollRef = useRef<HTMLDivElement>(null); | ||
const ticketsRef = useRef<Map<string, HTMLDivElement[]>>(new Map()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's make sure to test this
at the below the tickets list
Co-authored-by: or orsatti <[email protected]> Co-authored-by: GuySerfaty <[email protected]> Co-authored-by: Ivan Chub <[email protected]> Co-authored-by: Ivan Chub <[email protected]> Co-authored-by: Or Antonio Orsatti <[email protected]>
No description provided.