mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
eb53876af3
* dev: remove default user * dev: initiate licensing * dev: remove migration file 0046 * feat: self hosted licensing initialize * dev: instance licenses * dev: change license response structure * dev: add default properties and issue mention migration * dev: reset migrations * dev: instance configuration * dev: instance configuration migration * dev: update instance configuration model to take null and empty values * dev: instance configuration variables * dev: set default values * dev: update instance configuration load * dev: email configuration settings moved to database * dev: instance configuration on instance bootup * dev: auto instance registration script * dev: instance admin * dev: enable instance configuration and instance admin roles * dev: instance owner fix * dev: instance configuration values * dev: fix instance permissions and serializer * dev: fix email senders * dev: remove deprecated variables * dev: fix current site domain registration * dev: update cors setup and local settings * dev: migrate instance registration and configuration to manage commands * dev: check email validity * dev: update script to use manage command * dev: default bucket creation script * dev: instance admin routes and initial set of screens * dev: admin api to check if the current user is admin * dev: instance admin unique constraints * dev: check magic link login * dev: fix email sending for ssl * dev: create instance activation route if the instance is not activated during startup * dev: removed DJANGO_SETTINGS_MODULE from environment files and deleted auto bucket create script * dev: environment configuration for backend * dev: fix access token variable error * feat: Instance Admin Panel: General Settings (#2792) --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
127 lines
3.8 KiB
TypeScript
127 lines
3.8 KiB
TypeScript
import { FC } from "react";
|
|
import { Controller, useForm } from "react-hook-form";
|
|
// ui
|
|
import { Button, Input, ToggleSwitch } from "@plane/ui";
|
|
// types
|
|
import { IInstance } from "types/instance";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
|
|
export interface IInstanceGeneralForm {
|
|
instance: IInstance;
|
|
}
|
|
|
|
export interface GeneralFormValues {
|
|
instance_name: string;
|
|
is_telemetry_enabled: boolean;
|
|
}
|
|
|
|
export const InstanceGeneralForm: FC<IInstanceGeneralForm> = (props) => {
|
|
const { instance } = props;
|
|
// store
|
|
const { instance: instanceStore } = useMobxStore();
|
|
// toast
|
|
const { setToastAlert } = useToast();
|
|
// form data
|
|
const {
|
|
handleSubmit,
|
|
control,
|
|
formState: { errors, isSubmitting },
|
|
} = useForm<GeneralFormValues>({
|
|
defaultValues: {
|
|
instance_name: instance.instance_name,
|
|
is_telemetry_enabled: instance.is_telemetry_enabled,
|
|
},
|
|
});
|
|
|
|
const onSubmit = async (formData: GeneralFormValues) => {
|
|
const payload: Partial<GeneralFormValues> = { ...formData };
|
|
|
|
await instanceStore
|
|
.updateInstanceInfo(payload)
|
|
.then(() =>
|
|
setToastAlert({
|
|
title: "Success",
|
|
type: "success",
|
|
message: "Settings updated successfully",
|
|
})
|
|
)
|
|
.catch((err) => console.error(err));
|
|
};
|
|
|
|
return (
|
|
<div className="flex flex-col gap-8 m-8">
|
|
<div className="grid grid-col grid-cols-1 lg:grid-cols-2 2xl:grid-cols-3 items-center justify-between gap-8 w-full">
|
|
<div className="flex flex-col gap-1">
|
|
<h4 className="text-sm">Name of instance</h4>
|
|
<Controller
|
|
control={control}
|
|
name="instance_name"
|
|
render={({ field: { value, onChange, ref } }) => (
|
|
<Input
|
|
id="instance_name"
|
|
name="instance_name"
|
|
type="text"
|
|
value={value}
|
|
onChange={onChange}
|
|
ref={ref}
|
|
hasError={Boolean(errors.instance_name)}
|
|
placeholder="Instance Name"
|
|
className="rounded-md font-medium w-full"
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex flex-col gap-1">
|
|
<h4 className="text-sm">Admin Email</h4>
|
|
<Input
|
|
id="primary_email"
|
|
name="primary_email"
|
|
type="email"
|
|
value={instance.primary_email}
|
|
placeholder="Admin Email"
|
|
className="w-full cursor-not-allowed !text-custom-text-400"
|
|
disabled
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex flex-col gap-1">
|
|
<h4 className="text-sm">Instance Id</h4>
|
|
<Input
|
|
id="instance_id"
|
|
name="instance_id"
|
|
type="text"
|
|
value={instance.instance_id}
|
|
className="rounded-md font-medium w-full cursor-not-allowed !text-custom-text-400"
|
|
disabled
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex items-center gap-8 pt-4">
|
|
<div>
|
|
<div className="text-custom-text-100 font-medium text-sm">Share anonymous usage instance</div>
|
|
<div className="text-custom-text-300 font-normal text-xs">
|
|
Help us understand how you use Plane so we can build better for you.
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<Controller
|
|
control={control}
|
|
name="is_telemetry_enabled"
|
|
render={({ field: { value, onChange } }) => <ToggleSwitch value={value} onChange={onChange} size="sm" />}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex items-center py-1">
|
|
<Button variant="primary" onClick={handleSubmit(onSubmit)} loading={isSubmitting}>
|
|
{isSubmitting ? "Saving..." : "Save Changes"}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|