Commit e4611088 authored by Matthew Taylor's avatar Matthew Taylor

extract faq from published page

after review from @thisandagain – thanks!
parent 85d6636c
var cheerio = require('cheerio');
var injectIntl = require('react-intl').injectIntl; var injectIntl = require('react-intl').injectIntl;
var React = require('react'); var React = require('react');
var xhr = require('xhr');
var Box = require('../../components/box/box.jsx');
var InformationPage = require('../../components/informationpage/informationpage.jsx'); var InformationPage = require('../../components/informationpage/informationpage.jsx');
var Page = require('../../components/page/www/page.jsx'); var Page = require('../../components/page/www/page.jsx');
var render = require('../../lib/render.jsx'); var render = require('../../lib/render.jsx');
...@@ -10,18 +11,28 @@ require('./preview-faq.scss'); ...@@ -10,18 +11,28 @@ require('./preview-faq.scss');
var PreviewFaq = injectIntl(React.createClass({ var PreviewFaq = injectIntl(React.createClass({
type: 'PreviewFaq', type: 'PreviewFaq',
getInitialState: function () {
return {
faqDoc: {__html: ''}
};
},
componentDidMount: function () {
xhr({
method: 'GET',
uri: 'https://docs.google.com/document/d/e/2PACX-1vQZFrpOagYqEwcrBBCplIomiyguPAodIJVnCq9Sr11WDI_aa2b-JtDWak-Aiu-cwWobTXftRMF6wBbd/pub?embedded=true'
}, function (error, response, body) {
var $ = cheerio.load(body);
this.setState({faqDoc: {__html: $('html').html()}});
}.bind(this));
},
render: function () { render: function () {
return ( return (
<InformationPage title={this.props.intl.formatMessage({id: 'preview-faq.title'})}> <InformationPage title={this.props.intl.formatMessage({id: 'preview-faq.title'})}>
<div className="inner"> <div className="inner">
<Box <div
title={''} className="preview-faq"
> dangerouslySetInnerHTML={this.state.faqDoc}
<iframe />
className="preview-faq-iframe"
src="https://docs.google.com/document/d/e/2PACX-1vQZFrpOagYqEwcrBBCplIomiyguPAodIJVnCq9Sr11WDI_aa2b-JtDWak-Aiu-cwWobTXftRMF6wBbd/pub?embedded=true"
></iframe>
</Box>
</div> </div>
</InformationPage> </InformationPage>
); );
......
@import "../../frameless";
#view { #view {
padding: 0; padding: 0;
} }
.box > .box-content { .preview-faq {
padding: 0; margin-bottom: 5rem;
}
.preview-faq-iframe {
border: none;
width: $cols12; // for the box padding
height: 450px;
}
//4 columns
@media only screen and (max-width: $mobile - 1) {
.preview-faq-iframe {
width: $cols4;
}
}
//6 columns
@media only screen and (min-width: $mobile) and (max-width: $tablet - 1) {
.preview-faq-iframe {
width: $cols6;
}
} }
//8 columns h1 {
@media only screen and (min-width: $tablet) and (max-width: $desktop - 1) { line-height: 1.7em !important;
.preview-faq-iframe { font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif !important;
width: $cols8; font-size: 2.5rem !important;
} font-weight: 900 !important;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment