* set up refactored onboarding * create onboarding page * add in first slide and change slide functionality * fix test suite * profile refactor * profile refactor * refactor to api * add checkbox fields * add checkbox fields * remove puts * add basic css * add styling * add redirect * hide back and next at first and last slides * test refactored onboarding * test refactored onboarding * remove article edits * Fix schema * Add deleted file back in * Add default value for checked_t&c column * Adjust HTML structure to keep nav buttons in place * Fix ESLint issues on Onboarding.jsx file * Handling for undefined or empty followedTags on getUserTags * Fix codeclimate issues * Fix codeclimate issues * Fix more codeclimate issues * Fix more codeclimate issues * Update Onboarding snapshots * Uncheck the CoC and T&C checkboxes on render * Update snapshots * Return false instead of raising error * Update spec to use new onboarding * Redirect to onboarding if haven't seen it yet * Prevent redirect to onboarding from /signout_confirm * Use assign_attributes instead of saving twice * Move COC and T&C checkbox page to second slide * Add 'go back to original page' functionality * Reuse ready prototype logic * Keep track of the last visited onboarding page * Fix email subscription bug * Fix overflow issue for tags page * Remove height to prevent page container scrolling * Check for CoC and T&C for displaying onboarding * Add InstantClick redirect and preserve referrer in client * Fix async update + check by using localStorage * Turn off onboarding for tests * Finalize design for onboarding * Finalize design for onboarding * Make bulk follows during onboarding * Fix bulk follow test
99 lines
2.4 KiB
JavaScript
99 lines
2.4 KiB
JavaScript
import { h, Component } from 'preact';
|
||
import PropTypes from 'prop-types';
|
||
import { generateMainImage } from '../actions';
|
||
|
||
// const ImageManagement = ({ onExit }) => (
|
||
export default class MoreConfig extends Component {
|
||
constructor(props) {
|
||
super(props);
|
||
// this.state = {insertionImageUrl: null}
|
||
}
|
||
|
||
handleSeriesButtonClick = e => {
|
||
e.preventDefault();
|
||
this.props.onConfigChange(e);
|
||
};
|
||
|
||
render() {
|
||
const { onExit, passedData, onSaveDraft } = this.props;
|
||
let publishedField = '';
|
||
let seriesTip = (
|
||
<small>
|
||
Will this post be part of a series? Give the series a unique name.
|
||
(Series visible once it has multiple posts)
|
||
</small>
|
||
);
|
||
if (passedData.allSeries.length > 0) {
|
||
const seriesNames = passedData.allSeries.map(name => {
|
||
return (
|
||
<button
|
||
name="series"
|
||
onClick={this.props.onConfigChange}
|
||
value={name}
|
||
>
|
||
{name}
|
||
</button>
|
||
);
|
||
});
|
||
seriesTip = (
|
||
<small>
|
||
Existing series:
|
||
{seriesNames}
|
||
</small>
|
||
);
|
||
}
|
||
if (passedData.published) {
|
||
publishedField = (
|
||
<div>
|
||
<h4>Danger Zone</h4>
|
||
<button onClick={onSaveDraft}>Unpublish Post</button>
|
||
</div>
|
||
);
|
||
}
|
||
return (
|
||
<div className="articleform__overlay">
|
||
<h3>Additional Config/Settings</h3>
|
||
<button
|
||
className="articleform__exitbutton"
|
||
data-content="exit"
|
||
onClick={onExit}
|
||
>
|
||
×
|
||
</button>
|
||
<div>
|
||
<label>Canonical URL</label>
|
||
<input
|
||
type="text"
|
||
value={passedData.canonicalUrl}
|
||
name="canonicalUrl"
|
||
onKeyUp={this.props.onConfigChange}
|
||
/>
|
||
</div>
|
||
<small>
|
||
Change meta tag <code>canonical_url</code> if this post was first
|
||
published elsewhere (like your own blog)
|
||
</small>
|
||
<div>
|
||
<label>Series Name</label>
|
||
<input
|
||
type="text"
|
||
value={passedData.series}
|
||
name="series"
|
||
onKeyUp={this.props.onConfigChange}
|
||
/>
|
||
</div>
|
||
{seriesTip}
|
||
<div>
|
||
<button className="articleform__donebutton" onClick={onExit}>
|
||
Done
|
||
</button>
|
||
</div>
|
||
{publishedField}
|
||
</div>
|
||
);
|
||
}
|
||
}
|
||
|
||
MoreConfig.propTypes = {
|
||
onExit: PropTypes.func.isRequired,
|
||
};
|