MAJOR IMPROVEMENTS:
* bind value can sync accross components <profileView + wgProfile + wgControl + wgFilter> * Table select on wgFilter can trigger filtered request to backend * Table select on wgFilter can trigger filtered request to backend * Table select on wgFilter can trigger filtered request to backend * Table select on wgFilter can trigger filtered request to backend
This commit is contained in:
parent
6e2e9e8e75
commit
29153b4c41
2
package-lock.json
generated
2
package-lock.json
generated
@ -24,7 +24,7 @@
|
|||||||
"@rollup/plugin-node-resolve": "11.2.0",
|
"@rollup/plugin-node-resolve": "11.2.0",
|
||||||
"autoprefixer": "10.2.5",
|
"autoprefixer": "10.2.5",
|
||||||
"postcss": "8.2.8",
|
"postcss": "8.2.8",
|
||||||
"rollup": "2.41.5",
|
"rollup": "^2.41.5",
|
||||||
"rollup-plugin-livereload": "2.0.0",
|
"rollup-plugin-livereload": "2.0.0",
|
||||||
"rollup-plugin-svelte": "7.1.0",
|
"rollup-plugin-svelte": "7.1.0",
|
||||||
"rollup-plugin-terser": "7.0.2",
|
"rollup-plugin-terser": "7.0.2",
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"@rollup/plugin-node-resolve": "11.2.0",
|
"@rollup/plugin-node-resolve": "11.2.0",
|
||||||
"autoprefixer": "10.2.5",
|
"autoprefixer": "10.2.5",
|
||||||
"postcss": "8.2.8",
|
"postcss": "8.2.8",
|
||||||
"rollup": "2.41.5",
|
"rollup": "^2.41.5",
|
||||||
"rollup-plugin-livereload": "2.0.0",
|
"rollup-plugin-livereload": "2.0.0",
|
||||||
"rollup-plugin-svelte": "7.1.0",
|
"rollup-plugin-svelte": "7.1.0",
|
||||||
"rollup-plugin-terser": "7.0.2",
|
"rollup-plugin-terser": "7.0.2",
|
||||||
|
@ -6,11 +6,17 @@
|
|||||||
import Modal from "components/Modals/Modals.svelte"
|
import Modal from "components/Modals/Modals.svelte"
|
||||||
import CardWGControl from "components/Cards/CardWGControl.svelte";
|
import CardWGControl from "components/Cards/CardWGControl.svelte";
|
||||||
|
|
||||||
|
export let filter;
|
||||||
let showModal = false;
|
let showModal = false;
|
||||||
let showFilter = false;
|
let showFilter = false;
|
||||||
export let filter = null;
|
|
||||||
|
|
||||||
let submitFilter = null;
|
let submitFilter = "";
|
||||||
|
|
||||||
|
|
||||||
|
filter = submitFilter;
|
||||||
|
|
||||||
|
$: submitFilter != ""?
|
||||||
|
filter = submitFilter : filter = "";
|
||||||
|
|
||||||
function toggleModal(){
|
function toggleModal(){
|
||||||
showModal = !showModal;
|
showModal = !showModal;
|
||||||
@ -25,18 +31,11 @@
|
|||||||
function toggleFilter(){
|
function toggleFilter(){
|
||||||
showFilter = !showFilter;
|
showFilter = !showFilter;
|
||||||
showModal = false;
|
showModal = false;
|
||||||
filter = submitFilter;
|
|
||||||
console.log("toggle Filter...");
|
console.log("toggle Filter...");
|
||||||
console.log(filter);
|
console.log(filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
function getwgResponse(param) {
|
|
||||||
const wgResponse = fetch(
|
|
||||||
'/api2/wgClients?filter='+param
|
|
||||||
);
|
|
||||||
|
|
||||||
return wgResponse;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -126,7 +125,7 @@
|
|||||||
class="relative flex flex-col min-w-0 break-words w-full mb-6 shadow-lg rounded-lg bg-blueGray-100 border-0"
|
class="relative flex flex-col min-w-0 break-words w-full mb-6 shadow-lg rounded-lg bg-blueGray-100 border-0"
|
||||||
>
|
>
|
||||||
<div class="flex-auto px-4 lg:px-10 py-10 pt-0">
|
<div class="flex-auto px-4 lg:px-10 py-10 pt-0">
|
||||||
<CardWGFilter bind:submitFilter={submitFilter} on:submit={handleOnSubmit} />
|
<CardWGFilter bind:submitFilter={submitFilter} on:submit={handleOnSubmit}></CardWGFilter >
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,10 +1,22 @@
|
|||||||
<script>
|
<script>
|
||||||
export let submitFilter = null;
|
export let submitFilter;
|
||||||
function validate() {
|
|
||||||
|
const validate = (e) => {
|
||||||
|
const formData = new FormData(e.target)
|
||||||
|
console.log(formData);
|
||||||
|
const data = {};
|
||||||
|
|
||||||
|
for (let field of formData) {
|
||||||
|
const [key, value] = field;
|
||||||
|
data[key] = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log(data);
|
||||||
console.log("I'm the tester function");
|
console.log("I'm the tester function");
|
||||||
submitFilter = "meta";
|
submitFilter = data["org"];
|
||||||
console.log(submitFilter);
|
console.log(submitFilter);
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<form on:submit|preventDefault={validate}>
|
<form on:submit|preventDefault={validate}>
|
||||||
@ -18,16 +30,9 @@
|
|||||||
class="block uppercase text-blueGray-600 text-xs font-bold mb-2"
|
class="block uppercase text-blueGray-600 text-xs font-bold mb-2"
|
||||||
for="grid-username"
|
for="grid-username"
|
||||||
>
|
>
|
||||||
Username
|
Fuckery
|
||||||
</label>
|
</label>
|
||||||
<select class="border-0 px-3 py-3 placeholder-blueGray-300 text-blueGray-600 bg-white rounded text-sm shadow focus:outline-none focus:ring w-full ease-linear transition-all duration-150" >
|
<input class="border-0 px-3 py-3 placeholder-blueGray-300 text-blueGray-600 bg-white rounded text-sm shadow focus:outline-none focus:ring w-full ease-linear transition-all duration-150" id="fuckery" type="text" name="Fuckery_name" />
|
||||||
<option class="text-blueGray-100" value="" disabled selected>Select the Organization</option>
|
|
||||||
|
|
||||||
<option>GCI</option>
|
|
||||||
<option>META</option>
|
|
||||||
<option>PH-Training</option>
|
|
||||||
|
|
||||||
</select>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="relative w-full mb-3">
|
<div class="relative w-full mb-3">
|
||||||
@ -37,7 +42,7 @@
|
|||||||
>
|
>
|
||||||
Organization
|
Organization
|
||||||
</label>
|
</label>
|
||||||
<select class="border-0 px-3 py-3 placeholder-blueGray-300 text-blueGray-600 bg-white rounded text-sm shadow focus:outline-none focus:ring w-full ease-linear transition-all duration-150" >
|
<select name="org" class="border-0 px-3 py-3 placeholder-blueGray-300 text-blueGray-600 bg-white rounded text-sm shadow focus:outline-none focus:ring w-full ease-linear transition-all duration-150" >
|
||||||
<option class="text-blueGray-100" value="" disabled selected>Select the Organization</option>
|
<option class="text-blueGray-100" value="" disabled selected>Select the Organization</option>
|
||||||
<option value="gci">GCI</option>
|
<option value="gci">GCI</option>
|
||||||
<option value="meta">META</option>
|
<option value="meta">META</option>
|
||||||
@ -52,7 +57,7 @@
|
|||||||
>
|
>
|
||||||
Email Domain
|
Email Domain
|
||||||
</label>
|
</label>
|
||||||
<select class="border-0 px-3 py-3 placeholder-blueGray-300 text-blueGray-600 bg-white rounded text-sm shadow focus:outline-none focus:ring w-full ease-linear transition-all duration-150" >
|
<select name="email_domain" class="border-0 px-3 py-3 placeholder-blueGray-300 text-blueGray-600 bg-white rounded text-sm shadow focus:outline-none focus:ring w-full ease-linear transition-all duration-150" >
|
||||||
<option class="text-blueGray-100" value="" disabled selected>Select the Organization</option>
|
<option class="text-blueGray-100" value="" disabled selected>Select the Organization</option>
|
||||||
<option>GCI</option>
|
<option>GCI</option>
|
||||||
<option>META</option>
|
<option>META</option>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
let promise;
|
let promise;
|
||||||
|
|
||||||
export let wgResponse = null;
|
export let wgResponse = null;
|
||||||
export let filter = null;
|
export let filter = "";
|
||||||
|
|
||||||
async function getwgResponse(o_filter) {
|
async function getwgResponse(o_filter) {
|
||||||
const wgResponse = await fetch(
|
const wgResponse = await fetch(
|
||||||
@ -16,8 +16,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// let promise = getwgResponse();
|
// let promise = getwgResponse();
|
||||||
$: filter != null ?
|
|
||||||
promise = getwgResponse(filter) : promise = getwgReseponse("");
|
$: filter != ""?
|
||||||
|
promise = getwgResponse(filter) : promise = getwgResponse("");
|
||||||
|
|
||||||
// core components
|
// core components
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user