diff --git a/packages/ui/src/dropdowns/custom-select.tsx b/packages/ui/src/dropdowns/custom-select.tsx index 0fa183cb2ce..37608ea8db6 100644 --- a/packages/ui/src/dropdowns/custom-select.tsx +++ b/packages/ui/src/dropdowns/custom-select.tsx @@ -122,7 +122,7 @@ const Option = (props: ICustomSelectItemProps) => { value={value} className={({ active }) => cn( - "cursor-pointer select-none truncate rounded px-1 py-1.5 text-custom-text-200", + "cursor-pointer select-none truncate rounded px-1 py-1.5 text-custom-text-200 flex items-center justify-between gap-2", { "bg-custom-background-80": active, }, @@ -131,10 +131,10 @@ const Option = (props: ICustomSelectItemProps) => { } > {({ selected }) => ( -
-
{children}
+ <> + {children} {selected && } -
+ )} ); diff --git a/web/components/core/filters/date-filter-select.tsx b/web/components/core/filters/date-filter-select.tsx index 2585e2f9575..9bb10f800d0 100644 --- a/web/components/core/filters/date-filter-select.tsx +++ b/web/components/core/filters/date-filter-select.tsx @@ -51,10 +51,10 @@ export const DateFilterSelect: React.FC = ({ title, value, onChange }) => > {dueDateRange.map((option, index) => ( - <> +
{option.icon} {title} {option.name} - +
))} diff --git a/web/components/modules/sidebar-select/select-status.tsx b/web/components/modules/sidebar-select/select-status.tsx index 0eb60ebb271..b8c337fd489 100644 --- a/web/components/modules/sidebar-select/select-status.tsx +++ b/web/components/modules/sidebar-select/select-status.tsx @@ -46,10 +46,10 @@ export const SidebarStatusSelect: React.FC = ({ control, submitChanges, w > {MODULE_STATUS.map((option) => ( - <> +
{option.label} - +
))} diff --git a/web/components/project/create-project-modal.tsx b/web/components/project/create-project-modal.tsx index db0c284f234..83589795e19 100644 --- a/web/components/project/create-project-modal.tsx +++ b/web/components/project/create-project-modal.tsx @@ -4,7 +4,7 @@ import { Dialog, Transition } from "@headlessui/react"; import { observer } from "mobx-react-lite"; import { X } from "lucide-react"; // hooks -import { useEventTracker, useProject, useUser, useWorkspace } from "hooks/store"; +import { useEventTracker, useProject, useUser } from "hooks/store"; import useToast from "hooks/use-toast"; // ui import { Button, CustomSelect, Input, TextArea } from "@plane/ui"; @@ -66,7 +66,6 @@ export const CreateProjectModal: FC = observer((props) => { const { membership: { currentWorkspaceRole }, } = useUser(); - const { currentWorkspace } = useWorkspace(); const { addProjectToFavorites, createProject } = useProject(); // states const [isChangeInIdentifierRequired, setIsChangeInIdentifierRequired] = useState(true); @@ -160,7 +159,7 @@ export const CreateProjectModal: FC = observer((props) => { payload: { ...payload, state: "FAILED", - } + }, }); }); }); @@ -365,13 +364,14 @@ export const CreateProjectModal: FC = observer((props) => { tabIndex={4} > {NETWORK_CHOICES.map((network) => ( - - - {network.label} + +
+ +
+

{network.label}

+

{network.description}

+
+
))} diff --git a/web/components/project/form.tsx b/web/components/project/form.tsx index 58515d030f8..267103dc8ba 100644 --- a/web/components/project/form.tsx +++ b/web/components/project/form.tsx @@ -132,7 +132,7 @@ export const ProjectDetailsForm: FC = (props) => { }, 300); }; const currentNetwork = NETWORK_CHOICES.find((n) => n.key === project?.network); - const selectedNetwork = NETWORK_CHOICES.find((n) => n.key === watch("network")); + return (
@@ -269,23 +269,44 @@ export const ProjectDetailsForm: FC = (props) => { ( - - {NETWORK_CHOICES.map((network) => ( - - {network.label} - - ))} - - )} + render={({ field: { value, onChange } }) => { + const selectedNetwork = NETWORK_CHOICES.find((n) => n.key === value); + + return ( + + {selectedNetwork ? ( + <> + + {selectedNetwork.label} + + ) : ( + Select network + )} +
+ } + buttonClassName="!border-custom-border-200 !shadow-none font-medium rounded-md" + input + disabled={!isAdmin} + // optionsClassName="w-full" + > + {NETWORK_CHOICES.map((network) => ( + +
+ +
+

{network.label}

+

{network.description}

+
+
+
+ ))} + + ); + }} /> diff --git a/web/constants/project.ts b/web/constants/project.ts index f9819c780e6..9e7bdee9ef5 100644 --- a/web/constants/project.ts +++ b/web/constants/project.ts @@ -11,15 +11,22 @@ export enum EUserProjectRoles { ADMIN = 20, } -export const NETWORK_CHOICES: { key: 0 | 2; label: string; icon: LucideIcon }[] = [ +export const NETWORK_CHOICES: { + key: 0 | 2; + label: string; + description: string; + icon: LucideIcon; +}[] = [ { key: 0, label: "Private", + description: "Accessible only by invite", icon: Lock, }, { key: 2, label: "Public", + description: "Anyone in the workspace can join", icon: Globe2, }, ];