Removed extraneous container element

This commit is contained in:
2020-04-13 23:03:12 +00:00
parent 8dfd5e213a
commit b25af47cdd
11 changed files with 879 additions and 1114 deletions

View File

@@ -51,89 +51,6 @@ CURRENT TODOs
todo: Translate all ayatypes not translated
"data": [
{
"id": 0,
"name": "NoType"
},
{
"id": 1,
"name": "Général"
},
{
"id": 2,
"name": "Widget"
},
{
"id": 3,
"name": "Utilisateur"
},
{
"id": 4,
"name": "État du serveur"
},
{
"id": 5,
"name": "License"
},
{
"id": 6,
"name": "LogFile"
},
{
"id": 7,
"name": "PickListTemplate"
},
{
"id": 8,
"name": "DEPRECATED_REUSELATER_8"
},
{
"id": 9,
"name": "ServerJob"
},
{
"id": 10,
"name": "AyaNova7Import"
},
{
"id": 11,
"name": "TrialSeeder"
},
{
"id": 12,
"name": "Metrics"
},
{
"id": 13,
"name": "Traduction"
},
{
"id": 14,
"name": "UserOptions"
},
{
"id": 15,
"name": "DEPRECATED_REUSELATER_15"
},
{
"id": 16,
"name": "DEPRECATED_REUSELATER_16"
},
{
"id": 17,
"name": "FileAttachment"
},
{
"id": 18,
"name": "Affichage de la liste des données"
},
{
"id": 19,
"name": "FormCustom"
}
todo: do I have too many containers in my UI, like some unnecessary ones in the views where the parent already has a container? todo: do I have too many containers in my UI, like some unnecessary ones in the views where the parent already has a container?
todo: ADDITIONAL EDIT FORM BUTTONS FUNCTIONALITY STUBBED OUT OR MADE INTO TODO'S todo: ADDITIONAL EDIT FORM BUTTONS FUNCTIONALITY STUBBED OUT OR MADE INTO TODO'S

View File

@@ -1,5 +1,4 @@
<template> <template>
<v-container fluid>
<v-row v-if="formState.ready"> <v-row v-if="formState.ready">
<v-col> <v-col>
<v-form ref="form"> <v-form ref="form">
@@ -78,7 +77,6 @@
</v-form> </v-form>
</v-col> </v-col>
</v-row> </v-row>
</v-container>
</template> </template>
<script> <script>
///////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////

View File

@@ -1,5 +1,4 @@
<template> <template>
<v-container fluid>
<v-row v-if="formState.ready"> <v-row v-if="formState.ready">
<v-col> <v-col>
<v-form ref="form"> <v-form ref="form">
@@ -52,7 +51,6 @@
</v-form> </v-form>
</v-col> </v-col>
</v-row> </v-row>
</v-container>
</template> </template>
<script> <script>
///////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////

View File

@@ -1,19 +1,4 @@
<template> <template>
<v-container fluid>
<!-- <div>
READY: {{ formState.ready }}
<br />
LOADING: {{ formState.loading }}
<br />
DIRTY: {{ formState.dirty }}
<br />
VALID: {{ formState.valid }}
<br />
READONLY: {{ formState.readOnly }}
<br />
</div>
-->
<v-row v-if="this.formState.ready"> <v-row v-if="this.formState.ready">
<v-col> <v-col>
<v-form ref="form"> <v-form ref="form">
@@ -75,9 +60,7 @@
<!-- RE-ORDER CONTROL --> <!-- RE-ORDER CONTROL -->
<div class="d-flex justify-space-between"> <div class="d-flex justify-space-between">
<v-btn large icon @click="move('start', index)" <v-btn large icon @click="move('start', index)"
><v-icon ><v-icon large :data-cy="!!$ay.dev ? 'movestart' : false"
large
:data-cy="!!$ay.dev ? 'movestart' : false"
>fa-step-backward</v-icon >fa-step-backward</v-icon
></v-btn ></v-btn
> >
@@ -415,7 +398,6 @@
</v-form> </v-form>
</v-col> </v-col>
</v-row> </v-row>
</v-container>
</template> </template>
<script> <script>
///////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////

View File

@@ -1,5 +1,4 @@
<template> <template>
<v-container fluid>
<v-row v-if="formState.ready"> <v-row v-if="formState.ready">
<v-col> <v-col>
<v-form ref="form"> <v-form ref="form">
@@ -81,7 +80,6 @@
</v-form> </v-form>
</v-col> </v-col>
</v-row> </v-row>
</v-container>
</template> </template>
<script> <script>

View File

@@ -1,5 +1,4 @@
<template> <template>
<v-container fluid>
<v-row v-if="formState.ready"> <v-row v-if="formState.ready">
<v-col> <v-col>
<v-form ref="form"> <v-form ref="form">
@@ -26,11 +25,7 @@
></v-select> ></v-select>
</v-col> </v-col>
<v-col cols="12" sm="4" lg="4" xl="3"> <v-col cols="12" sm="4" lg="4" xl="3">
<v-btn <v-btn color="primary" v-on:click="getDataFromApi()" value="SEARCH">
color="primary"
v-on:click="getDataFromApi()"
value="SEARCH"
>
<v-icon :data-cy="!!$ay.dev ? 'btnsearch' : false" <v-icon :data-cy="!!$ay.dev ? 'btnsearch' : false"
>fa-search</v-icon >fa-search</v-icon
> >
@@ -57,13 +52,9 @@
<v-list-item link :key="item.index"> <v-list-item link :key="item.index">
<v-list-item-content <v-list-item-content
@click="openItem(item)" @click="openItem(item)"
:data-cy=" :data-cy="!!$ay.dev ? 'btnopenitem' + item.index : false"
!!$ay.dev ? 'btnopenitem' + item.index : false
"
> >
<v-list-item-title <v-list-item-title v-text="item.name"></v-list-item-title>
v-text="item.name"
></v-list-item-title>
<v-list-item-subtitle <v-list-item-subtitle
v-html="item.info" v-html="item.info"
></v-list-item-subtitle> ></v-list-item-subtitle>
@@ -89,7 +80,6 @@
</v-form> </v-form>
</v-col> </v-col>
</v-row> </v-row>
</v-container>
</template> </template>
<script> <script>

View File

@@ -1,5 +1,4 @@
<template> <template>
<v-container fluid>
<v-row v-if="formState.ready"> <v-row v-if="formState.ready">
<v-col> <v-col>
<v-form ref="form"> <v-form ref="form">
@@ -103,7 +102,6 @@
</v-form> </v-form>
</v-col> </v-col>
</v-row> </v-row>
</v-container>
</template> </template>
<script> <script>

View File

@@ -1,5 +1,4 @@
<template> <template>
<v-container fluid>
<v-row align="center" justify="center" class="mx-auto mt-sm-12 mb-8"> <v-row align="center" justify="center" class="mx-auto mt-sm-12 mb-8">
<v-col cols="12" offset-md="4"> <v-col cols="12" offset-md="4">
<form> <form>
@@ -82,7 +81,6 @@
</form> </form>
</v-col> </v-col>
</v-row> </v-row>
</v-container>
</template> </template>
<script> <script>

View File

@@ -1,5 +1,4 @@
<template> <template>
<v-container fluid>
<v-row justify-center> <v-row justify-center>
<v-col cols="12"> <v-col cols="12">
<div class="text-center"> <div class="text-center">
@@ -10,7 +9,6 @@
</div> </div>
</v-col> </v-col>
</v-row> </v-row>
</v-container>
</template> </template>
<script> <script>

View File

@@ -1,5 +1,4 @@
<template> <template>
<v-container fluid>
<v-row v-if="formState.ready"> <v-row v-if="formState.ready">
<v-col> <v-col>
<v-form ref="form"> <v-form ref="form">
@@ -11,10 +10,7 @@
:mandatory="true" :mandatory="true"
:readonly="formState.readOnly" :readonly="formState.readOnly"
> >
<v-radio <v-radio :label="$ay.t('ServerStateOpen')" value="Open"></v-radio>
:label="$ay.t('ServerStateOpen')"
value="Open"
></v-radio>
<v-radio <v-radio
:label="$ay.t('ServerStateOps')" :label="$ay.t('ServerStateOps')"
value="OpsOnly" value="OpsOnly"
@@ -38,7 +34,6 @@
</v-form> </v-form>
</v-col> </v-col>
</v-row> </v-row>
</v-container>
</template> </template>
<script> <script>

View File

@@ -1,118 +1,11 @@
<template> <template>
<UnderConstruction /> <UnderConstruction />
<!-- <v-container fluid> -->
<!-- <v-data-table
:headers="headers"
:items="desserts"
:items-per-page="5"
class="elevation-1"
></v-data-table> -->
<!-- </v-container> -->
</template> </template>
<script> <script>
import UnderConstruction from "../components/underconstruction.vue"; import UnderConstruction from "../components/underconstruction.vue";
export default { export default {
// data() {
// return {
// headers: [
// {
// text: "Dessert (100g serving)",
// align: "left",
// sortable: false,
// value: "name"
// },
// { text: "Calories", value: "calories" },
// { text: "Fat (g)", value: "fat" },
// { text: "Carbs (g)", value: "carbs" },
// { text: "Protein (g)", value: "protein" },
// { text: "Iron (%)", value: "iron" }
// ],
// desserts: [
// {
// name: "Frozen Yogurt",
// calories: 159,
// fat: 6.0,
// carbs: 24,
// protein: 4.0,
// iron: "1%"
// },
// {
// name: "Ice cream sandwich",
// calories: 237,
// fat: 9.0,
// carbs: 37,
// protein: 4.3,
// iron: "1%"
// },
// {
// name: "Eclair",
// calories: 262,
// fat: 16.0,
// carbs: 23,
// protein: 6.0,
// iron: "7%"
// },
// {
// name: "Cupcake",
// calories: 305,
// fat: 3.7,
// carbs: 67,
// protein: 4.3,
// iron: "8%"
// },
// {
// name: "Gingerbread",
// calories: 356,
// fat: 16.0,
// carbs: 49,
// protein: 3.9,
// iron: "16%"
// },
// {
// name: "Jelly bean",
// calories: 375,
// fat: 0.0,
// carbs: 94,
// protein: 0.0,
// iron: "0%"
// },
// {
// name: "Lollipop",
// calories: 392,
// fat: 0.2,
// carbs: 98,
// protein: 0,
// iron: "2%"
// },
// {
// name: "Honeycomb",
// calories: 408,
// fat: 3.2,
// carbs: 87,
// protein: 6.5,
// iron: "45%"
// },
// {
// name: "Donut",
// calories: 452,
// fat: 25.0,
// carbs: 51,
// protein: 4.9,
// iron: "22%"
// },
// {
// name: "KitKat",
// calories: 518,
// fat: 26.0,
// carbs: 65,
// protein: 7,
// iron: "6%"
// }
// ]
// };
// },
components: { components: {
UnderConstruction UnderConstruction
}, },