1
0
Fork 0
mirror of synced 2024-09-17 09:49:11 +12:00
budibase/packages/server/scripts/load/create-many-relationships.js

62 lines
1.5 KiB
JavaScript
Raw Normal View History

2023-12-20 04:59:23 +13:00
#!/bin/node
const { createApp, getTable, createRow, createTable } = require("./utils")
2023-12-20 23:51:35 +13:00
const Chance = require("chance")
const generator = new Chance()
2023-12-21 00:18:29 +13:00
const STUDENT_COUNT = 10
const SUBJECT_COUNT = 10
2023-12-20 04:59:23 +13:00
if (!process.argv[2]) {
console.error("Please specify an API key as script argument.")
process.exit(-1)
}
2023-12-21 00:18:29 +13:00
async function sleep(ms) {
return new Promise(r => setTimeout(() => r(), ms))
}
2023-12-20 04:59:23 +13:00
async function run() {
const apiKey = process.argv[2]
const app = await createApp(apiKey)
console.log(`App created: ${app._id}`)
2023-12-21 00:18:29 +13:00
const studentsTable = await getTable(apiKey, app._id)
if (studentsTable.name !== "Students") {
throw 'Fetched table should be "Students"'
}
console.log(`Table found: ${studentsTable.name}`)
2023-12-20 04:59:23 +13:00
const subjectTable = await createTable(apiKey, app._id, {
schema: {
2023-12-20 23:51:35 +13:00
Name: {
2023-12-20 04:59:23 +13:00
name: "Name",
type: "string",
},
},
name: "Subjects",
})
2023-12-20 23:51:35 +13:00
for (let i = 0; i < SUBJECT_COUNT; i++) {
await createRow(apiKey, app._id, subjectTable, {
Name: generator.profession(),
})
console.log(`Subject ${i + 1} of ${SUBJECT_COUNT} created`)
2023-12-21 00:18:29 +13:00
await sleep(50)
2023-12-20 04:59:23 +13:00
}
2023-12-21 00:18:29 +13:00
for (let i = 0; i < STUDENT_COUNT; i++) {
await createRow(apiKey, app._id, studentsTable)
console.log(`Row ${i + 1} of ${STUDENT_COUNT} created`)
2023-12-20 04:59:23 +13:00
}
console.log(`App created: http://localhost:10000/builder/app/${app._id}`)
}
run()
.then(() => {
console.log(`Finished creating ${ROW_COUNT} rows.`)
})
.catch(err => {
console.error(err)
})