Header.js
1.32 KB
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
import { observable, useStrict, action, runInAction, computed } from 'mobx'
import React from 'react'
import Loader from 'halogen/PulseLoader'
import { Link } from 'react-router-dom'
import $ from 'jquery'
useStrict(true)
class HeaderStore {
@observable data = []
@observable loading = true
@observable error = null
@action addRepo(repo) {
this.data.push(repo)
}
@action loadHeaderData() {
$.getJSON('/regional_design/repos.json').then(
value => {
runInAction("update state after fetching data", () => {
this.data = value
this.loading = false
})
},
error => {
runInAction("error", () => {
this.error = error.statusText
this.loading = false
})
})
}
@computed get showElements() {
let result = null;
if (this.loading) {
result = <Loader color="#286090" size="12px" margin="4px"/>;
}
else if (this.error !== null) {
result = <span>Error: {this.error}</span>;
}
else {
const data = this.data.map((repo) => {
const url = `/web/regional_design/${repo.id}?object=repo`
return (
<Link key={ repo.id } className='btn btn-default mr15' to={ url }>{ repo.name }</Link>
)
})
result = data;
}
return result
}
}
export default new HeaderStore()