mirror of
https://github.com/ascribe/onion.git
synced 2025-01-03 18:35:09 +01:00
Create boilerplate code for portfolioreview
This commit is contained in:
parent
b78bc66fe9
commit
7721d62319
@ -0,0 +1,85 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
import Form from '../../../../../ascribe_forms/form';
|
||||||
|
import Property from '../../../../../ascribe_forms/property';
|
||||||
|
import InputTextAreaToggable from '../../../../../ascribe_forms/input_textarea_toggable';
|
||||||
|
|
||||||
|
import { getLangText } from '../../../../../../utils/lang_utils';
|
||||||
|
|
||||||
|
|
||||||
|
const PRRegisterPieceForm = React.createClass({
|
||||||
|
getInitialState(){
|
||||||
|
return {
|
||||||
|
isUploadReady: false
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
handleSuccess() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Form
|
||||||
|
className="ascribe-form-bordered"
|
||||||
|
ref="registerPieceFields">
|
||||||
|
<Property
|
||||||
|
name='artist_name'
|
||||||
|
label={getLangText('Full name')}>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
placeholder="(e.g. Andy Warhol)"
|
||||||
|
required/>
|
||||||
|
</Property>
|
||||||
|
<Property
|
||||||
|
name='title'
|
||||||
|
label={getLangText('Title of the Work')}>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
placeholder="(e.g. 32 Campbell's Soup Cans)"
|
||||||
|
required/>
|
||||||
|
</Property>
|
||||||
|
<Property
|
||||||
|
name='date_created'
|
||||||
|
label={getLangText('Year of creation')}>
|
||||||
|
<input
|
||||||
|
type="number"
|
||||||
|
placeholder="(e.g. 1962)"
|
||||||
|
min={1}
|
||||||
|
required/>
|
||||||
|
</Property>
|
||||||
|
</Form>
|
||||||
|
<Form
|
||||||
|
className="ascribe-form-bordered"
|
||||||
|
ref="additionalData">
|
||||||
|
<Property
|
||||||
|
name='biography'
|
||||||
|
label={getLangText('Biography')}>
|
||||||
|
<InputTextAreaToggable
|
||||||
|
rows={1}
|
||||||
|
placeholder={getLangText('THIS NEEDS TEXT')}/>
|
||||||
|
</Property>
|
||||||
|
<Property
|
||||||
|
name='artist_statement'
|
||||||
|
label={getLangText("Artist's statement")}>
|
||||||
|
<InputTextAreaToggable
|
||||||
|
rows={1}
|
||||||
|
placeholder={getLangText('THIS NEEDS TEXT')}/>
|
||||||
|
</Property>
|
||||||
|
<Property
|
||||||
|
name='exhibition'
|
||||||
|
label={getLangText('Exhibition / Publication history (optional)')}>
|
||||||
|
<InputTextAreaToggable
|
||||||
|
rows={1}
|
||||||
|
placeholder={getLangText('THIS NEEDS TEXT')}/>
|
||||||
|
</Property>
|
||||||
|
</Form>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
export default PRRegisterPieceForm;
|
@ -0,0 +1,34 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
import Col from 'react-bootstrap/lib/Col';
|
||||||
|
import Row from 'react-bootstrap/lib/Row';
|
||||||
|
|
||||||
|
import PRRegisterPieceForm from './pr_forms/pr_register_piece_form';
|
||||||
|
|
||||||
|
import { getLangText } from '../../../../../utils/lang_utils';
|
||||||
|
|
||||||
|
|
||||||
|
const PRRegisterPiece = React.createClass({
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<Row>
|
||||||
|
<Col xs={4}>
|
||||||
|
<div className="register-piece--hero">
|
||||||
|
<h1>Portfolio Review</h1>
|
||||||
|
<h2>{getLangText('Submission closing on %s', ' 21 Dec 2015')}</h2>
|
||||||
|
<p>{getLangText('Submissions are open to everyone, we accept only PDFs.')}</p>
|
||||||
|
<p>{getLangText('We accept only one PDF with up to 20 images from every participant.')}</p>
|
||||||
|
<p>{getLangText('You need to pay 50€ in order to apply. We only accept PayPal.')}</p>
|
||||||
|
</div>
|
||||||
|
</Col>
|
||||||
|
<Col xs={8}>
|
||||||
|
<PRRegisterPieceForm />
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
export default PRRegisterPiece;
|
@ -14,6 +14,7 @@ import SPApp from './simple_prize/prize_app';
|
|||||||
|
|
||||||
import PRApp from './portfolioreview/pr_app';
|
import PRApp from './portfolioreview/pr_app';
|
||||||
import PRLanding from './portfolioreview/components/pr_landing';
|
import PRLanding from './portfolioreview/components/pr_landing';
|
||||||
|
import PRRegisterPiece from './portfolioreview/components/pr_register_piece';
|
||||||
|
|
||||||
import EditionContainer from '../../ascribe_detail/edition_container';
|
import EditionContainer from '../../ascribe_detail/edition_container';
|
||||||
import LogoutContainer from '../../logout_container';
|
import LogoutContainer from '../../logout_container';
|
||||||
@ -63,7 +64,7 @@ const ROUTES = {
|
|||||||
<IndexRoute component={PRLanding} />
|
<IndexRoute component={PRLanding} />
|
||||||
<Route
|
<Route
|
||||||
path='register_piece'
|
path='register_piece'
|
||||||
component={AuthProxyHandler({to: '/login', when: 'loggedOut'})(SPRegisterPiece)}
|
component={AuthProxyHandler({to: '/login', when: 'loggedOut'})(PRRegisterPiece)}
|
||||||
headerTitle='+ NEW WORK'/>
|
headerTitle='+ NEW WORK'/>
|
||||||
<Route
|
<Route
|
||||||
path='login'
|
path='login'
|
||||||
|
@ -43,9 +43,10 @@ let PrizeRegisterPiece = React.createClass({
|
|||||||
|
|
||||||
if(this.state.prize && this.state.prize.active){
|
if(this.state.prize && this.state.prize.active){
|
||||||
return (
|
return (
|
||||||
|
<div>
|
||||||
<RegisterPiece
|
<RegisterPiece
|
||||||
enableLocalHashing={false}
|
enableLocalHashing={false}
|
||||||
headerMessage={getLangText('Submit to the prize')}
|
headerMessage={''}
|
||||||
submitMessage={getLangText('Submit')}
|
submitMessage={getLangText('Submit')}
|
||||||
location={location}>
|
location={location}>
|
||||||
<Property
|
<Property
|
||||||
@ -82,6 +83,7 @@ let PrizeRegisterPiece = React.createClass({
|
|||||||
</InputCheckbox>
|
</InputCheckbox>
|
||||||
</Property>
|
</Property>
|
||||||
</RegisterPiece>
|
</RegisterPiece>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
@import 'sluice/sluice_custom_style';
|
@import 'simple_prize/simple_prize_custom_style';
|
||||||
|
@import 'portfolioreview/portfolioreview_custom_style';
|
||||||
|
|
||||||
.ascribe-prize-app {
|
.ascribe-prize-app {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
|
@ -0,0 +1,33 @@
|
|||||||
|
.client--portfolioreview {
|
||||||
|
padding-top: 20px !important;
|
||||||
|
|
||||||
|
.register-piece--hero {
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
h1, h2 {
|
||||||
|
font-variant: small-caps;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 5em;
|
||||||
|
color: #757575;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 1.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
p + p {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
p:last-child {
|
||||||
|
margin-bottom: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user