Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add all dashboard export #3725

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Open
90 changes: 90 additions & 0 deletions app/backend/lib/dashboard/column_options.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
import { Columns } from 'write-excel-file';

const columnOptions: Columns = [
// column 1 (program)
{},
// column 2 (project id)
{ width: 12 },
// column 3 (phase)
{},
// column 4 (zone)
{},
// column 5 (intake number)
{},
// column 6 (internal status)
{ width: 20 },
// column 7 (external status)
{ width: 20 },
// column 8 (change request pending)
{},
// column 9 (title)
{ width: 20 },
// column 10 (project description)
{},
// column 11 (current operating name)
{},
// column 12 (830 million funding)
{},
// column 13 (Federal Funding Source)
{ width: 20 },
// column 14 (Federal Project Number)
{},
// column 15 (Project type)
{},
// column 16 (transport project type)
{},
// column 17 (highway project type)
{},
// column 18 (last mile technology)
{},
// column 19 (last mile minimum speed)
{},
// column 20 (Connected Coast Network Dependent)
{},
// column 21 (Project location)
{},
// column 22 (Economic Region)
{},
// column 23 (Regional District)
{},
// column 24 (Geographic Names)
{},
// column 25 (Total communities and locales)
{},
// column 26 (Indigenous communities)
{},
// column 27 (Household count)
{},
// column 28 (Transport KM)
{},
// column 29 (Highway KM)
{},
// column 30 (Rest Areas)
{},
// column 31 (bc funding)
{ width: 24 },
// column 32 (applicant amount)
{ width: 24 },
// column 33 (other funds requested)
{ width: 24 },
// column 34 (total fnha funding)
{ width: 24 },
// column 35 (total budget)
{ width: 24 },
// column 36 (announced by bc/ised)
{},
// column 37 (Date application received)
{},
// column 38 (Date conditionally approved)
{},
// column 39 (date agreement signed)
{},
// column 40 (Proposed start date)
{},
// column 41 (% Project milestone completion)
{},
// column 42 (Construction completed on)
{},
];

export default columnOptions;
Loading
Loading