import { CloseIcon, RepeatClockIcon, ChevronDownIcon, SettingsIcon, InfoOutlineIcon, } from '@chakra-ui/icons' import { Accordion, AccordionButton, AccordionIcon, AccordionItem, AccordionPanel, Box, Button, Flex, IconButton, Menu, MenuButton, MenuItem, MenuList, Select, Slider, SliderFilledTrack, SliderThumb, SliderTrack, StackDivider, Switch, Text, Tooltip, VStack, Heading, Collapse, } from '@chakra-ui/react' import React, { useState } from 'react' import Scrollbars from 'react-custom-scrollbars-2' import { initialPhysics, initialFilter } from './config' export interface TweakProps { physics: typeof initialPhysics setPhysics: any threeDim: boolean setThreeDim: (newValue: boolean) => void filter: typeof initialFilter setFilter: any } export const Tweaks = (props: TweakProps) => { const { physics, setPhysics, threeDim, setThreeDim, filter, setFilter } = props const [showTweaks, setShowTweaks] = useState(true) return ( <> } onClick={() => setShowTweaks(true)} /> } onClick={() => setPhysics(initialPhysics)} colorScheme="purple" variant="none" size="sm" /> } aria-label="Close Tweak Panel" variant="ghost" onClick={() => setShowTweaks(false)} /> ( )} > Filter } align="stretch" paddingLeft={7} color="gray.800" > Orphans { setFilter({ ...filter, orphans: !filter.orphans }) }} isChecked={filter.orphans} > Link nodes with parent file { setFilter({ ...filter, parents: !filter.parents }) }} isChecked={filter.parents} > Physics setPhysics({ ...physics, enabled: !physics.enabled })} isChecked={physics.enabled} colorScheme="purple" /> } align="stretch" paddingLeft={7} color="gray.800" > setPhysics({ ...physics, gravityOn: !physics.gravityOn })} > setPhysics({ ...physics, gravity: v / 10 })} /> setPhysics({ ...physics, charge: -100 * value })} label="Repulsive Force" /> setPhysics({ ...physics, collision: !physics.collision })} > setPhysics({ ...physics, collisionStrength: value / 10 }) } label="Strength" /> setPhysics({ ...physics, linkStrength: value / 5 })} label="Link Force" /> setPhysics({ ...physics, linkIts: value })} min={0} max={6} step={1} infoText="How many links down the line the physics of a single node affects (Slow)" /> setPhysics({ ...physics, velocityDecay: value / 10 })} /> Advanced } align="stretch" paddingLeft={3} color="gray.800" > setPhysics({ ...physics, iterations: v })} infoText="Number of times the physics simulation iterates per simulation step" /> setPhysics({ ...physics, alphaDecay: value / 50 }) } /> {/* */} Visual } align="stretch" paddingLeft={7} color="gray.800" > setPhysics({ ...physics, colorful: !physics.colorful })} value={physics.colorful} > Child setPhysics({ ...physics, nodeRel: value })} /> setPhysics({ ...physics, linkWidth: value })} /> Labels }> {!physics.labels ? 'Never' : physics.labels < 2 ? 'On Highlight' : 'Always'} setPhysics({ ...physics, labels: 0 })}> Never setPhysics({ ...physics, labels: 1 })}> On Highlight setPhysics({ ...physics, labels: 2 })}> Always 1} animateOpacity> setPhysics({ ...physics, labelScale: value / 5 })} /> setPhysics({ ...physics, particles: !physics.particles })} > setPhysics({ ...physics, particlesNumber: value })} /> setPhysics({ ...physics, particlesWidth: value })} /> setPhysics({ ...physics, highlight: !physics.highlight })} value={physics.highlight} > } align="stretch" paddingLeft={0} > setPhysics({ ...physics, highlightLinkSize: value })} /> setPhysics({ ...physics, highlightNodeSize: value })} /> {/* Highlight node color Highlight link color */} { setPhysics({ ...physics, highlightAnim: !physics.highlightAnim }) }} value={physics.highlightAnim} > setPhysics({ ...physics, animationSpeed: v })} value={physics.animationSpeed} infoText="Slower speed has a chance of being buggy" min={50} max={1000} step={10} /> {/* setPhysics({ ...physics, algorithmName: { option } }), )} /> */} Behavior } align="stretch" paddingLeft={7} color="gray.800" > ) } export interface InfoTooltipProps { infoText?: string | boolean } export const InfoTooltip = (props: InfoTooltipProps) => { const { infoText } = props return ( ) } export interface SliderWithInfoProps { min?: number max?: number step?: number value: number onChange: (arg0: number) => void label: string infoText?: string } export const SliderWithInfo = ({ min = 0, max = 10, step = 0.1, value = 1, ...rest }: SliderWithInfoProps) => { const { onChange, label, infoText } = rest return ( {label} {infoText && } ) } export interface EnableSectionProps { label: string value: boolean | number onChange: () => void infoText?: string children: React.ReactNode } export const EnableSection = (props: EnableSectionProps) => { const { value, onChange, label, infoText, children } = props return ( {label} {infoText && } {children} ) } export interface DropDownMenuProps { textArray: string[] onClickArray: (() => void)[] displayValue: string } export const DropDownMenu = (props: DropDownMenuProps) => { const { textArray, onClickArray, displayValue } = props return ( }> {displayValue} {textArray.map((option, i) => { ; {option} })} ) }