1
0
Fork 0
mirror of synced 2024-06-16 01:14:48 +12:00

adds delete functionality to application

This commit is contained in:
kevmodrome 2020-07-07 14:44:05 +02:00
parent 67ad70166e
commit dc5db6f552
No known key found for this signature in database
GPG key ID: E8F9CD141E63BF38
3 changed files with 32 additions and 3 deletions

View file

@ -1,14 +1,26 @@
<script>
import { params, goto } from "@sveltech/routify"
import { Input, TextArea, Button } from "@budibase/bbui"
import Title from "../TabTitle.svelte"
import { del } from "builderStore/api"
let value = ""
let loading = false
const deleteApp = () => {
async function deleteApp() {
loading = true
// Do stuff here to delete app!
// Navigate to start
const id = $params.application
const res = await del(`/api/${id}`)
console.log(res)
const json = await res.json()
loading = false
if (res.ok) {
$goto("/")
return json
} else {
throw new Error(json)
}
}
</script>

View file

@ -10,6 +10,7 @@ const { budibaseAppsDir } = require("../../utilities/budibaseDir")
const { exec } = require("child_process")
const sqrl = require("squirrelly")
const setBuilderToken = require("../../utilities/builder/setBuilderToken")
const fs = require("fs-extra")
exports.fetch = async function(ctx) {
const db = new CouchDB(ClientDb.name(getClientId(ctx)))
@ -106,6 +107,21 @@ exports.update = async function(ctx) {
ctx.body = response
}
exports.delete = async function(ctx) {
const db = new CouchDB(ClientDb.name(getClientId(ctx)))
const app = await db.get(ctx.params.applicationId)
const result = await db.remove(app)
await fs.rmdir(`${budibaseAppsDir()}/${ctx.params.applicationId}`, {
recursive: true,
})
console.log
ctx.status = 200
ctx.message = `Application ${app.name} deleted successfully.`
ctx.body = result
}
const createEmptyAppPackage = async (ctx, app) => {
const templateFolder = resolve(
__dirname,

View file

@ -14,5 +14,6 @@ router
)
.put("/api/:applicationId", authorized(BUILDER), controller.update)
.post("/api/applications", authorized(BUILDER), controller.create)
.delete("/api/:applicationId", authorized(BUILDER), controller.delete)
module.exports = router