* 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.9 KiB
JavaScript
99 lines
2.9 KiB
JavaScript
import { h, Component } from 'preact';
|
|
import linkState from 'linkstate';
|
|
import Title from './elements/title';
|
|
import BodyMarkdown from './elements/bodyMarkdown';
|
|
import Categories from './elements/categories';
|
|
import Tags from './elements/tags';
|
|
import OrgSettings from './elements/orgSettings';
|
|
|
|
export default class ListingForm extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.listing = JSON.parse(this.props.listing);
|
|
this.categoriesForDetails = JSON.parse(this.props.categoriesForDetails);
|
|
this.categoriesForSelect = JSON.parse(this.props.categoriesForSelect);
|
|
|
|
const organizations = JSON.parse(this.props.organizations);
|
|
|
|
this.url = window.location.href;
|
|
|
|
this.state = {
|
|
id: this.listing.id || null,
|
|
title: this.listing.title || '',
|
|
category: this.listing.category || '',
|
|
tagList: this.listing.cached_tag_list || '',
|
|
bodyMarkdown: this.listing.body_markdown || '',
|
|
categoriesForSelect: this.categoriesForSelect,
|
|
categoriesForDetails: this.categoriesForDetails,
|
|
organizations,
|
|
organizationId: null, // change this for /edit later
|
|
};
|
|
}
|
|
|
|
handleOrgIdChange = e => {
|
|
const organizationId = e.target.selectedOptions[0].value;
|
|
this.setState({ organizationId });
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
id,
|
|
title,
|
|
bodyMarkdown,
|
|
tagList,
|
|
category,
|
|
categoriesForDetails,
|
|
categoriesForSelect,
|
|
organizations,
|
|
organizationId,
|
|
} = this.state;
|
|
const orgArea =
|
|
organizations && organizations.length > 0 ? (
|
|
<OrgSettings
|
|
organizations={organizations}
|
|
organizationId={organizationId}
|
|
onToggle={this.handleOrgIdChange}
|
|
/>
|
|
) : (
|
|
''
|
|
);
|
|
if (id === null) {
|
|
return (
|
|
<div>
|
|
<Title defaultValue={title} onChange={linkState(this, 'title')} />
|
|
<BodyMarkdown
|
|
defaultValue={bodyMarkdown}
|
|
onChange={linkState(this, 'bodyMarkdown')}
|
|
/>
|
|
<Categories
|
|
categoriesForSelect={categoriesForSelect}
|
|
categoriesForDetails={categoriesForDetails}
|
|
onChange={linkState(this, 'category')}
|
|
category={category}
|
|
/>
|
|
<Tags
|
|
defaultValue={tagList}
|
|
category={category}
|
|
onInput={linkState(this, 'tagList')}
|
|
/>
|
|
{orgArea}
|
|
{/* add contact via connect checkbox later */}
|
|
</div>
|
|
);
|
|
}
|
|
// WIP code for edit
|
|
return (
|
|
<div>
|
|
<Title defaultValue={title} onChange={linkState(this, 'title')} />
|
|
<BodyMarkdown
|
|
defaultValue={bodyMarkdown}
|
|
onChange={linkState(this, 'bodyMarkdown')}
|
|
/>
|
|
<Tags defaultValue={tagList} onInput={linkState(this, 'tagList')} />
|
|
{orgArea}
|
|
{/* add contact via connect checkbox later */}
|
|
</div>
|
|
);
|
|
}
|
|
}
|