import React from 'react';
import { Icon, Form, Button, Input, Spin, Table, message, Modal, Upload, DatePicker } from 'antd';
import './techProduct.less';
import { beforeUploadFile, downloadFile } from '../../tools.js';
import moment from 'moment';
import ajax from 'jquery/src/ajax/xhr.js';
import $ from 'jquery/src/ajax';

const CenterListDescFrom = Form.create()(React.createClass({
    getInitialState() {
        return {
            loading: false
        };
    },
    handleSubmit(e) {
        e.preventDefault();
        this.props.form.validateFields((err, values) => {
            if (!err) {
                this.props.spinState(true);
                $.ajax({
                    method: "POST",
                    dataType: "json",
                    crossDomain: false,
                    url: globalConfig.context + "/techservice/cognizance/disposeCenterDetail",
                    data: {
                        id: this.props.data.id,
                        projectName: values.projectName,
                        projectTimeFormattedDate: values.projectTimeFormattedDate.format("YYYY-MM-DD"),
                        institution: values.institution,
                        termTimeFormattedDate: values.termTimeFormattedDate.format("YYYY-MM-DD"),
                        protocolUrl: this.state.protocolUrl
                    }
                }).done(function (data) {
                    if (!data.error.length) {
                        message.success('保存成功!');
                        this.props.clickOk();
                        this.props.spinState(false);
                        this.props.form.resetFields();
                    } else {
                        message.warning(data.error[0].message);
                        this.props.spinState(false);
                    }
                }.bind(this));
            }
        });
    },
    render() {
        const FormItem = Form.Item;
        const { getFieldDecorator } = this.props.form;
        const theData = this.props.data;
        const formItemLayout = {
            labelCol: { span: 4 },
            wrapperCol: { span: 12 },
        };
        const _me = this;
        return (
            <Form onSubmit={this.handleSubmit} className="activityCost-form">
                <div className="clearfix">
                    <FormItem className="half-item"
                        {...formItemLayout}
                        label="时间"
                    >
                        {getFieldDecorator('projectTimeFormattedDate', {
                            rules: [{ type: 'object', required: true, message: '此项为必填项!' }],
                            initialValue: theData.projectTimeFormattedDate ? moment(theData.projectTimeFormattedDate) : null
                        })(
                            <DatePicker />
                            )}
                    </FormItem>
                    <FormItem className="half-item"
                        {...formItemLayout}
                        label="名称"
                    >
                        {getFieldDecorator('projectName', {
                            rules: [{ required: true, message: '此项为必填项!' }],
                            initialValue: theData.projectName
                        })(
                            <Input />
                            )}
                    </FormItem>
                    <FormItem className="half-item"
                        {...formItemLayout}
                        label="期限"
                    >
                        {getFieldDecorator('termTimeFormattedDate', {
                            rules: [{ type: 'object', required: true, message: '此项为必填项!' }],
                            initialValue: theData.termTimeFormattedDate ? moment(theData.termTimeFormattedDate) : null
                        })(
                            <DatePicker />
                            )}
                    </FormItem>
                    <FormItem className="half-item"
                        {...formItemLayout}
                        label="大学机构"
                    >
                        {getFieldDecorator('institution', {
                            rules: [{ required: true, message: '此项为必填项!' }],
                            initialValue: theData.institution
                        })(
                            <Input />
                            )}
                    </FormItem>
                </div>
                <div className="hrSituation-roster">
                    <Upload
                        name="ratepay"
                        action={globalConfig.context + "/techservice/cognizance/upload"}
                        data={{ 'sign': 'protocol' }}
                        beforeUpload={beforeUploadFile}
                        showUploadList={false}
                        onChange={(info) => {
                            if (info.file.status !== 'uploading') {
                                console.log(info.file, info.fileList);
                            }
                            if (info.file.status === 'done') {
                                if (!info.file.response.error.length) {
                                    message.success(`${info.file.name} 文件上传成功!`);
                                } else {
                                    message.warning(info.file.response.error[0].message);
                                    return;
                                };
                                this.state.protocolUrl = info.file.response.data;
                            } else if (info.file.status === 'error') {
                                message.error(`${info.file.name} 文件上传失败。`);
                            }
                        }}
                    >
                        <Button><Icon type="upload" /> 上传研发费用台账 </Button>
                    </Upload>
                    <p style={{ marginTop: '10px' }}>{theData.protocolUrl ? <a onClick={downloadFile.bind(null, theData.protocolUrl, theData.protocolDownloadFileName)}>{theData.protocolDownloadFileName}</a> : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
                </div>
                <FormItem style={{ marginTop: '20px' }}>
                    <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
                    <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
                </FormItem>
            </Form >
        );
    },
}));

const CenterListDesc = React.createClass({
    getInitialState() {
        return {
            visible: false,
            loading: false
        };
    },
    componentWillReceiveProps(nextProps) {
        this.state.visible = nextProps.showDesc
    },
    showModal() {
        this.setState({
            visible: true,
        });
    },
    handleOk() {
        this.setState({
            visible: false,
        });
        this.props.closeDesc(false, true);
    },
    handleCancel(e) {
        this.setState({
            visible: false,
        });
        this.props.closeDesc(false);
    },
    spinChange(e) {
        this.setState({
            loading: e
        });
    },
    render() {
        return (
            <div className="patent-addNew">
                <Spin spinning={this.state.loading} className='spin-box'>
                    <Modal title="产学研情况详情" visible={this.state.visible}
                        onOk={this.handleOk} onCancel={this.handleCancel}
                        width='800px'
                        footer=''
                    >
                        <CenterListDescFrom data={this.props.data}
                            spinState={this.spinChange} closeModal={this.handleCancel} clickOk={this.handleOk} />
                    </Modal>
                </Spin>
            </div>
        );
    },
});

const CenterList = React.createClass({
    loadOrgTechCenterDetail() {
        this.setState({
            loading: true
        });
        $.ajax({
            method: "get",
            dataType: "json",
            crossDomain: false,
            url: globalConfig.context + "/techservice/cognizance/center",
            data: {
            }
        }).done((data) => {
            if (!data.data) {
                if (data.error && data.error.length) {
                    message.warning(data.error[0].message);
                    this.state.ButtonDisabled = true;
                }
                return;
            };
            this.state.cid = data.data.id;
            this.state.foundingTime = data.data.foundingTimeFormattedDate;
            this.state.principal = data.data.principal;
            this.state.systemCatalog = data.data.systemCatalog;
            this.state.systemUrl = data.data.systemUrl;
            this.state.systemDownloadFileName = data.data.systemDownloadFileName;
            this.state.centerName = data.data.centerName;
            this.state.comment = data.data.comment;
            this.loadData();
        }).always(function () {
            this.setState({
                loading: false
            });
        }.bind(this));
    },
    loadData(pageNo) {
        this.state.data = [];
        this.setState({
            loading: true
        });
        $.ajax({
            method: "post",
            dataType: "json",
            crossDomain: false,
            url: globalConfig.context + "/techservice/cognizance/centerDetail",
            data: {
                pageNo: pageNo || 1,
                pageSize: this.state.pagination.pageSize,
                cid: this.state.cid
            }
        }).done((data) => {
            if (!data.data || !data.data.list) {
                if (data.error.length) {
                    message.warning(data.error[0].message);
                }
                return;
            };
            for (let i = 0; i < data.data.list.length; i++) {
                let thisdata = data.data.list[i];
                this.state.data.push({
                    key: i,
                    id: thisdata.id,
                    cid: thisdata.cid,
                    projectTimeFormattedDate: thisdata.projectTimeFormattedDate,
                    projectName: thisdata.projectName,
                    protocolDownloadFileName: thisdata.protocolDownloadFileName,
                    protocolUrl: thisdata.protocolUrl,
                    protocol: [thisdata.protocolUrl, thisdata.protocolDownloadFileName],
                    institution: thisdata.institution,
                    termTimeFormattedDate: thisdata.termTimeFormattedDate

                });
            };
            this.state.pagination.current = data.data.pageNo;
            this.state.pagination.total = data.data.totalCount;
            this.setState({
                dataSource: this.state.data,
                pagination: this.state.pagination
            });
        }).always(function () {
            this.setState({
                loading: false
            });
        }.bind(this));
    },
    getInitialState() {
        return {
            selectedRowKeys: [],
            selectedRows: [],
            loading: false,
            pagination: {
                defaultCurrent: 1,
                defaultPageSize: 10,
                showQuickJumper: true,
                pageSize: 10,
                onChange: function (page) {
                    this.loadData(page);
                }.bind(this),
                showTotal: function (total) {
                    return '共' + total + '条数据';
                }
            },
            columns: [
                {
                    title: '时间',
                    dataIndex: 'projectTimeFormattedDate',
                    key: 'projectTimeFormattedDate'
                }, {
                    title: '名称',
                    dataIndex: 'projectName',
                    key: 'projectName'
                }, {
                    title: '期限',
                    dataIndex: 'termTimeFormattedDate',
                    key: 'termTimeFormattedDate'
                }, {
                    title: '大学机构',
                    dataIndex: 'institution',
                    key: 'institution'
                }, {
                    title: '协议附件',
                    dataIndex: 'protocol',
                    key: 'protocol',
                    render: (text) => {
                        return <a onClick={downloadFile.bind(null, text[0], text[1])}>{text[1]}</a>
                    }
                }
            ],
            dataSource: []
        };
    },
    componentWillMount() {
        this.loadOrgTechCenterDetail();
    },
    tableRowClick(record, index) {
        this.state.RowData = record;
        this.setState({
            showDesc: true
        });
    },
    delectRow() {
        let deletedIds = [];
        for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
            let rowItem = this.state.selectedRows[idx];
            if (rowItem.id) {
                deletedIds.push(rowItem.id)
            }
        };
        this.setState({
            selectedRowKeys: [],
            loading: deletedIds.length > 0
        });
        $.ajax({
            method: "POST",
            dataType: "json",
            crossDomain: false,
            url: globalConfig.context + "/techservice/cognizance/deleteOrgTechCenterDetail",
            data: {
                ids: deletedIds
            }
        }).done(function (data) {
            if (!data.error.length) {
                message.success('保存成功!');
                this.setState({
                    loading: false,
                });
            } else {
                message.warning(data.error[0].message);
            };
            this.loadData();
        }.bind(this));
    },
    closeDesc(e, s) {
        this.state.showDesc = e;
        if (s) {
            this.loadData();
        };
    },
    saveCenterDetail() {
        this.setState({
            loading: true
        });
        $.ajax({
            method: "post",
            dataType: "json",
            crossDomain: false,
            url: globalConfig.context + "/techservice/cognizance/disposeCenter",
            data: {
                id: this.state.cid,
                principal: this.state.principal,
                systemUrl: this.state.systemUrl,
                systemCatalog: this.state.systemCatalog,
                foundingTimeFormattedDate: this.state.foundingTime,
                comment: this.state.comment,
                centerName: this.state.centerName
            }
        }).done((data) => {
            if (!data.error.length) {
                message.success('保存成功!');
                this.loadOrgTechCenterDetail();
                this.setState({
                    loading: false,
                });
            } else {
                message.warning(data.error[0].message);
            };
        });
    },
    render() {
        const rowSelection = {
            selectedRowKeys: this.state.selectedRowKeys,
            onChange: (selectedRowKeys, selectedRows) => {
                this.setState({
                    selectedRows: selectedRows,
                    selectedRowKeys: selectedRowKeys
                });
            }
        };
        const hasSelected = this.state.selectedRowKeys.length > 0;
        return (
            <div className="user-content" >
                <div className="content-title">
                    <span>研发部门</span>
                </div>
                <div className="clearfix">
                    <div className="orgTech-item">
                        <span>研发部门名称: </span>
                        <Input
                            value={this.state.centerName}
                            onChange={(e) => { this.setState({ centerName: e.target.value }); }}
                        />
                        <span>成立时间: </span>
                        <DatePicker
                            value={moment(this.state.foundingTime)}
                            allowClear={false}
                            onChange={(date, dateString) => { this.setState({ foundingTime: dateString }); }}
                        />
                        <span>负责人: </span>
                        <Input
                            value={this.state.principal}
                            onChange={(e) => { this.setState({ principal: e.target.value }); }}
                        />
                    </div>
                    <div className="orgTech-item">
                        <span>制度目录: </span>
                        <Input type='textarea' rows={6}
                            value={this.state.systemCatalog}
                            onChange={(e) => { this.setState({ systemCatalog: e.target.value }); }}
                        />
                    </div>
                    <div className="orgTech-item">
                        <span>备注: </span>
                        <Input type='textarea' rows={3}
                            value={this.state.comment}
                            onChange={(e) => { this.setState({ comment: e.target.value }); }}
                        />
                    </div>
                </div>
                <div className="half-item">
                    <p>制度上传: (上传 zip 或者 rar 文件)</p>
                    <div style={{ margin: '10px 0' }}>
                        <Upload
                            name="ratepay"
                            action={globalConfig.context + "/techservice/cognizance/upload"}
                            data={{ 'sign': 'institution' }}
                            beforeUpload={beforeUploadFile}
                            showUploadList={false}
                            onChange={(info) => {
                                if (info.file.status !== 'uploading') {
                                    console.log(info.file, info.fileList);
                                }
                                if (info.file.status === 'done') {
                                    if (!info.file.response.error.length) {
                                        message.success(`${info.file.name} 文件上传成功!`);
                                    } else {
                                        message.warning(info.file.response.error[0].message);
                                        return;
                                    };
                                    this.state.systemUrl = info.file.response.data;
                                } else if (info.file.status === 'error') {
                                    message.error(`${info.file.name} 文件上传失败。`);
                                }
                            }}
                        >
                            <Button disabled={this.state.ButtonDisabled}><Icon type="upload" /> 上传研发费用台账 </Button>
                        </Upload>
                        <p style={{ marginTop: '10px' }}>{this.state.systemUrl ? <a onClick={downloadFile.bind(null, this.state.systemUrl, this.state.systemDownloadFileName)}>{this.state.systemDownloadFileName}</a> : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
                    </div>
                </div>
                <Button disabled={this.state.ButtonDisabled} type='primary' onClick={this.saveCenterDetail}>保存</Button>
                <div className="content-title" style={{marginTop:'10px'}}>
                    <span>产学研情况</span>
                </div>
                <div className="user-search">
                    <p>
                        <Button style={{ background: "#ea0862", border: "none", color: "#fff" }}
                            disabled={this.state.ButtonDisabled}
                            onClick={this.tableRowClick}>添加<Icon type="plus" /></Button>
                        <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
                            disabled={!hasSelected}
                            onClick={this.delectRow}>删除<Icon type="minus" /></Button>
                    </p>
                </div>
                <div className="patent-table">
                    <Spin spinning={this.state.loading}>
                        <Table columns={this.state.columns}
                            dataSource={this.state.dataSource}
                            pagination={this.state.pagination}
                            rowSelection={rowSelection}
                            onRowClick={this.tableRowClick} />
                    </Spin>
                </div>
                <CenterListDesc data={this.state.RowData}
                    showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
            </div >
        );
    }
});

export default CenterList;