-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
34 lines (28 loc) · 794 Bytes
/
index.js
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
import Autocomplete from './Autocomplete';
import usStates from './us-states';
import './main.css';
// US States
const staticData = usStates.map(state => ({
text: state.name,
value: state.abbreviation
}));
new Autocomplete(document.getElementById('state'), {
data: staticData,
onSelect: (stateCode) => {
console.log('selected state:', stateCode);
},
});
// Github Users
new Autocomplete(document.getElementById('gh-user'), {
url: 'https://api.github.com/search/users',
onSelect: (ghUserId) => {
console.log('selected github user id:', ghUserId);
},
});
// Github Users
new Autocomplete(document.getElementById('gh2-user'), {
url: 'https://api.github.com/search/users',
onSelect: (ghUserId) => {
console.log('selected github 2 user id:', ghUserId);
}
});