-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathActivityIndicatorExample.svelte
62 lines (56 loc) · 1.71 KB
/
ActivityIndicatorExample.svelte
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
57
58
59
60
61
62
<script>
import Highlight from "svelte-highlight"
import AutoComplete from "../src/SimpleAutocomplete.svelte"
import xml from "svelte-highlight/languages/xml"
async function searchColor(keyword) {
await new Promise((r) => setTimeout(r, 3000))
return ["White", "Red", "Yellow", "Green", "Blue", "Black", "Mät bläck", "<i>Jét Black</i>"]
}
const code = `<script>
async function searchColor(keyword, nb_items_max) {
await new Promise((r) => setTimeout(r, 3000))
return [
"White", "Red", "Yellow", "Green", "Blue", "Black", "Mät bläck", "<i>Jét Black</i>"
]
}
<\/script>
<AutoComplete
searchFunction={searchColor}
showLoadingIndicator={true}
/>
`
</script>
<div>
<h3 class="mt-3">Loading indicator</h3>
<article class="message is-info">
<div class="message-body">
When <code>showLoadingIndicator</code> is set to true, loading spinner is shown when the async
<code>searchFunction</code> is executed.
<br />
Bulma class 'is-loading' is added to the input control. If you do not use Bulma you need to add
style for the 'is-loading' class.
</div>
</article>
<div class="columns">
<div class="column is-one-third">
<article class="message">
<div class="message-header">
<p>Pick a color</p>
</div>
<div class="message-body">
<AutoComplete searchFunction={searchColor} showLoadingIndicator={true} />
</div>
</article>
</div>
<div class="column">
<article class="message">
<div class="message-header">
<p>Code</p>
</div>
<div class="message-body">
<Highlight language={xml} {code} />
</div>
</article>
</div>
</div>
</div>