mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
96 lines
No EOL
3 KiB
TypeScript
96 lines
No EOL
3 KiB
TypeScript
'use client'
|
|
import FormLayout, {
|
|
FormField,
|
|
FormLabelAndMessage,
|
|
Input,
|
|
} from '@components/Objects/StyledElements/Form/Form'
|
|
import * as Form from '@radix-ui/react-form'
|
|
import { useOrg } from '@components/Contexts/OrgContext'
|
|
import React from 'react'
|
|
import { createUserGroup } from '@services/usergroups/usergroups'
|
|
import { mutate } from 'swr'
|
|
import { getAPIUrl } from '@services/config/config'
|
|
import { useLHSession } from '@components/Contexts/LHSessionContext'
|
|
import { useFormik } from 'formik'
|
|
|
|
type AddUserGroupProps = {
|
|
setCreateUserGroupModal: any
|
|
}
|
|
const validate = (values: any) => {
|
|
const errors: any = {}
|
|
|
|
if (!values.name) {
|
|
errors.name = 'Name is Required'
|
|
}
|
|
|
|
return errors
|
|
}
|
|
|
|
function AddUserGroup(props: AddUserGroupProps) {
|
|
const org = useOrg() as any;
|
|
const session = useLHSession() as any
|
|
const access_token = session?.data?.tokens?.access_token;
|
|
const [isSubmitting, setIsSubmitting] = React.useState(false)
|
|
|
|
const formik = useFormik({
|
|
initialValues: {
|
|
name: '',
|
|
description: '',
|
|
org_id: org.id
|
|
},
|
|
validate,
|
|
onSubmit: async (values) => {
|
|
setIsSubmitting(true)
|
|
const res = await createUserGroup(values, access_token)
|
|
if (res.status == 200) {
|
|
setIsSubmitting(false)
|
|
mutate(`${getAPIUrl()}usergroups/org/${org.id}`)
|
|
props.setCreateUserGroupModal(false)
|
|
|
|
} else {
|
|
setIsSubmitting(false)
|
|
}
|
|
},
|
|
})
|
|
|
|
return (
|
|
<FormLayout onSubmit={formik.handleSubmit}>
|
|
<FormField name="name">
|
|
<FormLabelAndMessage
|
|
label="Name"
|
|
message={formik.errors.name}
|
|
/>
|
|
<Form.Control asChild>
|
|
<Input
|
|
onChange={formik.handleChange}
|
|
value={formik.values.name}
|
|
type="name"
|
|
required
|
|
/>
|
|
</Form.Control>
|
|
</FormField>
|
|
<FormField name="description">
|
|
<FormLabelAndMessage
|
|
label="Description"
|
|
message={formik.errors.description}
|
|
/>
|
|
<Form.Control asChild>
|
|
<Input
|
|
onChange={formik.handleChange}
|
|
value={formik.values.description}
|
|
type="description"
|
|
/>
|
|
</Form.Control>
|
|
</FormField>
|
|
<div className="flex py-4">
|
|
<Form.Submit asChild>
|
|
<button className="w-full bg-black text-white font-bold text-center p-2 rounded-md shadow-md hover:cursor-pointer">
|
|
{isSubmitting ? 'Loading...' : 'Create a UserGroup'}
|
|
</button>
|
|
</Form.Submit>
|
|
</div>
|
|
</FormLayout>
|
|
)
|
|
}
|
|
|
|
export default AddUserGroup |