-
Notifications
You must be signed in to change notification settings - Fork 6
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
✨(frontend) add meetings component #130
Open
karabij
wants to merge
9
commits into
main
Choose a base branch
from
add-meetings-component
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
Add a type which is inspired by the backend model of meetings
Add the component for meeting row, which resembles a room row except there is a time and duration displayed for the meeting. Also, write corresponding storybook files
There is now a MyMeetings component which is a displays list of meetings. When there are nos meetings a small message is displayed instead
Add a date input grommet component which, once a date is chosen, changes the corresponding formik field and displays an error message if the date is not in the future.
karabij
force-pushed
the
add-meetings-component
branch
from
November 30, 2022 10:43
f12976b
to
75f153b
Compare
Add a component which enables the user to select a time and give it to formik context, with a suggestions dropdown
karabij
force-pushed
the
add-meetings-component
branch
8 times, most recently
from
December 9, 2022 13:35
2caec79
to
a0b0062
Compare
karabij
force-pushed
the
add-meetings-component
branch
7 times, most recently
from
December 12, 2022 14:29
85072a9
to
b639d4e
Compare
add a form which enables the user to register the meeting
karabij
force-pushed
the
add-meetings-component
branch
from
December 12, 2022 14:39
b639d4e
to
b292f2b
Compare
With the new meetings feature, we need to add a meetings page in the demo as well as in the router and navigation bar.
karabij
force-pushed
the
add-meetings-component
branch
3 times, most recently
from
December 19, 2022 15:35
23fc6c1
to
ed2b964
Compare
add a form which enables the user to register the meeting. On success, the meeting is saved to local storage. Since changes to local storage do not cause react to rerender anything, you need to refresh the page for the meeting to appear in the meeting list view.
karabij
force-pushed
the
add-meetings-component
branch
from
December 19, 2022 15:49
ed2b964
to
3628b08
Compare
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.
Purpose
Add a component for meetings, which are planned calls and which can be recurrent
Proposal