mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 09:23:13 +01:00
Clean up the prize AccordionList and fix merge bug
This commit is contained in:
parent
8927ccb847
commit
1091e76447
@ -89,7 +89,8 @@ let AccordionListItemPrize = React.createClass({
|
||||
rating={rating}
|
||||
ratingAmount={5} />
|
||||
</Link>
|
||||
</div>);
|
||||
</div>
|
||||
);
|
||||
} else {
|
||||
if (currentUser.is_judge) {
|
||||
return (
|
||||
@ -108,23 +109,21 @@ let AccordionListItemPrize = React.createClass({
|
||||
);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
return this.getPrizeButtonsParticipant();
|
||||
}
|
||||
return this.getPrizeButtonsParticipant();
|
||||
|
||||
},
|
||||
|
||||
getPrizeButtonsParticipant() {
|
||||
return (
|
||||
<div>
|
||||
<AclProxy
|
||||
aclObject={this.props.content.acl}
|
||||
aclName="acl_wallet_submit">
|
||||
<SubmitToPrizeButton
|
||||
className="pull-right"
|
||||
piece={this.props.content}
|
||||
handleSuccess={this.handleSubmitPrizeSuccess}/>
|
||||
</AclProxy>
|
||||
</div>
|
||||
<AclProxy
|
||||
aclObject={this.props.content.acl}
|
||||
aclName="acl_wallet_submit">
|
||||
<SubmitToPrizeButton
|
||||
className="pull-right"
|
||||
piece={this.props.content}
|
||||
handleSuccess={this.handleSubmitPrizeSuccess} />
|
||||
</AclProxy>
|
||||
);
|
||||
},
|
||||
|
||||
@ -149,12 +148,14 @@ let AccordionListItemPrize = React.createClass({
|
||||
},
|
||||
|
||||
getPrizeBadge() {
|
||||
const { currentUser } = this.props;
|
||||
|
||||
if (currentUser && currentUser.is_judge) {
|
||||
return (
|
||||
<span className="pull-right ascribe-checkbox-wrapper ascribe-checkbox-badge">
|
||||
<InputCheckbox
|
||||
defaultChecked={this.props.content.selected}
|
||||
onChange={this.onSelectChange}/>
|
||||
onChange={this.onSelectChange} />
|
||||
</span>
|
||||
);
|
||||
} else {
|
||||
@ -170,21 +171,19 @@ let AccordionListItemPrize = React.createClass({
|
||||
<span className="glyphicon glyphicon-eye-close" aria-hidden="true"/> : content.artist_name;
|
||||
|
||||
return (
|
||||
<div>
|
||||
<AccordionListItemPiece
|
||||
className={className}
|
||||
piece={content}
|
||||
artistName={artistName}
|
||||
subsubheading={
|
||||
<div>
|
||||
<span>{Moment(content.date_created, 'YYYY-MM-DD').year()}</span>
|
||||
</div>
|
||||
}
|
||||
buttons={this.getPrizeButtons()}
|
||||
badge={this.getPrizeBadge()}>
|
||||
{children}
|
||||
</AccordionListItemPiece>
|
||||
</div>
|
||||
<AccordionListItemPiece
|
||||
className={className}
|
||||
piece={content}
|
||||
artistName={artistName}
|
||||
subsubheading={
|
||||
<div>
|
||||
<span>{Moment(content.date_created, 'YYYY-MM-DD').year()}</span>
|
||||
</div>
|
||||
}
|
||||
buttons={this.getPrizeButtons()}
|
||||
badge={this.getPrizeBadge()}>
|
||||
{children}
|
||||
</AccordionListItemPiece>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
@ -58,6 +58,12 @@ let PrizePieceList = React.createClass({
|
||||
}
|
||||
},
|
||||
|
||||
shouldRedirect(pieceCount) {
|
||||
const { currentUser } = this.props;
|
||||
|
||||
return !currentUser.is_admin && !currentUser.is_jury && !currentUser.is_judge && !pieceCount;
|
||||
},
|
||||
|
||||
render() {
|
||||
const { currentUser, location } = this.props;
|
||||
|
||||
@ -79,7 +85,8 @@ let PrizePieceList = React.createClass({
|
||||
customSubmitButton={this.getButtonSubmit()}
|
||||
filterParams={[]}
|
||||
orderParams={orderParams}
|
||||
orderBy={currentUser.is_jury ? 'rating' : null} />
|
||||
orderBy={currentUser.is_jury ? 'rating' : null}
|
||||
shouldRedirect={this.shouldRedirect} />
|
||||
);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user