aboutsummaryrefslogtreecommitdiff
path: root/packages/memory-graph/src/utils/document-icons.ts
blob: 2e93c22a0d97f73a347629a517609c3f4502492c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/**
 * Canvas-based document type icon rendering utilities
 * Simplified to match supported file types: PDF, TXT, MD, DOCX, DOC, RTF, CSV, JSON
 */

export type DocumentIconType =
	| "text"
	| "pdf"
	| "md"
	| "markdown"
	| "docx"
	| "doc"
	| "rtf"
	| "csv"
	| "json"

/**
 * Draws a document type icon on canvas
 * @param ctx - Canvas 2D rendering context
 * @param x - X position (center of icon)
 * @param y - Y position (center of icon)
 * @param size - Icon size (width/height)
 * @param type - Document type
 * @param color - Icon color (default: white)
 */
export function drawDocumentIcon(
	ctx: CanvasRenderingContext2D,
	x: number,
	y: number,
	size: number,
	type: string,
	color = "rgba(255, 255, 255, 0.9)",
): void {
	ctx.save()
	ctx.fillStyle = color
	ctx.strokeStyle = color
	ctx.lineWidth = Math.max(1, size / 12)
	ctx.lineCap = "round"
	ctx.lineJoin = "round"

	switch (type) {
		case "pdf":
			drawPdfIcon(ctx, x, y, size)
			break
		case "md":
		case "markdown":
			drawMarkdownIcon(ctx, x, y, size)
			break
		case "doc":
		case "docx":
			drawWordIcon(ctx, x, y, size)
			break
		case "rtf":
			drawRtfIcon(ctx, x, y, size)
			break
		case "csv":
			drawCsvIcon(ctx, x, y, size)
			break
		case "json":
			drawJsonIcon(ctx, x, y, size)
			break
		case "txt":
		case "text":
		default:
			drawTextIcon(ctx, x, y, size)
			break
	}

	ctx.restore()
}

// Individual icon drawing functions

function drawTextIcon(
	ctx: CanvasRenderingContext2D,
	x: number,
	y: number,
	size: number,
): void {
	// Simple document outline with lines
	const w = size * 0.7
	const h = size * 0.85
	const cornerFold = size * 0.2

	ctx.beginPath()
	ctx.moveTo(x - w / 2, y - h / 2)
	ctx.lineTo(x + w / 2 - cornerFold, y - h / 2)
	ctx.lineTo(x + w / 2, y - h / 2 + cornerFold)
	ctx.lineTo(x + w / 2, y + h / 2)
	ctx.lineTo(x - w / 2, y + h / 2)
	ctx.closePath()
	ctx.stroke()

	// Text lines
	const lineSpacing = size * 0.15
	const lineWidth = size * 0.4
	ctx.beginPath()
	ctx.moveTo(x - lineWidth / 2, y - lineSpacing)
	ctx.lineTo(x + lineWidth / 2, y - lineSpacing)
	ctx.moveTo(x - lineWidth / 2, y)
	ctx.lineTo(x + lineWidth / 2, y)
	ctx.moveTo(x - lineWidth / 2, y + lineSpacing)
	ctx.lineTo(x + lineWidth / 2, y + lineSpacing)
	ctx.stroke()
}

function drawPdfIcon(
	ctx: CanvasRenderingContext2D,
	x: number,
	y: number,
	size: number,
): void {
	// Document with "PDF" text
	const w = size * 0.7
	const h = size * 0.85

	ctx.beginPath()
	ctx.rect(x - w / 2, y - h / 2, w, h)
	ctx.stroke()

	// "PDF" letters (simplified)
	ctx.font = `bold ${size * 0.35}px sans-serif`
	ctx.textAlign = "center"
	ctx.textBaseline = "middle"
	ctx.fillText("PDF", x, y)
}

function drawMarkdownIcon(
	ctx: CanvasRenderingContext2D,
	x: number,
	y: number,
	size: number,
): void {
	// Document with "MD" text
	const w = size * 0.7
	const h = size * 0.85

	ctx.beginPath()
	ctx.rect(x - w / 2, y - h / 2, w, h)
	ctx.stroke()

	// "MD" letters
	ctx.font = `bold ${size * 0.3}px sans-serif`
	ctx.textAlign = "center"
	ctx.textBaseline = "middle"
	ctx.fillText("MD", x, y)
}

function drawWordIcon(
	ctx: CanvasRenderingContext2D,
	x: number,
	y: number,
	size: number,
): void {
	// Document with "DOC" text
	const w = size * 0.7
	const h = size * 0.85

	ctx.beginPath()
	ctx.rect(x - w / 2, y - h / 2, w, h)
	ctx.stroke()

	// "DOC" letters
	ctx.font = `bold ${size * 0.28}px sans-serif`
	ctx.textAlign = "center"
	ctx.textBaseline = "middle"
	ctx.fillText("DOC", x, y)
}

function drawRtfIcon(
	ctx: CanvasRenderingContext2D,
	x: number,
	y: number,
	size: number,
): void {
	// Document with "RTF" text
	const w = size * 0.7
	const h = size * 0.85

	ctx.beginPath()
	ctx.rect(x - w / 2, y - h / 2, w, h)
	ctx.stroke()

	// "RTF" letters
	ctx.font = `bold ${size * 0.3}px sans-serif`
	ctx.textAlign = "center"
	ctx.textBaseline = "middle"
	ctx.fillText("RTF", x, y)
}

function drawCsvIcon(
	ctx: CanvasRenderingContext2D,
	x: number,
	y: number,
	size: number,
): void {
	// Grid table for CSV
	const w = size * 0.7
	const h = size * 0.85

	ctx.strokeRect(x - w / 2, y - h / 2, w, h)

	// Grid lines (2x2)
	ctx.beginPath()
	// Vertical line
	ctx.moveTo(x, y - h / 2)
	ctx.lineTo(x, y + h / 2)
	// Horizontal line
	ctx.moveTo(x - w / 2, y)
	ctx.lineTo(x + w / 2, y)
	ctx.stroke()
}

function drawJsonIcon(
	ctx: CanvasRenderingContext2D,
	x: number,
	y: number,
	size: number,
): void {
	// Curly braces for JSON
	const w = size * 0.6
	const h = size * 0.8

	// Left brace
	ctx.beginPath()
	ctx.moveTo(x - w / 4, y - h / 2)
	ctx.quadraticCurveTo(x - w / 2, y - h / 3, x - w / 2, y)
	ctx.quadraticCurveTo(x - w / 2, y + h / 3, x - w / 4, y + h / 2)
	ctx.stroke()

	// Right brace
	ctx.beginPath()
	ctx.moveTo(x + w / 4, y - h / 2)
	ctx.quadraticCurveTo(x + w / 2, y - h / 3, x + w / 2, y)
	ctx.quadraticCurveTo(x + w / 2, y + h / 3, x + w / 4, y + h / 2)
	ctx.stroke()
}