Skip to content
Snippets Groups Projects
Commit 2e3899db authored by Hayley Corson-Dosch's avatar Hayley Corson-Dosch
Browse files

use vizRoute instead of pageRoute, add vizKey variable

parent 121c6a5e
No related branches found
No related tags found
1 merge request!4Add subpages and project pages, and routing for each
export default {
chartGridItems: [
//we'll be replacing these img_src with paths to location on s3
//pageRoutes will direct to appropriate subpage
//vizRoutes will direct to appropriate subpage
{
title: 'Viz 1',
project: 'Findex',
pageRoute: 'viz-1',
vizKey: 'Viz1',
vizRoute: 'viz-1',
img_src: 'src/assets/images/sampleChart.PNG',
alt: ''
},
{
title: 'Viz 2',
project: 'Findex',
pageRoute: 'viz-2',
vizKey: 'Viz2',
vizRoute: 'viz-2',
img_src: 'src/assets/images/sampleChart.PNG',
alt: ''
},
{
title: 'Viz 3',
project: 'Findex',
pageRoute: 'viz-3',
vizKey: 'Viz3',
vizRoute: 'viz-3',
img_src: 'src/assets/images/sampleChart.PNG',
alt: ''
},
{
title: 'Viz 4',
title: 'Glacier/Topography D3 Cross-Section Scan',
project: 'Fire in Ice',
pageRoute: 'viz-4',
vizKey: 'GlacierScanViz',
vizRoute: 'glacier-scan',
img_src: 'src/assets/images/sampleChart.PNG',
alt: ''
},
{
title: 'Viz 5',
project: 'Fish as Food',
pageRoute: 'viz-5',
vizKey: 'Viz5',
vizRoute: 'viz-5',
img_src: 'src/assets/images/sampleChart.PNG',
alt: ''
},
{
title: 'Viz 6',
project: 'Beaufort Sea',
pageRoute: 'viz-6',
vizKey: 'Viz6',
vizRoute: 'viz-6',
img_src: 'src/assets/images/sampleChart.PNG',
alt: ''
},
{
title: 'Viz 7',
project: 'Beaufort Sea',
pageRoute: 'viz-7',
vizKey: 'Viz7',
vizRoute: 'viz-7',
img_src: 'src/assets/images/sampleChart.PNG',
alt: ''
},
{
title: 'Viz 8',
project: 'Beaufort Sea',
pageRoute: 'viz-8',
vizKey: 'Viz8',
vizRoute: 'viz-8',
img_src: 'src/assets/images/sampleChart.PNG',
alt: ''
},
......
......@@ -25,7 +25,7 @@ const router = createRouter({
component: VisualizationView
},
{
path: '/:projectRoute/:pageRoute',
path: '/:projectRoute/:vizRoute',
name: 'SubPage',
component: SubPage
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment