Browse Source

fix(gui): app config form validation

fix #199

Signed-off-by: Pranav C Balan <pranavxc@gmail.com>
pull/217/head
Pranav C Balan 3 years ago
parent
commit
640e6c8007
  1. 66
      packages/nc-gui/components/project/appStore/appInstall.vue
  2. 9
      packages/nc-gui/components/project/appStore/inputs/longTextField.vue
  3. 20
      packages/nc-gui/components/project/appStore/inputs/passwordField.vue
  4. 9
      packages/nc-gui/components/project/appStore/inputs/textField.vue

66
packages/nc-gui/components/project/appStore/appInstall.vue

@ -1,5 +1,6 @@
<template> <template>
<v-container fluid class="textColor--text"> <v-container fluid class="textColor--text">
<v-form v-model="valid">
<template v-if="formDetails"> <template v-if="formDetails">
<div class="title d-flex align-center justify-center mb-4"> <div class="title d-flex align-center justify-center mb-4">
<div :style="{ background : plugin.title === 'SES' ? '#242f3e' : '' }" <div :style="{ background : plugin.title === 'SES' ? '#242f3e' : '' }"
@ -18,7 +19,7 @@
<v-divider class="mb-7"></v-divider> <v-divider class="mb-7"></v-divider>
<div v-if="formDetails.array"> <div v-if="formDetails.array">
<table class="form-table mx-auto"> <table class="form-table mx-auto" >
<thead> <thead>
<tr> <tr>
<th v-for="(item,i) in formDetails.items" :key="i"> <th v-for="(item,i) in formDetails.items" :key="i">
@ -32,7 +33,8 @@
<form-input :input-details="item" v-model="set[item.key]"></form-input> <form-input :input-details="item" v-model="set[item.key]"></form-input>
</td> </td>
<td v-if="j"> <td v-if="j">
<x-icon small iconClass="pointer" color="error" @click="settings.splice(j,1)">mdi-delete-outline</x-icon> <x-icon small iconClass="pointer" color="error" @click="settings.splice(j,1)">mdi-delete-outline
</x-icon>
</td> </td>
</tr> </tr>
@ -51,7 +53,7 @@
<div class="form-grid" v-else> <div class="form-grid" v-else>
<template v-for="(item,i) in formDetails.items"> <template v-for="(item,i) in formDetails.items">
<div :key="i" class="text-right"> <div :key="i" class="text-right form-input-label">
<label class="caption ">{{ item.label }} <span v-if="item.required" class="red--text">*</span></label> <label class="caption ">{{ item.label }} <span v-if="item.required" class="red--text">*</span></label>
</div> </div>
<div :key="i"> <div :key="i">
@ -62,16 +64,17 @@
<div class="d-flex mb-4 mt-7 justify-center"> <div class="d-flex mb-4 mt-7 justify-center">
<v-btn small <v-btn small
:outlined="action.key !== 'save'" :outlined="action.key !== 'save'"
v-for="action in formDetails.actions" @click="doAction(action)" v-for="action in formDetails.actions" @click="doAction(action)"
:key="action.key" :key="action.key"
:color="action.key === 'save' ? 'primary' : '' " :color="action.key === 'save' ? 'primary' : '' "
:disabled="action.key === 'save' && !valid"
>{{ action.label }} >{{ action.label }}
</v-btn> </v-btn>
</div> </div>
</template> </template>
</v-form>
</v-container> </v-container>
</template> </template>
@ -81,13 +84,14 @@ import FormInput from "@/components/project/appStore/FormInput";
export default { export default {
name: "appInstall", name: "appInstall",
components: {FormInput}, components: {FormInput},
props: ['title','defaultConfig'], props: ['title', 'defaultConfig'],
data: () => ({ data: () => ({
plugin: null, plugin: null,
formDetails: null, formDetails: null,
settings: null, settings: null,
pluginId: null, pluginId: null,
title: null title: null,
valid: null
}), }),
methods: { methods: {
simpleAnim() { simpleAnim() {
@ -201,42 +205,48 @@ export default {
<style scoped lang="scss"> <style scoped lang="scss">
::v-deep { ::v-deep {
input, //input,
select, //select,
textarea { //textarea {
border: 1px solid #7f828b33; // border: 1px solid #7f828b33;
padding: 1px 5px; // padding: 1px 5px;
font-size: .8rem; // font-size: .8rem;
border-radius: 4px; // border-radius: 4px;
//
&:focus { // &:focus {
border: 1px solid var(--v-primary-base); // border: 1px solid var(--v-primary-base);
} // }
//
&:hover:not(:focus) { // &:hover:not(:focus) {
box-shadow: 0 0 2px dimgrey; // box-shadow: 0 0 2px dimgrey;
} // }
} //}
//
//
input, textarea { //input, textarea {
min-width: 300px; // min-width: 300px;
} //}
} }
.form-grid { .form-grid {
display: grid; display: grid;
grid-template-columns:auto auto; grid-template-columns:auto auto;
column-gap: 10px; column-gap: 10px;
row-gap: 20px row-gap: 20px;
align-items: center;
} }
.form-table { .form-table {
border: none; border: none;
min-width: 400px;
} }
tbody tr:nth-of-type(odd) { tbody tr:nth-of-type(odd) {
background-color: transparent; background-color: transparent;
} }
.form-input-label{
padding-bottom: 16px;
}
</style> </style>

9
packages/nc-gui/components/project/appStore/inputs/longTextField.vue

@ -1,8 +1,13 @@
<template> <template>
<textarea <v-textarea
dense
outlined
:rules="[v => !!v || !inputDetails.required || 'Required']"
:name="inputDetails.key"
:placeholder="inputDetails.placeholder || ''" :placeholder="inputDetails.placeholder || ''"
v-on="parentListeners" v-model="localState" class="caption" rows="3" v-on="parentListeners" v-model="localState" class="caption" rows="3"
></textarea> :required="inputDetails.valid"
></v-textarea>
</template> </template>

20
packages/nc-gui/components/project/appStore/inputs/passwordField.vue

@ -1,14 +1,16 @@
<template> <template>
<div class="wrapper"> <!--
<input todo : add toggle button
-->
<v-text-field
type="password"
dense
outlined
:rules="[v => !!v || !inputDetails.required || 'Required']"
:name="inputDetails.key"
:required="inputDetails.valid"
:placeholder="inputDetails.placeholder || ''" :placeholder="inputDetails.placeholder || ''"
:type="show ? 'text' : 'password'" v-on="parentListeners" v-model="localState" class="caption"/>
v-on="parentListeners" v-model="localState" class="caption">
<v-icon small class="toggle-icon" @click="show = !show">
{{ show ? 'visibility_off' : 'visibility' }}
</v-icon>
</div>
</template> </template>
<script> <script>

9
packages/nc-gui/components/project/appStore/inputs/textField.vue

@ -1,7 +1,12 @@
<template> <template>
<input <v-text-field
dense
outlined
:rules="[v => !!v || !inputDetails.required || 'Required']"
:name="inputDetails.key"
:required="inputDetails.valid"
:placeholder="inputDetails.placeholder || ''" :placeholder="inputDetails.placeholder || ''"
v-on="parentListeners" v-model="localState" class="caption"> v-on="parentListeners" v-model="localState" class="caption"/>
</template> </template>
<script> <script>

Loading…
Cancel
Save