1
0
Fork 0
mirror of synced 2024-09-29 16:51:33 +13:00
budibase/packages/server/src/api/controllers/screen.js

59 lines
1.4 KiB
JavaScript
Raw Normal View History

/**
* This controller is not currently fully implemented. Screens are
* currently managed as part of the pages API, please look in api/routes/page.js
* for routes and controllers.
*/
2020-11-02 04:32:54 +13:00
const CouchDB = require("../../db")
2020-11-04 05:27:28 +13:00
const { getScreenParams, generateScreenID } = require("../../db/utils")
exports.fetch = async ctx => {
2020-11-04 05:27:28 +13:00
const db = new CouchDB(ctx.user.appId)
const screens = await db.allDocs(
getScreenParams(ctx.params.pageId, null, {
include_docs: true,
})
)
ctx.body = screens.response.rows
}
2020-11-02 04:32:54 +13:00
exports.create = async ctx => {
const db = new CouchDB(ctx.user.appId)
const screen = {
// name: ctx.request.body.name,
// _rev: ctx.request.body._rev,
// permissions: ctx.request.body.permissions || [],
// _id: generateAccessLevelID(),
// type: "accesslevel",
}
const response = await db.put(screen)
ctx.body = {
...screen,
...response,
}
ctx.message = `Screen '${screen.name}' created successfully.`
}
exports.save = async ctx => {
2020-11-04 05:27:28 +13:00
const appId = ctx.user.appId
const db = new CouchDB(appId)
const screen = ctx.request.body
if (!screen._id) {
screen._id = generateScreenID()
}
const response = await db.put(screen)
ctx.message = `Screen ${screen.name} saved.`
ctx.body = response
}
exports.destroy = async ctx => {
2020-11-04 05:27:28 +13:00
const db = new CouchDB(ctx.user.appId)
await db.remove(ctx.params.screenId, ctx.params.revId)
ctx.message = "Screen deleted successfully"
}