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 React = require('react');
var xhr = require('xhr');
var Box = require('../../components/box/box.jsx');
var InformationPage = require('../../components/informationpage/informationpage.jsx');
var Page = require('../../components/page/www/page.jsx');
var render = require('../../lib/render.jsx');
......@@ -10,18 +11,28 @@ require('./preview-faq.scss');
var PreviewFaq = injectIntl(React.createClass({
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 () {
return (
<InformationPage title={this.props.intl.formatMessage({id: 'preview-faq.title'})}>
<div className="inner">
<Box
title={''}
>
<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
className="preview-faq"
dangerouslySetInnerHTML={this.state.faqDoc}
/>
</div>
</InformationPage>
);
......
@import "../../frameless";
#view {
padding: 0;
}
.box > .box-content {
padding: 0;
}
.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;
}
.preview-faq {
margin-bottom: 5rem;
}
//8 columns
@media only screen and (min-width: $tablet) and (max-width: $desktop - 1) {
.preview-faq-iframe {
width: $cols8;
}
h1 {
line-height: 1.7em !important;
font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif !important;
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