mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
961b8ee58d
removed retry consign_form
45 lines
1.4 KiB
JavaScript
45 lines
1.4 KiB
JavaScript
import React from 'react';
|
|
import Modal from 'react-bootstrap/lib/Modal';
|
|
import OverlayTrigger from 'react-bootstrap/lib/OverlayTrigger';
|
|
import ModalTrigger from 'react-bootstrap/lib/ModalTrigger';
|
|
import Tooltip from 'react-bootstrap/lib/Tooltip';
|
|
|
|
import ModalMixin from '../../mixins/modal_mixin'
|
|
|
|
|
|
import ShareForm from '../ascribe_forms/form_share_email'
|
|
|
|
let ShareModalButton = React.createClass({
|
|
render() {
|
|
return (
|
|
<OverlayTrigger delay={500} placement="left" overlay={<Tooltip>Share the artwork</Tooltip>}>
|
|
<ModalTrigger modal={<ShareModal edition={this.props.edition}
|
|
currentUser={this.props.currentUser}/>}>
|
|
<div className="btn btn-ascribe-inv btn-glyph-ascribe">
|
|
<span className="glyph-ascribe-share2"></span>
|
|
</div>
|
|
</ModalTrigger>
|
|
</OverlayTrigger>
|
|
)
|
|
}
|
|
});
|
|
|
|
let ShareModal = React.createClass({
|
|
mixins : [ModalMixin],
|
|
|
|
render() {
|
|
return (
|
|
<Modal {...this.props} title="Share artwork">
|
|
<div className="modal-body">
|
|
<ShareForm edition={this.props.edition}
|
|
currentUser={this.props.currentUser}
|
|
onRequestHide={this.onRequestHide}/>
|
|
</div>
|
|
</Modal>
|
|
)
|
|
}
|
|
});
|
|
|
|
|
|
export default ShareModalButton;
|