Skip to content

Commit

Permalink
adds several workflow steps for add-consultation workflow, re #34
Browse files Browse the repository at this point in the history
  • Loading branch information
whatisgalen committed May 13, 2019
1 parent cdf6b14 commit da9194c
Showing 1 changed file with 89 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,94 @@ define([
parenttileid: null,
icon: 'fa-tag'
},
{
title: 'Area Map',
description: 'Draw (or select from the Development Area Overlay) the extent of...',
component: 'new-tile-step',
graphid: '336d34e3-53c3-11e9-ba5f-dca90488358a',
nodegroupid: 'eafced66-53d8-11e9-a4e2-dca90488358a',
resourceid: null,
tileid: null,
parenttileid: null,
icon: 'fa-map-marker'
},
{
title: 'Related Heritage Resources',
description: 'Click on the Heritage Assets, Activities, and other resources related to this',
component: 'new-tile-step',
graphid: '336d34e3-53c3-11e9-ba5f-dca90488358a',
nodegroupid: '2c82277d-53db-11e9-934b-dca90488358a',
resourceid: null,
tileid: null,
parenttileid: null,
icon: 'fa-code-fork'
},
{
title: 'Area Description',
description: 'Describe the Application Area',
component: 'new-tile-step',
graphid: '336d34e3-53c3-11e9-ba5f-dca90488358a',
nodegroupid: '63cdcf0f-53da-11e9-8340-dca90488358a',
resourceid: null,
tileid: null,
parenttileid: null,
icon: 'fa-clipboard'
},
{
title: 'Area Designations',
description: 'Select the Application Area designations',
component: 'new-tile-step',
graphid: '336d34e3-53c3-11e9-ba5f-dca90488358a',
nodegroupid: 'e19fe3a1-6d22-11e9-98bf-dca90488358a',
resourceid: null,
tileid: null,
parenttileid: null,
icon: 'fa-bookmark'
},
{
title: 'Application Details',
description: 'Summary of the Application and Consultation Type',
component: 'new-tile-step',
graphid: '08359c2e-53f0-11e9-b212-dca90488358a',
nodegroupid: '04723f59-53f2-11e9-b091-dca90488358a',
resourceid: null,
tileid: null,
parenttileid: null,
icon: 'fa-list-alt'
},
{
title: 'Reference Numbers',
description: 'Application Reference Numbers',
component: 'new-tile-step',
graphid: '08359c2e-53f0-11e9-b212-dca90488358a',
nodegroupid: '3c79d87a-53f2-11e9-a14e-dca90488358a',
resourceid: null,
tileid: null,
parenttileid: null,
icon: 'fa-hashtag'
},
{
title: 'Application Proposal',
description: 'Summary of the Application that will be reviewed under this Consultation',
component: 'new-tile-step',
graphid: '08359c2e-53f0-11e9-b212-dca90488358a',
nodegroupid: 'f34ebbd4-53f3-11e9-b649-dca90488358a',
resourceid: null,
tileid: null,
parenttileid: null,
icon: 'far-clipboard'
},
{
title: 'Contacts',
description: 'Identify the key people/organizations associated with this consultation',
component: 'new-tile-step',
graphid: '08359c2e-53f0-11e9-b212-dca90488358a',
nodegroupid: '17c07f07-53f5-11e9-9c94-dca90488358a',
resourceid: null,
tileid: null,
parenttileid: null,
icon: 'fa-users'
},
{
title: 'Step 3',
description: 'Another description here',
Expand All @@ -44,7 +132,7 @@ define([
var previousStep;
var activeStep = self.activeStep();
if (activeStep && activeStep.complete() && activeStep._index < self.steps.length - 1) {
this.updateUrl(activeStep, 'forward')
this.updateUrl(activeStep, 'forward');
self.previousStep = activeStep;
self.activeStep(self.steps[activeStep._index+1]);
self.activeStep().resourceid = self.previousStep.resourceid
Expand Down

0 comments on commit da9194c

Please sign in to comment.