Merge remote-tracking branch 'origin/main' into fork/TheLukasHenry/createUIsForTools

# Conflicts:
#	.idea/workspace.xml
This commit is contained in:
Ibrahima G. Coulibaly
2025-03-09 01:51:30 +00:00
10 changed files with 988 additions and 117 deletions

View File

@@ -19,7 +19,8 @@ export type ToolCategory =
| 'number'
| 'gif'
| 'list'
| 'json';
| 'json'
| 'csv';
export interface DefinedTool {
type: ToolCategory;

View File

@@ -7,6 +7,7 @@ import { videoTools } from '../pages/tools/video';
import { listTools } from '../pages/tools/list';
import { Entries } from 'type-fest';
import { jsonTools } from '../pages/tools/json';
import { csvTools } from '../pages/tools/csv';
import { IconifyIcon } from '@iconify/react';
export const tools: DefinedTool[] = [
@@ -14,6 +15,7 @@ export const tools: DefinedTool[] = [
...stringTools,
...jsonTools,
...listTools,
...csvTools,
...videoTools,
...numberTools
];
@@ -59,6 +61,12 @@ const categoriesConfig: {
icon: 'lets-icons:json-light',
value:
'Tools for working with JSON data structures prettify and minify JSON objects, flatten JSON arrays, stringify JSON values, analyze data, and much more'
},
{
type: 'csv',
icon: 'material-symbols-light:csv-outline',
value:
'Tools for working with CSV files - convert CSV to different formats, manipulate CSV data, validate CSV structure, and process CSV files efficiently.'
}
];
export const filterTools = (