mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
61 lines
1.4 KiB
TypeScript
61 lines
1.4 KiB
TypeScript
import { IconCheck } from "@tabler/icons-react";
|
|
import { Group, Select, SelectProps, Text } from "@mantine/core";
|
|
import React from "react";
|
|
import { spaceRoleData } from "@/features/space/types/space-role-data.ts";
|
|
import { useTranslation } from "react-i18next";
|
|
import { IRoleData } from "@/lib/types.ts";
|
|
|
|
const iconProps = {
|
|
stroke: 1.5,
|
|
color: "currentColor",
|
|
opacity: 0.6,
|
|
size: 18,
|
|
};
|
|
|
|
const renderSelectOption: SelectProps["renderOption"] = ({
|
|
option,
|
|
checked,
|
|
}) => (
|
|
<Group flex="1" gap="xs">
|
|
<div>
|
|
<Text size="sm">{option.label}</Text>
|
|
<Text size="xs" opacity={0.65}>
|
|
{option["description"]}
|
|
</Text>
|
|
</div>{" "}
|
|
{checked && (
|
|
<IconCheck style={{ marginInlineStart: "auto" }} {...iconProps} />
|
|
)}
|
|
</Group>
|
|
);
|
|
|
|
interface SpaceMemberRoleProps {
|
|
onSelect: (value: string) => void;
|
|
defaultRole: string;
|
|
label?: string;
|
|
}
|
|
|
|
export function SpaceMemberRole({
|
|
onSelect,
|
|
defaultRole,
|
|
label,
|
|
}: SpaceMemberRoleProps) {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<Select
|
|
data={spaceRoleData.map((role: IRoleData) => ({
|
|
label: t(role.label),
|
|
value: role.value,
|
|
description: t(role.description),
|
|
}))}
|
|
defaultValue={defaultRole}
|
|
label={label}
|
|
onChange={onSelect}
|
|
renderOption={renderSelectOption}
|
|
allowDeselect={false}
|
|
variant="filled"
|
|
/>
|
|
);
|
|
}
|