-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: handle more selection cases (#222)
* feat: handle more selection cases * feat: - Add aggregated result - Merge selection - Improve selection loop * feat: handle remove selection * fix: scrollToFocusCell function name * prevent rigth click from deselect other range --------- Co-authored-by: Visal .In <invisal@gmail.com>
- Loading branch information
Showing
11 changed files
with
625 additions
and
70 deletions.
There are no files selected for viewing
129 changes: 129 additions & 0 deletions
129
src/components/gui/aggregate-result/aggregate-result-button.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
import { buttonVariants } from "../../ui/button"; | ||
import { Popover, PopoverContent, PopoverTrigger } from "../../ui/popover"; | ||
import OptimizeTableState, { | ||
AggregateFunction, | ||
} from "../table-optimized/OptimizeTableState"; | ||
import { useCallback, useEffect, useState } from "react"; | ||
import ListButtonItem from "../list-button-item"; | ||
import { LucideCheck, LucideChevronDown } from "lucide-react"; | ||
export interface AggregateResult { | ||
sum: number | string | undefined; | ||
avg: number | string | undefined; | ||
min: number | string | undefined; | ||
max: number | string | undefined; | ||
count: number | string | undefined; | ||
} | ||
|
||
export default function AggregateResultButton({ | ||
data, | ||
}: { | ||
data: OptimizeTableState; | ||
}) { | ||
const [result, setResult] = useState<AggregateResult>({ | ||
sum: undefined, | ||
avg: undefined, | ||
min: undefined, | ||
max: undefined, | ||
count: undefined, | ||
}); | ||
|
||
const [defaultFunction, setDefaultFunction] = useState<AggregateFunction>( | ||
data.getDefaultAggregateFunction() | ||
); | ||
useEffect(() => { | ||
const changeCallback = () => { | ||
setResult({ ...data.getSelectionAggregatedResult() }); | ||
}; | ||
|
||
data.addChangeListener(changeCallback); | ||
return () => data.removeChangeListener(changeCallback); | ||
}, [data]); | ||
|
||
let displayResult = ""; | ||
|
||
if (defaultFunction && result[defaultFunction]) { | ||
displayResult = `${defaultFunction.toUpperCase()}: ${result[defaultFunction]}`; | ||
} else { | ||
if (result.sum !== undefined) { | ||
displayResult = `SUM: ${result.sum}`; | ||
} else if (result.avg !== undefined) { | ||
displayResult = `AVG: ${result.avg}`; | ||
} else if (result.min !== undefined) { | ||
displayResult = `MIN: ${result.min}`; | ||
} else if (result.max !== undefined) { | ||
displayResult = `MAX: ${result.max}`; | ||
} else if (result.count != undefined) { | ||
displayResult = `COUNT: ${result.count}`; | ||
} | ||
} | ||
|
||
const handleSetDefaultFunction = useCallback( | ||
(functionName: AggregateFunction) => { | ||
setDefaultFunction(functionName); | ||
data.setDefaultAggregateFunction(functionName); | ||
}, | ||
[data] | ||
); | ||
|
||
if (result.count && Number(result.count) <= 1) return null; | ||
|
||
return ( | ||
<Popover> | ||
<PopoverTrigger> | ||
<div className={buttonVariants({ variant: "ghost", size: "sm" })}> | ||
{displayResult}{" "} | ||
{!!displayResult && <LucideChevronDown className="w-4 h-4 ml-2" />} | ||
</div> | ||
</PopoverTrigger> | ||
<PopoverContent className="p-0"> | ||
<div className="flex flex-col p-4"> | ||
{!!result.sum && ( | ||
<ListButtonItem | ||
text={"SUM: " + result.sum} | ||
icon={defaultFunction === "sum" ? LucideCheck : undefined} | ||
onClick={function (): void { | ||
handleSetDefaultFunction("sum"); | ||
}} | ||
/> | ||
)} | ||
{!!result.avg && ( | ||
<ListButtonItem | ||
text={"AVG: " + result.avg} | ||
icon={defaultFunction === "avg" ? LucideCheck : undefined} | ||
onClick={function (): void { | ||
handleSetDefaultFunction("avg"); | ||
}} | ||
/> | ||
)} | ||
{!!result.max && ( | ||
<ListButtonItem | ||
text={"MAX: " + result.max} | ||
icon={defaultFunction === "max" ? LucideCheck : undefined} | ||
onClick={function (): void { | ||
handleSetDefaultFunction("max"); | ||
}} | ||
/> | ||
)} | ||
{!!result.min && ( | ||
<ListButtonItem | ||
text={"MIN: " + result.min} | ||
icon={defaultFunction === "min" ? LucideCheck : undefined} | ||
onClick={function (): void { | ||
handleSetDefaultFunction("min"); | ||
}} | ||
/> | ||
)} | ||
{!!result.count && ( | ||
<ListButtonItem | ||
text={"COUNT: " + result.count} | ||
icon={defaultFunction === "count" ? LucideCheck : undefined} | ||
onClick={function (): void { | ||
handleSetDefaultFunction("count"); | ||
}} | ||
/> | ||
)} | ||
</div> | ||
</PopoverContent> | ||
</Popover> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.