mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +01:00
50 lines
1.5 KiB
JavaScript
50 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
import Button from 'react-bootstrap/lib/Button';
|
|
|
|
import ModalWrapper from '../ascribe_modal/modal_wrapper';
|
|
import UnConsignRequestForm from './../ascribe_forms/form_unconsign_request';
|
|
|
|
import { getLangText } from '../../utils/lang_utils.js';
|
|
import ApiUrls from '../../constants/api_urls';
|
|
|
|
|
|
let UnConsignRequestButton = React.createClass({
|
|
propTypes: {
|
|
currentUser: React.PropTypes.object.isRequired,
|
|
edition: React.PropTypes.object.isRequired,
|
|
|
|
handleSuccess: React.PropTypes.func
|
|
},
|
|
|
|
render: function () {
|
|
const { currentUser, edition, handleSuccess } = this.props;
|
|
return (
|
|
<ModalWrapper
|
|
trigger={
|
|
<Button bsStyle="danger" className="btn-delete pull-center" bsSize="small" type="submit">
|
|
{getLangText('REQUEST UNCONSIGN')}
|
|
</Button>
|
|
}
|
|
handleSuccess={handleSuccess}
|
|
title={getLangText('Request to Un-Consign')}>
|
|
<UnConsignRequestForm
|
|
url={ApiUrls.ownership_unconsigns_request}
|
|
id={{'bitcoin_id': edition.bitcoin_id}}
|
|
message={`${getLangText('Hi')},
|
|
|
|
${getLangText('I request you to un-consign')} \" ${edition.title} \".
|
|
|
|
${getLangText('Truly yours')},
|
|
${currentUser.username}`
|
|
} />
|
|
</ModalWrapper>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default UnConsignRequestButton;
|
|
|