From cab6dae73e524e3917500583b169fd81bf3f9487 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Fri, 15 Oct 2021 13:37:53 +0200 Subject: feat(neighbs): add ability to show nth neighbor --- components/Tweaks/FilterPanel.tsx | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) (limited to 'components/Tweaks/FilterPanel.tsx') diff --git a/components/Tweaks/FilterPanel.tsx b/components/Tweaks/FilterPanel.tsx index e375e31..ad0c5e4 100644 --- a/components/Tweaks/FilterPanel.tsx +++ b/components/Tweaks/FilterPanel.tsx @@ -20,8 +20,9 @@ import { } from '@chakra-ui/react' import React from 'react' import { TagPanel } from './TagPanel' -import { initialFilter, TagColors } from '../config' +import { initialFilter, initialLocal, TagColors } from '../config' import { TagColorPanel } from './TagColorPanel' +import { SliderWithInfo } from './SliderWithInfo' export interface FilterPanelProps { filter: typeof initialFilter @@ -31,10 +32,22 @@ export interface FilterPanelProps { highlightColor: string colorList: string[] tags: string[] + local: typeof initialLocal + setLocal: any } const FilterPanel = (props: FilterPanelProps) => { - const { filter, setFilter, tagColors, setTagColors, highlightColor, colorList, tags } = props + const { + filter, + setFilter, + local, + setLocal, + tagColors, + setTagColors, + highlightColor, + colorList, + tags, + } = props return ( { isChecked={filter.bad} > + setLocal({ ...local, neighbors: v })} + min={1} + max={5} + step={1} + /> -- cgit v1.2.3