1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
import React, { useContext } from 'react'
import {
Box,
Button,
Flex,
Menu,
MenuButton,
MenuItem,
MenuList,
Portal,
Text,
} from '@chakra-ui/react'
import { ChevronDownIcon } from '@chakra-ui/icons'
import { initialColoring } from '../../config'
export interface GraphColorSelectProps {
coloring: typeof initialColoring
setColoring: any
}
export const GraphColorSelect = (props: GraphColorSelectProps) => {
type Theme = { [key: string]: string }
const { coloring, setColoring } = props
return (
<Flex alignItems="center" justifyContent="space-between" pl={7} pr={2}>
<Text>Graph coloring</Text>
<Menu isLazy placement="right">
<MenuButton
as={Button}
size="sm"
colorScheme=""
color="black"
rightIcon={<ChevronDownIcon />}
>
{coloring.method === 'degree' ? 'Links' : 'Communities'}
</MenuButton>
<Portal>
<MenuList minW={10} zIndex="popover" bgColor="gray.200">
<MenuItem
onClick={() =>
setColoring((curr: typeof initialColoring) => ({ ...curr, method: 'degree' }))
}
justifyContent="space-between"
alignItems="center"
display="flex"
>
Number of links
</MenuItem>
<MenuItem
onClick={() =>
setColoring((curr: typeof initialColoring) => ({ ...curr, method: 'community' }))
}
justifyContent="space-between"
alignItems="center"
display="flex"
>
Communities
</MenuItem>
</MenuList>
</Portal>
</Menu>
</Flex>
)
}
|