Skip to content
Snippets Groups Projects
Commit fe627744 authored by Vink, S.A. (Sjoerd)'s avatar Vink, S.A. (Sjoerd)
Browse files

feat(visManager): panels

parent 440ff939
No related branches found
No related tags found
2 merge requests!135geo intergation,!129Feat/visManager
Pipeline #131541 passed
This commit is part of merge request !135. Comments created here will be created in the context of that merge request.
......@@ -77,15 +77,13 @@ export function App(props: App) {
</aside>
<main className="flex w-screen h-[calc(100%-4.2rem)]">
<Resizable divisorSize={3} horizontal={true} defaultProportion={0.33}>
<div className="h-full w-full">
<DataViewer auth={authCheck} />
</div>
<DataViewer auth={authCheck} />
<div className="h-full w-full">
<Resizable divisorSize={3} horizontal={false}>
<div className="w-full h-full panel">
<div className="w-full h-full border">
<VisualizationPanel manager={manager} />
</div>
<div className="w-full h-full panel">
<div className="w-full h-full border">
<QueryBuilder onRunQuery={runQuery} />
</div>
</Resizable>
......
......@@ -14,7 +14,7 @@ export default function DataViewer({ auth }: { auth: boolean }) {
<div className="info-panel w-full h-full flex">
<TooltipProvider delayDuration={100}>
<div className="w-12 flex flex-col items-center justify-between">
<div>
<div className="flex flex-col items-center justify-between">
<Tooltip>
<TooltipTrigger>
<Button
......
......@@ -30,7 +30,7 @@ const matches = (query: string, object: Record<string, any>): number => {
return highestScore;
};
const jaroSimilarity = (s1: string, s2: string) => {
export const jaroSimilarity = (s1: string, s2: string) => {
if (s1 == s2) return 1.0;
const len1 = s1.length;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment