105 lines
2.4 KiB
TypeScript
105 lines
2.4 KiB
TypeScript
/**
|
|
* @deprecated file
|
|
* All new changes should be made to the V2 file in
|
|
* `/packages/ui/v2/core/form/MultiSelectCheckboxes.tsx`
|
|
*/
|
|
import React, { Dispatch, SetStateAction } from "react";
|
|
import { components, GroupBase, OptionProps } from "react-select";
|
|
import { Props } from "react-select";
|
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
|
|
import Select from "./Select";
|
|
|
|
export type Option = {
|
|
value: string;
|
|
label: string;
|
|
};
|
|
|
|
const InputOption: React.FC<OptionProps<any, boolean, GroupBase<any>>> = ({
|
|
isDisabled,
|
|
isFocused,
|
|
isSelected,
|
|
children,
|
|
innerProps,
|
|
...rest
|
|
}) => {
|
|
const style = {
|
|
alignItems: "center",
|
|
backgroundColor: isFocused ? "rgba(244, 245, 246, var(--tw-bg-opacity))" : "transparent",
|
|
color: "inherit",
|
|
display: "flex ",
|
|
};
|
|
|
|
const props = {
|
|
...innerProps,
|
|
style,
|
|
};
|
|
|
|
return (
|
|
<components.Option
|
|
{...rest}
|
|
isDisabled={isDisabled}
|
|
isFocused={isFocused}
|
|
isSelected={isSelected}
|
|
innerProps={props}>
|
|
<input
|
|
type="checkbox"
|
|
className="text-primary-600 focus:ring-primary-500 h-4 w-4 rounded border-gray-300 ltr:mr-2 rtl:ml-2"
|
|
checked={isSelected}
|
|
readOnly
|
|
/>
|
|
{children}
|
|
</components.Option>
|
|
);
|
|
};
|
|
|
|
type MultiSelectionCheckboxesProps = {
|
|
options: { label: string; value: string }[];
|
|
setSelected: Dispatch<SetStateAction<Option[]>>;
|
|
selected: Option[];
|
|
setValue: (s: Option[]) => unknown;
|
|
};
|
|
|
|
const MultiValue = ({ index, getValue }: { index: number; getValue: any }) => {
|
|
const { t } = useLocale();
|
|
|
|
return <>{!index && <div>{t("nr_event_type", { count: getValue().length })}</div>}</>;
|
|
};
|
|
|
|
/**
|
|
* @deprecated file
|
|
* All new changes should be made to the V2 file in
|
|
* `/packages/ui/v2/core/form/MultiSelectCheckboxes.tsx`
|
|
*/
|
|
export default function MultiSelectCheckboxes({
|
|
options,
|
|
isLoading,
|
|
selected,
|
|
setSelected,
|
|
setValue,
|
|
}: Omit<Props, "options"> & MultiSelectionCheckboxesProps) {
|
|
const additonalComponents = { MultiValue };
|
|
|
|
return (
|
|
<Select
|
|
value={selected}
|
|
onChange={(s: any) => {
|
|
setSelected(s);
|
|
setValue(s);
|
|
}}
|
|
options={options}
|
|
isMulti
|
|
className="w-64 text-sm"
|
|
isSearchable={false}
|
|
closeMenuOnSelect={false}
|
|
hideSelectedOptions={false}
|
|
isLoading={isLoading}
|
|
components={{
|
|
...additonalComponents,
|
|
Option: InputOption,
|
|
}}
|
|
/>
|
|
);
|
|
}
|