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

Add more platform data #55

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions src/components/page-blocks/blocks/PartyPlatformBlock.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,21 +48,20 @@ export const PlatformBlock = (props) => {
</React.Fragment>
}
{sources_details &&
<React.Fragment>
<br/>
{sources_details.map( source_detail => (
<React.Fragment>
<ol>
{sources_details.map( (source_detail, index) => (
<li>
{' '}<a href={source_detail.url}
target="_blank"
rel="noopener noreferrer">
{source_detail.title} ({getDomainFromUrl(source_detail.url)})
</a>
</React.Fragment>
</li>
))}
</React.Fragment>
</ol>
}
</li>
{demographics &&
{demographics && demographics.length >0 &&
<React.Fragment>
<strong>Groups Affected:</strong> {' '}
{demographics.map(group => (
Expand Down Expand Up @@ -102,7 +101,9 @@ function partyToTitleTransform(party){
return title;
}
const PartyPlatformBlock = (props) => {
const {party, partyPlatforms, nColWidth} = props.data;
// TODO figure out why this is causing ypeError: Converting circular structure to JSON
// const {party, partyPlatforms, nColWidth} = PlatformUtils.addMissingPlatformData(props.data);
const {party, partyPlatforms, nColWidth} = props.data

const nWidth = nColWidth || 6; // default hack
const offset = Math.floor((12-nWidth)/2);
Expand Down
54 changes: 54 additions & 0 deletions src/data/Citations.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,42 @@ export const ALL_CITATIONS = {
directQuote: "A carbon tax offers the most cost-effective lever to reduce carbon emissions at a large scale and very quickly." +
"Sometimes market fail, and the price of a carbon tax will incentivize carbon emitters to use less carbon."
},
CMHC: {
link: "https://www.investopedia.com/terms/c/cmhc.asp",
publication: "Investopedia",
headline: "What Is the Canada Mortgage and Housing Corporation (CMHC)?",
directQuote: <>The Canada Mortgage and Housing Corporation (CMHC) is a government department that acts as Canada's national housing agency.
The goal of the CMHCC is to help Canadians access affordable housing options, mainly by providing mortgage insurance to homebuyers.
<br/><br/>
Mortgage insurance is an insurance policy which compensates mortgage lenders if the bororower of the mortgage defaults on their loan.
</>
},
HomeCoOwnership: {
link: "https://www.ontario.ca/document/co-owning-home",
publication: "Ontario Government",
headline: "Co-owning a home",
directQuote: <>Co-ownership housing is a shared living arrangement where two or more people own and live in a home together.
Co-owners may share living spaces like kitchens and living rooms, or the home may be divided into separate units.
<br/><br/>
Co-ownership housing has recently become more popular (for example in <a href="https://vancouversun.com/homes/buying-selling/co-ownership-on-the-rise-in-metro-vancouver-housing-market" target="_blank" rel="noopener noreferrer">
Vancouver</a> and <a href="https://www.thestar.com/life/homes/2021/07/07/co-ops-and.html" target="_blank" rel="noopener noreferrer">
Toronto</a>) as house prices have become more expensive
and more people seek alternative ways to afford a home.
</>
},
GuaranteedLivableIncome: {
link: "https://en.wikipedia.org/wiki/Guaranteed_minimum_income",
publication: "Wikipedia",
headline: "Guaranteed Minimum Income",
directQuote: <>Guaranteed Livable Income (commonly known as Guaranteed Minimum Income (GMI)) is similar to
<a href="https://en.wikipedia.org/wiki/Universal_basic_income" target="_blank" rel="noopener noreferrer">Universal Basic Income</a>
.<br/> <br/>

However, in UBI, everyone gets the same amount of money. GMI is means-based so people who have less income receive more money. It's similar to
welfare programs that already exist, but the biggest difference is that these programs typically involve direct cash payments given to the recipients
and they have more freedom in how they choose to spend the money.
</>
},
BillC69: {
link: "https://openparliament.ca/bills/42-1/C-69/",
publication: "Open Parliament",
Expand All @@ -190,5 +226,23 @@ export const ALL_CITATIONS = {
The anti NIMBYISM perspective says that building more high homes and higher density homes,
creates more affordable housing for everyone
</span>
},
FRACKING: {
link: "https://www.vox.com/2014/4/14/18076690/fracking",
// TODO add Pros and cons sections:
publication: "VOX",
headline: "Fracking, explained",
directQuote: <span>
Fracking is the process of injecting water, chemicals and sand underground at a very high pressure
to release the oil trapped inside.
<br/><br/>

<a href="https://www.vox.com/2014/4/14/18076690/fracking" target="_blank" rel="noopener noreferrer">Some people say</a> Fracking is bad because it can contaminate the groundwater and pollute the air.
<br/><br/>

<a href="https://www.forbes.com/sites/ucenergy/2018/02/20/fracking-has-its-costs-and-benefits-the-trick-is-balancing-them/?sh=464d7ca619b4" target="_blank" rel="noopener noreferrer">Some people say</a> Fracking is good because it lowers carbon emissions when
used in the place of coal. It's also cheaper than other methods of getting gas.
Therefore, consumers pay lower gas prices and mroe jobs are added to the economy.
</span>
}
};
10 changes: 9 additions & 1 deletion src/data/Constants.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// export const RECENT_GRADS = 'recent grads';
import React from "react";
import LinksBlock from "../components/page-blocks/blocks/LinksBlock";
import SectionTitleBlock from "../components/page-blocks/blocks/SectionTitleBlock";
import { References } from "./References";
Expand Down Expand Up @@ -56,7 +57,7 @@ export const ELECTION_TOPICS = [
SENIORS_TOPIC,
];

export const CONTRIBUTION_INSTRUCTIONS_LINK = "https://github.com/atilatech/government-fyi/tree/update_2021_policies#how-to-contribute"
export const CONTRIBUTION_INSTRUCTIONS_LINK = "https://github.com/atilatech/government-fyi#how-to-contribute"

export const ELECTION_YEAR = 2021;
export const CREATION_DATE = `September 11, ${ELECTION_YEAR} 7:00:00`;
Expand Down Expand Up @@ -95,3 +96,10 @@ export const ReferencesBlock = [
}
}
];

export const IncompletePartyInformation = () => (
(<React.Fragment>
Information for this party is incomplete, however, you can <a href={CONTRIBUTION_INSTRUCTIONS_LINK}
target="_blank" rel="noopener noreferrer">contribute policy information here</a>.
</React.Fragment>)
);
Loading