Skip to content

Commit 52a2e83

Browse files
pgleesonfilippomc
authored andcommitted
Updates to homepage including Kato et al.
1 parent 9eb8155 commit 52a2e83

1 file changed

Lines changed: 29 additions & 14 deletions

File tree

webapp/components/FileSampleSelector.js

Lines changed: 29 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const SAMPLE_LINK_TRIPLETT = 'https://github.com/OpenSourceBrain/NWBShowcase/raw
1212
const SAMPLE_LINK_LANTYER = 'https://github.com/OpenSourceBrain/NWBShowcase/raw/master/Lantyer/LantyerEtAl2018.170502_AL_257_CC.nwb';
1313
const SAMPLE_LINK_LANORE = 'https://github.com/OpenSourceBrain/NWBShowcase/raw/master/IgorPro/141210c3.nwb';
1414
const SAMPLE_LINK_PACKER = 'https://github.com/OpenSourceBrain/CalciumImagingDriftingGrating/raw/master/neurofinder.01.01.jpg.nwb';
15+
const SAMPLE_LINK_KATO = 'https://github.com/OpenSourceBrain/NWBShowcase/raw/master/KatoEtAl2015/KatoEtAl2018.WT_Stim.6.nwb';
1516

1617
export default class FileSampleSelector extends React.Component {
1718

@@ -37,26 +38,25 @@ export default class FileSampleSelector extends React.Component {
3738

3839
return (
3940
<div >
40-
<h2>Don't have a file to load?</h2>
41-
<p>Pick a sample and get started!</p>
41+
<h2>Don't have a file to load? Try some of these...</h2>
4242
<Button
4343
id="loadFile"
4444
variant="outlined"
4545
onClick={ e => this.handleClickLoadFile(SAMPLE_LINK_TIMESERIES)}
4646
disabled={false}
47-
4847
>
4948
Simple time series
5049
</Button>
51-
<br />
50+
51+
<p>Intracellular Electrophysiology:</p>
5252
<Button
5353
id="loadFile"
5454
variant="outlined"
5555
onClick={ e => this.handleClickLoadFile(SAMPLE_LINK_FERGUSON)}
5656
disabled={false}
5757
style={{ marginRight: '0.5em' }}
5858
>
59-
Ferguson et al. 2015
59+
Ferguson et al. 2015, 1
6060
</Button>
6161
<Button
6262
id="loadFile"
@@ -97,38 +97,53 @@ export default class FileSampleSelector extends React.Component {
9797
<Button
9898
id="loadFile"
9999
variant="outlined"
100-
onClick={ e => this.handleClickLoadFile(SAMPLE_LINK_TRIPLETT)}
100+
onClick={ e => this.handleClickLoadFile(SAMPLE_LINK_LANTYER)}
101101
disabled={false}
102+
style={{ marginRight: '0.5em' }}
102103
>
103-
Triplett et al. 2018
104+
Lantyer et al. 2018
104105
</Button>
105-
<br />
106106
<Button
107107
id="loadFile"
108108
variant="outlined"
109-
onClick={ e => this.handleClickLoadFile(SAMPLE_LINK_LANTYER)}
109+
onClick={ e => this.handleClickLoadFile(SAMPLE_LINK_LANORE)}
110110
disabled={false}
111+
style={{ marginRight: '0.5em' }}
111112
>
112-
Lantyer et al. 2018
113+
Lanore et al. 2019
113114
</Button>
114-
<br />
115+
116+
<p>Calcium fluorescence imaging (time series):</p>
115117
<Button
116118
id="loadFile"
117119
variant="outlined"
118-
onClick={ e => this.handleClickLoadFile(SAMPLE_LINK_LANORE)}
120+
onClick={ e => this.handleClickLoadFile(SAMPLE_LINK_TRIPLETT)}
119121
disabled={false}
122+
style={{ marginRight: '0.5em' }}
120123
>
121-
Lanore et al. 2019
124+
Triplett et al. 2018
122125
</Button>
123-
<br />
126+
<Button
127+
id="loadFile"
128+
variant="outlined"
129+
onClick={ e => this.handleClickLoadFile(SAMPLE_LINK_KATO)}
130+
disabled={false}
131+
style={{ marginRight: '0.5em' }}
132+
>
133+
Kato et al. 2015
134+
</Button>
135+
136+
<p>Calcium fluorescence imaging (image series):</p>
124137
<Button
125138
id="loadFile"
126139
variant="outlined"
127140
onClick={ e => this.handleClickLoadFile(SAMPLE_LINK_PACKER)}
128141
disabled={false}
142+
style={{ marginRight: '0.5em' }}
129143
>
130144
Packer et al. 2015
131145
</Button>
146+
132147
</div>
133148

134149

0 commit comments

Comments
 (0)