mirror of
https://github.com/outline/outline.git
synced 2025-12-20 18:19:43 -06:00
55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
import * as React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import styled from "styled-components";
|
|
import { $Diff } from "utility-types";
|
|
import { s } from "@shared/styles";
|
|
import { CollectionPermission } from "@shared/types";
|
|
import { EmptySelectValue } from "~/types";
|
|
import InputSelect, { Props, Option, InputSelectRef } from "./InputSelect";
|
|
|
|
function InputSelectPermission(
|
|
props: $Diff<
|
|
Props,
|
|
{
|
|
options: Array<Option>;
|
|
ariaLabel: string;
|
|
}
|
|
>,
|
|
ref: React.RefObject<InputSelectRef>
|
|
) {
|
|
const { value, onChange, ...rest } = props;
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<Select
|
|
ref={ref}
|
|
label={t("Permission")}
|
|
options={[
|
|
{
|
|
label: t("View only"),
|
|
value: CollectionPermission.Read,
|
|
},
|
|
{
|
|
label: t("Can edit"),
|
|
value: CollectionPermission.ReadWrite,
|
|
},
|
|
{
|
|
divider: true,
|
|
label: t("No access"),
|
|
value: EmptySelectValue,
|
|
},
|
|
]}
|
|
ariaLabel={t("Default access")}
|
|
value={value || EmptySelectValue}
|
|
onChange={onChange}
|
|
{...rest}
|
|
/>
|
|
);
|
|
}
|
|
|
|
const Select = styled(InputSelect)`
|
|
color: ${s("textSecondary")};
|
|
`;
|
|
|
|
export default React.forwardRef(InputSelectPermission);
|