ff-admin/src/components/queryBuilder/Where.vue

96 lines
2.7 KiB
Vue
Raw Normal View History

<template>
2024-12-16 15:39:49 +01:00
<div class="flex flex-row gap-2 w-full">
<p class="w-14 min-w-14 pt-2">WHERE</p>
<div class="flex flex-row flex-wrap gap-2 items-center w-full">
<div v-for="(condition, index) in value" class="contents">
<NestedCondition
v-if="condition.structureType == 'nested'"
:model-value="condition"
:table="table"
@update:model-value="($event) => (value[index] = $event)"
@remove="removeAtIndex(index)"
/>
<Condition
v-else
:model-value="condition"
:table="table"
@update:model-value="($event) => (value[index] = $event)"
@remove="removeAtIndex(index)"
/>
</div>
<div class="flex flex-row gap-2 items-center justify-end w-full">
<div class="p-1 border border-gray-400 hover:bg-gray-200 rounded-md" @click="addConditionToValue">
<PlusIcon class="text-gray-500 h-6 w-6 cursor-pointer" />
</div>
<div class="p-1 border border-gray-400 hover:bg-gray-200 rounded-md" @click="addNestedToValue">
<RectangleStackIcon class="text-gray-500 h-6 w-6 cursor-pointer" />
</div>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { defineComponent, type PropType } from "vue";
import { mapActions, mapState } from "pinia";
2024-12-26 12:34:36 +01:00
import type { ConditionStructure } from "@/types/dynamicQueries";
2025-01-02 18:28:13 +01:00
import { useQueryBuilderStore } from "@/stores/admin/club/queryBuilder";
2024-12-16 15:39:49 +01:00
import NestedCondition from "./NestedCondition.vue";
import Condition from "./Condition.vue";
import { PlusIcon, RectangleStackIcon } from "@heroicons/vue/24/outline";
</script>
<script lang="ts">
export default defineComponent({
props: {
table: {
type: String,
default: "",
},
modelValue: {
type: Array as PropType<Array<ConditionStructure>>,
default: [],
},
},
emits: ["update:model-value"],
data() {
return {};
},
computed: {
...mapState(useQueryBuilderStore, ["tableMetas"]),
activeTable() {
return this.tableMetas.find((tm) => tm.tableName == this.table);
},
2024-12-16 15:39:49 +01:00
value: {
get() {
return this.modelValue;
},
set(val: Array<ConditionStructure>) {
this.$emit("update:model-value", val);
},
},
},
methods: {
addNestedToValue() {
this.value.push({
structureType: "nested",
2024-12-16 17:49:18 +01:00
concat: this.value.length == 0 ? "_" : "AND",
2024-12-16 15:39:49 +01:00
conditions: [],
});
},
addConditionToValue() {
this.value.push({
structureType: "condition",
concat: this.value.length == 0 ? "_" : "AND",
operation: "eq",
column: "",
value: "",
});
},
removeAtIndex(index: number) {
this.value.splice(index, 1);
},
},
});
</script>