learnhouse/apps/web/components/Objects/Modals/Dash/OrgUserGroups/AddUserGroup.tsx
2025-03-06 00:14:47 +05:30

99 lines
No EOL
3.2 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'
import toast from 'react-hot-toast'
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) => {
const toastID = toast.loading("Creating...")
setIsSubmitting(true)
const res = await createUserGroup(values, access_token)
if (res.status == 200) {
setIsSubmitting(false)
mutate(`${getAPIUrl()}usergroups/org/${org.id}`)
props.setCreateUserGroupModal(false)
toast.success("Created new usergroup", {id:toastID})
} else {
setIsSubmitting(false)
toast.error("Couldn't create new usergroup", {id:toastID})
}
},
})
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