fix(notes): fixed linting errors
This commit is contained in:
parent
829f3ced73
commit
6f189a6ee2
1 changed files with 90 additions and 19 deletions
|
@ -5,9 +5,68 @@
|
||||||
import { Network } from 'vis-network';
|
import { Network } from 'vis-network';
|
||||||
import { DataSet } from 'vis-data';
|
import { DataSet } from 'vis-data';
|
||||||
import { browser } from '$app/environment';
|
import { browser } from '$app/environment';
|
||||||
|
import type { Note } from '$lib/types';
|
||||||
|
import type { Options } from 'vis-network';
|
||||||
|
|
||||||
let container;
|
// Define custom interfaces for vis-network types
|
||||||
let network = null;
|
interface NetworkNode {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
shape?: string;
|
||||||
|
size?: number;
|
||||||
|
title?: string;
|
||||||
|
color?: {
|
||||||
|
background?: string;
|
||||||
|
border?: string;
|
||||||
|
highlight?: {
|
||||||
|
background?: string;
|
||||||
|
border?: string;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
interface NetworkEdge {
|
||||||
|
id: string;
|
||||||
|
from: string;
|
||||||
|
to: string;
|
||||||
|
width?: number;
|
||||||
|
color?: string | { color?: string };
|
||||||
|
arrows?: string | { to?: { enabled?: boolean; scaleFactor?: number } };
|
||||||
|
}
|
||||||
|
|
||||||
|
// Define interfaces for network event parameters
|
||||||
|
interface DoubleClickParams {
|
||||||
|
nodes: string[];
|
||||||
|
edges: string[];
|
||||||
|
event: MouseEvent;
|
||||||
|
pointer: { DOM: { x: number; y: number }; canvas: { x: number; y: number } };
|
||||||
|
}
|
||||||
|
|
||||||
|
interface HoverNodeParams {
|
||||||
|
node: string;
|
||||||
|
event: MouseEvent;
|
||||||
|
pointer: { DOM: { x: number; y: number }; canvas: { x: number; y: number } };
|
||||||
|
}
|
||||||
|
|
||||||
|
// Define a type for the Network instance
|
||||||
|
interface NetworkInstance {
|
||||||
|
destroy: () => void;
|
||||||
|
on: <T>(event: string, callback: (params: T) => void) => void;
|
||||||
|
stopSimulation: () => void;
|
||||||
|
setOptions: (options: Partial<Options>) => void;
|
||||||
|
body: {
|
||||||
|
nodes: Record<string, { options: { title: string } }>;
|
||||||
|
};
|
||||||
|
physics: {
|
||||||
|
options: {
|
||||||
|
enabled: boolean;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
fit: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
let container: HTMLElement;
|
||||||
|
let network: NetworkInstance | null = null;
|
||||||
let status = 'Waiting for initialization...';
|
let status = 'Waiting for initialization...';
|
||||||
let isDarkMode = false;
|
let isDarkMode = false;
|
||||||
let isLoading = false;
|
let isLoading = false;
|
||||||
|
@ -30,10 +89,16 @@
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
createGraph();
|
createGraph();
|
||||||
}, 500);
|
}, 500);
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
if (network) {
|
||||||
|
network.destroy();
|
||||||
|
}
|
||||||
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
// Update container theme
|
// Update container theme
|
||||||
function updateContainerTheme() {
|
function updateContainerTheme(): void {
|
||||||
if (!container) return;
|
if (!container) return;
|
||||||
|
|
||||||
if (isDarkMode) {
|
if (isDarkMode) {
|
||||||
|
@ -46,7 +111,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create a graph from all notes
|
// Create a graph from all notes
|
||||||
async function createGraph() {
|
async function createGraph(): Promise<void> {
|
||||||
if (!container) {
|
if (!container) {
|
||||||
status = 'Container not available';
|
status = 'Container not available';
|
||||||
return;
|
return;
|
||||||
|
@ -60,10 +125,11 @@
|
||||||
await notes.load();
|
await notes.load();
|
||||||
|
|
||||||
// Get notes from store
|
// Get notes from store
|
||||||
let allNotes = [];
|
let allNotes: Note[] = [];
|
||||||
notes.subscribe((value) => {
|
const unsubscribe = notes.subscribe((value) => {
|
||||||
allNotes = value;
|
allNotes = value;
|
||||||
})();
|
});
|
||||||
|
unsubscribe();
|
||||||
|
|
||||||
status = `Loaded ${allNotes.length} notes`;
|
status = `Loaded ${allNotes.length} notes`;
|
||||||
|
|
||||||
|
@ -76,7 +142,7 @@
|
||||||
status = `Processing ${allNotes.length} notes`;
|
status = `Processing ${allNotes.length} notes`;
|
||||||
|
|
||||||
// Create nodes for all notes
|
// Create nodes for all notes
|
||||||
const nodes = new DataSet();
|
const nodes = new DataSet<NetworkNode>();
|
||||||
allNotes.forEach((note) => {
|
allNotes.forEach((note) => {
|
||||||
nodes.add({
|
nodes.add({
|
||||||
id: note.id,
|
id: note.id,
|
||||||
|
@ -91,12 +157,12 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
// Create edges for all connections
|
// Create edges for all connections
|
||||||
const edges = new DataSet();
|
const edges = new DataSet<NetworkEdge>();
|
||||||
let edgeCount = 0;
|
let edgeCount = 0;
|
||||||
|
|
||||||
allNotes.forEach((note) => {
|
allNotes.forEach((note) => {
|
||||||
if (note.linksTo && Array.isArray(note.linksTo)) {
|
if (note.linksTo && Array.isArray(note.linksTo)) {
|
||||||
note.linksTo.forEach((link) => {
|
note.linksTo.forEach((link: Note) => {
|
||||||
if (link && link.id) {
|
if (link && link.id) {
|
||||||
edges.add({
|
edges.add({
|
||||||
id: `e${edgeCount++}`,
|
id: `e${edgeCount++}`,
|
||||||
|
@ -118,7 +184,7 @@
|
||||||
|
|
||||||
// Create network with optimized options
|
// Create network with optimized options
|
||||||
const data = { nodes, edges };
|
const data = { nodes, edges };
|
||||||
const options = {
|
const options: Options = {
|
||||||
nodes: {
|
nodes: {
|
||||||
font: {
|
font: {
|
||||||
color: isDarkMode ? '#fff' : '#000',
|
color: isDarkMode ? '#fff' : '#000',
|
||||||
|
@ -171,10 +237,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create new network
|
// Create new network
|
||||||
network = new Network(container, data, options);
|
network = new Network(container, data, options) as unknown as NetworkInstance;
|
||||||
|
|
||||||
// Add double-click navigation
|
// Add double-click navigation
|
||||||
network.on('doubleClick', function (params) {
|
network?.on<DoubleClickParams>('doubleClick', function (params) {
|
||||||
if (params.nodes.length > 0) {
|
if (params.nodes.length > 0) {
|
||||||
const nodeId = params.nodes[0];
|
const nodeId = params.nodes[0];
|
||||||
window.location.href = `/notes/${nodeId}`;
|
window.location.href = `/notes/${nodeId}`;
|
||||||
|
@ -182,12 +248,16 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
// Add hover tooltip
|
// Add hover tooltip
|
||||||
network.on('hoverNode', function (params) {
|
network?.on<HoverNodeParams>('hoverNode', function (params) {
|
||||||
const nodeId = params.node;
|
const nodeId = params.node;
|
||||||
const note = allNotes.find((n) => n.id === nodeId);
|
const note = allNotes.find((n) => n.id === nodeId);
|
||||||
if (note) {
|
if (note && network) {
|
||||||
const preview = note.content.substring(0, 100) + (note.content.length > 100 ? '...' : '');
|
const preview = note.content.substring(0, 100) + (note.content.length > 100 ? '...' : '');
|
||||||
const tooltipHtml = `<div style="max-width: 300px; padding: 5px; background: ${isDarkMode ? '#333' : '#fff'}; color: ${isDarkMode ? '#fff' : '#000'}; border: 1px solid ${isDarkMode ? '#555' : '#ddd'}; border-radius: 4px;">
|
const tooltipHtml = `<div style="max-width: 300px; padding: 5px; background: ${
|
||||||
|
isDarkMode ? '#333' : '#fff'
|
||||||
|
}; color: ${isDarkMode ? '#fff' : '#000'}; border: 1px solid ${
|
||||||
|
isDarkMode ? '#555' : '#ddd'
|
||||||
|
}; border-radius: 4px;">
|
||||||
<strong>${note.title}</strong><br/>${preview}
|
<strong>${note.title}</strong><br/>${preview}
|
||||||
</div>`;
|
</div>`;
|
||||||
network.body.nodes[nodeId].options.title = tooltipHtml;
|
network.body.nodes[nodeId].options.title = tooltipHtml;
|
||||||
|
@ -203,8 +273,9 @@
|
||||||
}, 5000);
|
}, 5000);
|
||||||
|
|
||||||
status = 'Graph created successfully (initializing layout...)';
|
status = 'Graph created successfully (initializing layout...)';
|
||||||
} catch (err) {
|
} catch (err: unknown) {
|
||||||
status = `Error creating graph: ${err.message}`;
|
const errorMessage = err instanceof Error ? err.message : String(err);
|
||||||
|
status = `Error creating graph: ${errorMessage}`;
|
||||||
console.error('Error creating graph:', err);
|
console.error('Error creating graph:', err);
|
||||||
} finally {
|
} finally {
|
||||||
isLoading = false;
|
isLoading = false;
|
||||||
|
@ -212,7 +283,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
// Toggle physics on/off
|
// Toggle physics on/off
|
||||||
function togglePhysics() {
|
function togglePhysics(): void {
|
||||||
if (!network) return;
|
if (!network) return;
|
||||||
|
|
||||||
const physicsEnabled = network.physics.options.enabled;
|
const physicsEnabled = network.physics.options.enabled;
|
||||||
|
|
Loading…
Add table
Reference in a new issue