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
2024-04-04 23:33:16 +02:00

26 lines
815 B
TypeScript

import fs from "fs"
import path from "path"
import { faker } from "@faker-js/faker"
import { fileURLToPath } from 'url';
import { dirname } from 'path';
import { labels, priorities, statuses } from "./data"
const tasks = Array.from({ length: 1000 }, () => ({
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,
}))
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
console.log(__dirname)
fs.writeFileSync(
path.join(__dirname, "tasks.json"),
JSON.stringify(tasks, null, 2)
)
console.log("✅ Tasks data generated.")