-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHttp.vue
56 lines (47 loc) · 1.46 KB
/
Http.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<template>
<h2>Filters</h2>
<div>
<label style="margin-right: 10px;">Filter by Text</label>
<input v-model="text" />
</div>
<div style="margin-top: 10px">
<label>
<input type="checkbox" v-model="doneFilter" />
Filter by Done
</label>
<label v-if="doneFilter">
<input type="checkbox" v-model="doneValue" />
Value
</label>
</div>
<h2>Items</h2>
<div>
<button @click="show = !show">{{ show ? 'Collapse' : 'Expand' }}</button>
<button style="margin-left: 10px;" @click="invalidate()">Invalidate</button>
</div>
<div v-if="show">
<Item v-for="item of items" :key="item.id" :item="item" />
</div>
</template>
<script lang="ts" setup>
import { ref, watch } from 'vue';
import { debounce } from 'lodash-es';
const text = ref('');
watch(text, debounce(() => {
query.filters.text.value = text.value.trim();
}, 500));
const doneFilter = ref(false);
const doneValue = ref(false);
watch([doneFilter, doneValue], ([filter, value]) => {
query.filters.done.value = filter ? value : null;
});
const show = ref(false);
import { HttpSampleQuery } from '@async-reactivity-sample/business-logic';
const query = new HttpSampleQuery();
import { bindAwait } from 'async-reactivity-vue';
const items = bindAwait(query.items, []).data;
const invalidate = () => {
query.dataItems.forceInvalidate();
};
import Item from './Item.vue';
</script>