feat: ffprobe for stream checking, drop overlay using webview

This commit is contained in:
2025-07-13 13:59:40 -05:00
parent 7fcb3e3f7c
commit 2e03281a79
9 changed files with 182 additions and 249 deletions

View File

@@ -1,26 +1,26 @@
import { ResponsiveLine } from "@nivo/line";
import { formatBytes } from "./lib/format.js";
type Frame = {
id: string;
data: { x: string | number; y: number }[];
};
import { getCurrentWebview } from "@tauri-apps/api/webview";
import { useEffect } from "react";
import { useEffect, useRef, useState } from "react";
import Graph from "./components/Graph.js";
import DropOverlay from "./components/drop-overlay.js";
function App() {
const data: Frame[] = [];
const [paths, setPaths] = useState<string[]>([]);
useEffect(() => {
const unlistenPromise = getCurrentWebview().onDragDropEvent(
async (event) => {
if (event.payload.type === "over") {
console.log("User hovering", event.payload.position);
} else if (event.payload.type === "drop") {
console.log("User dropped", event.payload.paths);
} else {
console.log("File drop cancelled");
async ({ payload }) => {
if (payload.type === "enter") {
setPaths(payload.paths);
console.log("User hovering", payload);
} else if (payload.type === "leave" || payload.type === "drop") {
setPaths([]);
console.log("User left", payload);
}
}
);
@@ -34,106 +34,7 @@ function App() {
};
}, []);
// const data: Frame[] = useMemo(() =>
// // Array.from({ length: 4 }, (_, i) => {
// // const d = Math.random();
// // const g = Math.random();
// // return {
// // id: `file-${i}`,
// // data: Array.from({ length: 500 }, (_, j) => {
// // if (Math.random() < 0.5) return null;
// // return {
// // x: j,
// // y: Math.random() * 256 * d + (1 - g) * 1024,
// // };
// // }).filter((i) => i !== null),
// // };
// // }),
// []
// );
console.log(data);
const graph = (
<ResponsiveLine
data={data}
margin={{ top: 50, right: 110, bottom: 50, left: 60 }}
xScale={{ type: "linear" }}
yScale={{
type: "linear",
min: 0,
max: "auto",
stacked: false,
reverse: false,
}}
theme={{
tooltip: {
container: {
backgroundColor: "#2e2b45",
},
},
grid: {
line: {
stroke: "rgb(252, 191, 212)",
strokeWidth: 0.35,
strokeOpacity: 0.75,
},
},
crosshair: {
line: {
stroke: "#fdd3e2",
strokeWidth: 1,
},
},
axis: {
legend: {},
domain: {
line: {
stroke: "rgb(252, 191, 212)",
strokeWidth: 0.5,
strokeOpacity: 0.5,
},
},
},
text: {
fill: "#6e6a86",
},
}}
axisBottom={{ legend: "transportation", legendOffset: 36 }}
axisLeft={{
legend: "count",
legendOffset: -40,
format: (v) => formatBytes(v * 1024 * 53),
}}
pointSize={10}
colors={[
"#3e8faf",
"#c4a7e7",
"#f5c276",
"#EA9B96",
"#EB7092",
"#9CCFD8",
]}
// pointColor={{ modifiers: [["brighter", 1100]] }}
pointBorderWidth={0}
pointBorderColor={{ from: "seriesColor" }}
pointLabelYOffset={-12}
enableSlices={"x"}
enableTouchCrosshair={true}
useMesh={true}
legends={[
{
anchor: "bottom-right",
direction: "column",
translateX: 100,
itemWidth: 80,
itemHeight: 22,
symbolShape: "circle",
},
]}
/>
);
const graph = <Graph data={data} />;
return (
<div
@@ -141,16 +42,7 @@ function App() {
className="min-h-screen min-w-screen overflow-hidden"
style={{ "--wails-drop-target": "drop" } as React.CSSProperties}
>
<div
id="drop-target"
className="absolute z-10 top-0 left-0 w-full h-full transition-[opacity] duration-200 ease-in-out"
>
<div className="flex flex-col items-center justify-center shadow h-full">
<div className="text-2xl font-bold text-zinc-200">
Drag and Drop to Add
</div>
</div>
</div>
<DropOverlay paths={paths} />
{graph}
</div>
);