mirror of
https://github.com/docmost/docmost.git
synced 2025-11-25 05:31:13 +10:00
* fix page import title bug * fix youtube embed in markdown export * add link to rendered file html * fix: markdown callout import * update local generateJSON * feat: switch spaces from sidebar * remove unused package * feat: editor date menu command * fix date description * update default locale code * feat: add more code highlight languages
71 lines
2.0 KiB
TypeScript
71 lines
2.0 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
import { useDebouncedValue } from '@mantine/hooks';
|
|
import { Avatar, Group, Select, SelectProps, Text } from '@mantine/core';
|
|
import { useGetSpacesQuery } from '@/features/space/queries/space-query.ts';
|
|
import { ISpace } from '../../types/space.types';
|
|
|
|
interface SpaceSelectProps {
|
|
onChange: (value: string) => void;
|
|
value?: string;
|
|
label?: string;
|
|
}
|
|
|
|
const renderSelectOption: SelectProps['renderOption'] = ({ option }) => (
|
|
<Group gap="sm">
|
|
<Avatar color="initials" variant="filled" name={option.label} size={20} />
|
|
<div>
|
|
<Text size="sm">{option.label}</Text>
|
|
</div>
|
|
</Group>
|
|
);
|
|
|
|
export function SpaceSelect({ onChange, label, value }: SpaceSelectProps) {
|
|
const [searchValue, setSearchValue] = useState('');
|
|
const [debouncedQuery] = useDebouncedValue(searchValue, 500);
|
|
const { data: spaces, isLoading } = useGetSpacesQuery({
|
|
query: debouncedQuery,
|
|
limit: 50,
|
|
});
|
|
const [data, setData] = useState([]);
|
|
|
|
useEffect(() => {
|
|
if (spaces) {
|
|
const spaceData = spaces?.items
|
|
.filter((space: ISpace) => space.slug !== value)
|
|
.map((space: ISpace) => {
|
|
return {
|
|
label: space.name,
|
|
value: space.slug,
|
|
};
|
|
});
|
|
|
|
const filteredSpaceData = spaceData.filter(
|
|
(user) =>
|
|
!data.find((existingUser) => existingUser.value === user.value)
|
|
);
|
|
setData((prevData) => [...prevData, ...filteredSpaceData]);
|
|
}
|
|
}, [spaces]);
|
|
|
|
return (
|
|
<Select
|
|
data={data}
|
|
renderOption={renderSelectOption}
|
|
maxDropdownHeight={300}
|
|
//label={label || 'Select space'}
|
|
placeholder="Search for spaces"
|
|
searchable
|
|
searchValue={searchValue}
|
|
onSearchChange={setSearchValue}
|
|
clearable
|
|
variant="filled"
|
|
onChange={onChange}
|
|
nothingFoundMessage="No space found"
|
|
limit={50}
|
|
checkIconPosition="right"
|
|
comboboxProps={{ width: 300, withinPortal: false }}
|
|
dropdownOpened
|
|
/>
|
|
);
|
|
}
|