Skip to content
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

[Ellipsis] Disable form submission button when form is closed #87

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions src/pages/forms/new.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function NewFormPage(props: NewFormPageProps) {
// const [description, setDescription] = useState('');
const [formTopic, setFormTopic] = useState('');
const [title, setTitle] = useState('');
const [fieldsGuidance, setFieldsGuidance] = useState('');
const [isFormOpen, setIsFormOpen] = useState(true);
const [fieldsSchema, setFieldsSchema] = useState('{}');
const { push } = useRouter();
const [user, setUser] = useState<null | User>(null);
Expand Down Expand Up @@ -70,7 +70,7 @@ export default function NewFormPage(props: NewFormPageProps) {
fields_guidance: fieldsGuidance,
fields_schema: fieldsSchema,
id: formId,
is_open: true,
is_open: isFormOpen,
name: title,
user_id: user.id,
},
Expand Down Expand Up @@ -199,6 +199,7 @@ Your output:
};

const renderStepContent = () => {
if (step === 1) {
if (step === 1) {
return (
<div className="sm:col-span-4 px-4">
Expand All @@ -221,6 +222,17 @@ Your output:
placeholder="Birthday party RSVP, # of guests, dietary restrictions..."
/>
</div>
<div className="mt-4">
<label htmlFor="isFormOpen" className="block text-xl font-medium leading-6 text-gray-900">
Form is open
</label>
<input
type="checkbox"
id="isFormOpen"
checked={isFormOpen}
onChange={(e) => setIsFormOpen(e.target.checked)}
/>
</div>
<div className="mt-4">
<button
type="button"
Expand All @@ -232,6 +244,7 @@ Your output:
</div>
</div>
);
} else {
} else {
return (
<div className="col-span-full px-4">
Expand Down Expand Up @@ -350,17 +363,4 @@ Your output:
</button>
</Link>
)}
{step === 2 && (
<button
type="submit"
disabled={showSpinner}
className="rounded-md bg-indigo-600 px-3 py-2 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
>
Save
</button>
)}
</div>
</form>
</Page>
);
}
{step === 2 && (