mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
178 lines
5.2 KiB
178 lines
5.2 KiB
3 years ago
|
<template>
|
||
|
<v-dialog v-model="dialogShow" persistent max-width="800">
|
||
|
<v-card>
|
||
|
<v-progress-linear
|
||
3 years ago
|
v-if="progressbar"
|
||
3 years ago
|
indeterminate
|
||
|
color="green"
|
||
3 years ago
|
/>
|
||
3 years ago
|
<div class="px-2">
|
||
3 years ago
|
<v-card-title class=" headline">
|
||
|
Instant API Editor
|
||
|
<v-spacer />
|
||
|
<v-btn small :disabled="progressbar" @click="dialogShow = false">
|
||
3 years ago
|
<!-- Cancel -->
|
||
|
{{ $t('general.cancel') }}
|
||
3 years ago
|
</v-btn>
|
||
3 years ago
|
<v-btn color="primary" small :disabled="progressbar" @click="saveCode">
|
||
3 years ago
|
<v-icon small class="mr-1">
|
||
|
mdi-content-save
|
||
|
</v-icon>
|
||
3 years ago
|
<!-- Save -->
|
||
|
{{ $t('general.save') }}
|
||
3 years ago
|
</v-btn>
|
||
|
</v-card-title>
|
||
|
|
||
|
<v-card-text>
|
||
|
<!-- <v-textarea-->
|
||
|
<!-- v-model="code"-->
|
||
|
<!-- ></v-textarea>-->
|
||
|
|
||
|
<monaco-ts-editor
|
||
|
v-model="code"
|
||
3 years ago
|
style="min-height: 450px"
|
||
|
/>
|
||
3 years ago
|
</v-card-text>
|
||
|
</div>
|
||
|
</v-card>
|
||
|
</v-dialog>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
3 years ago
|
import MonacoTsEditor from '../monaco/MonacoTsEditor'
|
||
3 years ago
|
|
||
|
export default {
|
||
3 years ago
|
name: 'HandlerCodeEditor',
|
||
|
components: { MonacoTsEditor },
|
||
3 years ago
|
props: {
|
||
|
value: Boolean,
|
||
|
method: String,
|
||
|
route: String,
|
||
|
nodes: Object,
|
||
|
isMiddleware: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
}
|
||
|
},
|
||
3 years ago
|
data: () => ({
|
||
|
progressbar: false,
|
||
|
code: ''
|
||
|
}),
|
||
|
computed: {
|
||
|
dialogShow: {
|
||
3 years ago
|
get() {
|
||
3 years ago
|
return this.value
|
||
|
},
|
||
3 years ago
|
set(val) {
|
||
3 years ago
|
this.$emit('input', val)
|
||
3 years ago
|
}
|
||
|
}
|
||
|
},
|
||
|
watch: {
|
||
3 years ago
|
async route(val) {
|
||
3 years ago
|
try {
|
||
|
if (this.isMiddleware) {
|
||
|
this.code = JSON.parse(val.functions)[0]
|
||
|
} else {
|
||
|
this.code = JSON.parse(val[this.method].functions)[0]
|
||
|
}
|
||
|
} catch (e) {
|
||
3 years ago
|
let functions
|
||
3 years ago
|
if (this.isMiddleware) {
|
||
|
functions = await this.$store.dispatch('sqlMgr/ActSqlOp', [{
|
||
|
env: this.nodes.env,
|
||
|
dbAlias: this.nodes.dbAlias,
|
||
3 years ago
|
table_name: this.nodes.table_name || this.nodes.view_name
|
||
3 years ago
|
}, 'defaultRestMiddlewareCodeGet', {
|
||
|
title: this.route.title,
|
||
|
relation_type: this.route.relation_type,
|
||
3 years ago
|
table_name: this.nodes.table_name || this.nodes.view_name
|
||
3 years ago
|
}])
|
||
|
} else {
|
||
|
functions = await this.$store.dispatch('sqlMgr/ActSqlOp', [{
|
||
|
env: this.nodes.env,
|
||
|
dbAlias: this.nodes.dbAlias,
|
||
3 years ago
|
table_name: this.nodes.table_name || this.nodes.view_name
|
||
3 years ago
|
}, 'defaultRestHandlerCodeGet', {
|
||
|
type: this.method,
|
||
|
path: this.route[this.method].path,
|
||
|
title: this.route[this.method].title,
|
||
|
relation_type: this.route[this.method].relation_type,
|
||
3 years ago
|
tnp: this.route[this.method].table_namep,
|
||
|
tnc: this.route[this.method].table_namec,
|
||
|
table_name: this.nodes.table_name || this.nodes.view_name
|
||
3 years ago
|
}])
|
||
|
}
|
||
|
if (functions && functions.length) {
|
||
3 years ago
|
this.code = functions[0]
|
||
3 years ago
|
}
|
||
|
}
|
||
|
}
|
||
3 years ago
|
},
|
||
|
methods: {
|
||
3 years ago
|
async saveCode() {
|
||
3 years ago
|
try {
|
||
|
this.progressbar = true
|
||
|
if (this.isMiddleware) {
|
||
|
await this.$store.dispatch('sqlMgr/ActSqlOp', [{
|
||
|
env: this.nodes.env,
|
||
|
dbAlias: this.nodes.dbAlias
|
||
|
}, 'xcRoutesMiddlewareUpdate', {
|
||
3 years ago
|
table_name: this.nodes.table_name || this.nodes.view_name,
|
||
3 years ago
|
type: this.method,
|
||
|
functions: [this.code],
|
||
|
title: this.route.title
|
||
|
}])
|
||
|
} else {
|
||
|
await this.$store.dispatch('sqlMgr/ActSqlOp', [{
|
||
|
env: this.nodes.env,
|
||
|
dbAlias: this.nodes.dbAlias
|
||
|
}, 'xcRoutesHandlerUpdate', {
|
||
|
type: this.method,
|
||
|
title: this.route[this.method].title,
|
||
|
functions: [this.code],
|
||
|
path: this.route[this.method].path,
|
||
|
relation_type: this.route[this.method].relation_type,
|
||
3 years ago
|
table_name: this.nodes.table_name || this.nodes.view_name
|
||
3 years ago
|
}])
|
||
|
}
|
||
|
this.$toast.success('API Handler updated successfully').goAway(3000)
|
||
|
this.dialogShow = false
|
||
|
} catch (e) {
|
||
|
console.log('Error', e)
|
||
|
this.$toast.error('Some internal error occurred').goAway(3000)
|
||
|
}
|
||
|
this.progressbar = false
|
||
|
}
|
||
3 years ago
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|
||
|
<!--
|
||
|
/**
|
||
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd
|
||
|
*
|
||
|
* @author Naveen MR <oof1lab@gmail.com>
|
||
|
* @author Pranav C Balan <pranavxc@gmail.com>
|
||
|
*
|
||
|
* @license GNU AGPL version 3 or any later version
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Affero General Public License as
|
||
|
* published by the Free Software Foundation, either version 3 of the
|
||
|
* License, or (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU Affero General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Affero General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*
|
||
|
*/
|
||
|
-->
|