-
Notifications
You must be signed in to change notification settings - Fork 257
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
Add event creation flow #889
Add event creation flow #889
Conversation
Make an event creation flow based on existing create flows. Has some unimplemented features (validation, tooltips) and components (organizer selection, roles, public/private, invitation).
Thank you for the pull request!The activist team will do our best to address your contribution as soon as we can. The following is a checklist for maintainers to make sure this process goes as well as possible. Feel free to address the points below yourself in further commits if you realize that actions are needed :) If you're not already a member of our public Matrix community, please consider joining! We'd suggest using Element as your Matrix client, and definitely join the General and Development rooms once you're in. Also consider joining our bi-weekly Saturday dev syncs. It'd be great to have you! Maintainer checklist
|
✅ Deploy Preview for activist-org ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Quick note on this for myself, I need to add in the following for the middleware after #818 is merged :) definePageMeta({
middleware: ["user-only"],
}); |
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.
Thanks so much for this, @Robot8lover! Such a nice interface 🤩😊 Doubtless some minor changes will be needed as we sync the changes here with the hydration and Pinia store flows, but this is an amazing first step.
Contributor checklist
Description
The event create flow is currently incomplete, with the other create flows being further along. This aims to introduce an event create flow design based on the Figma prototype and existing create flows (e.g. for organizations). The basic features including the paged single form design using
v-if
seem to work. Using aref
with vue models (taken from organizations create flow) enables saving of form data "across" pages, so entries will be populated after moving forwards or backwards. This also makes it easier to send the request data at the end. There are still features and components that will need to be implemented like validation, tooltips, organizer selection, roles, public/private publishing, and invitations.Also, I think I included the QR code changes in this branch. Sorry about that.
Related issue