This repository has been archived on 2024-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
ui/src/blocks/tasks/data/seed.ts

26 lines
815 B
TypeScript
Raw Normal View History

2024-04-04 23:11:29 +02:00
import fs from "fs"
import path from "path"
import { faker } from "@faker-js/faker"
2024-04-04 23:33:16 +02:00
import { fileURLToPath } from 'url';
import { dirname } from 'path';
2024-04-04 23:11:29 +02:00
import { labels, priorities, statuses } from "./data"
2024-04-04 23:33:16 +02:00
const tasks = Array.from({ length: 1000 }, () => ({
2024-04-04 23:11:29 +02:00
id: `TASK-${faker.number.int({ min: 1000, max: 9999 })}`,
title: faker.hacker.phrase().replace(/^./, (letter) => letter.toUpperCase()),
status: faker.helpers.arrayElement(statuses).value,
label: faker.helpers.arrayElement(labels).value,
priority: faker.helpers.arrayElement(priorities).value,
}))
2024-04-04 23:33:16 +02:00
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
console.log(__dirname)
2024-04-04 23:11:29 +02:00
fs.writeFileSync(
path.join(__dirname, "tasks.json"),
JSON.stringify(tasks, null, 2)
)
console.log("✅ Tasks data generated.")