import React, {Component} from 'react'
|
import PropTypes from 'prop-types'
|
import { connect } from 'react-redux'
|
import { is, fromJS } from 'immutable'
|
import { Col, Empty, notification, Button, Row } from 'antd'
|
|
import Api from '@/api'
|
import asyncComponent from '@/utils/asyncComponent'
|
import {
|
getStructuredParams,
|
getStructDefaultParam
|
} from '@/utils/utils-datamanage.js'
|
import Utils from '@/utils/utils.js'
|
import './index.scss'
|
|
// 通用组件
|
const AntvBarAndLine = asyncComponent(() => import('@/tabviews/custom/components/chart/antv-bar-line'))
|
const AntvPie = asyncComponent(() => import('@/tabviews/custom/components/chart/antv-pie'))
|
const AntvDashboard = asyncComponent(() => import('@/tabviews/custom/components/chart/antv-dashboard'))
|
const AntvScatter = asyncComponent(() => import('@/tabviews/custom/components/chart/antv-scatter'))
|
const DataCard = asyncComponent(() => import('@/tabviews/custom/components/card/data-card'))
|
const TableCard = asyncComponent(() => import('@/tabviews/custom/components/card/table-card'))
|
const NormalTable = asyncComponent(() => import('@/tabviews/custom/components/table/normal-table'))
|
const PropCard = asyncComponent(() => import('@/tabviews/custom/components/card/prop-card'))
|
const BraftEditor = asyncComponent(() => import('@/tabviews/custom/components/editor/braft-editor'))
|
const SandBox = asyncComponent(() => import('@/tabviews/custom/components/code/sand-box'))
|
const NormalForm = asyncComponent(() => import('@/tabviews/custom/components/form/normal-form'))
|
const NormalTree = asyncComponent(() => import('@/tabviews/custom/components/tree/antd-tree'))
|
const CarouselDataCard = asyncComponent(() => import('@/tabviews/custom/components/carousel/data-card'))
|
const CarouselPropCard = asyncComponent(() => import('@/tabviews/custom/components/carousel/prop-card'))
|
|
class TabTransfer extends Component {
|
static propTpyes = {
|
BID: PropTypes.any, // 父级Id
|
bids: PropTypes.any, // 父级Id集
|
config: PropTypes.object, // 组件配置信息
|
mainSearch: PropTypes.any, // 全局搜索条件
|
menuType: PropTypes.any, // 菜单类型
|
}
|
|
state = {
|
mainSearch: [],
|
printing: false,
|
data: null
|
}
|
|
UNSAFE_componentWillMount () {
|
const { config, mainSearch } = this.props
|
|
// 获取主搜索条件
|
let _mainSearch = mainSearch ? fromJS(mainSearch).toJS() : []
|
let params = []
|
config.components.forEach(item => {
|
if (item.type === 'tabs') return
|
|
if (!item.setting || item.setting.interType !== 'system') return
|
if (!item.format) return
|
|
if (item.dataName && (!item.pageable || (item.pageable && !item.setting.laypage)) && item.setting.onload === 'true' && item.setting.sync === 'true') {
|
let searchlist = []
|
if (item.search && item.search.length > 0) {
|
searchlist = Utils.initMainSearch(item.search)
|
}
|
if (item.setting.useMSearch) {
|
let keys = searchlist.map(item => item.key)
|
_mainSearch.forEach(item => {
|
if (!keys.includes(item.key)) {
|
searchlist.push(item)
|
}
|
})
|
}
|
|
if (searchlist.filter(cell => cell.required && cell.value === '').length > 0) {
|
item.setting.sync = 'false'
|
item.setting.onload = 'false'
|
} else {
|
params.push(getStructDefaultParam(item, searchlist))
|
}
|
} else {
|
item.setting.sync = 'false'
|
}
|
})
|
|
this.setState({mainSearch: _mainSearch})
|
|
if (params.length > 0) {
|
this.loadmaindata(params)
|
}
|
}
|
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
if (nextProps.mainSearch && !is(fromJS(this.props.mainSearch), fromJS(nextProps.mainSearch))) {
|
this.setState({mainSearch: fromJS(nextProps.mainSearch).toJS()})
|
}
|
}
|
|
/**
|
* @description 主表数据加载
|
*/
|
loadmaindata = (params) => {
|
let param = getStructuredParams(params, this.props.config)
|
|
Api.getLocalConfig(param).then(result => {
|
if (result.status) {
|
delete result.status
|
delete result.message
|
delete result.ErrMesg
|
delete result.ErrCode
|
|
this.setState({
|
data: result
|
})
|
} else {
|
this.setState({
|
data: ''
|
})
|
notification.error({
|
top: 92,
|
message: result.message,
|
duration: 10
|
})
|
}
|
})
|
}
|
|
getComponents = () => {
|
const { menuType, BID, bids, config } = this.props
|
const { mainSearch, data } = this.state
|
|
if (!config || !config.components || config.components.length === 0) return (<Empty description={false} />)
|
|
return config.components.map(item => {
|
let _bid = ''
|
if (bids && item.setting && item.setting.supModule) {
|
_bid = bids[item.setting.supModule] || ''
|
} else if (!bids && BID && (!item.setting || !item.setting.supModule)) {
|
_bid = BID
|
}
|
|
if (item.type === 'bar' || item.type === 'line') {
|
return (
|
<Col span={item.width} key={item.uuid}>
|
<AntvBarAndLine data={data} config={item} BID={_bid} mainSearch={mainSearch} menuType={menuType} />
|
</Col>
|
)
|
} else if (item.type === 'pie') {
|
return (
|
<Col span={item.width} key={item.uuid}>
|
<AntvPie data={data} config={item} BID={_bid} mainSearch={mainSearch} menuType={menuType} />
|
</Col>
|
)
|
} else if (item.type === 'dashboard') {
|
return (
|
<Col span={item.width} key={item.uuid}>
|
<AntvDashboard config={item} data={data} BID={_bid} mainSearch={mainSearch} menuType={menuType} />
|
</Col>
|
)
|
} else if (item.type === 'form') {
|
return (
|
<Col span={item.width} key={item.uuid}>
|
<NormalForm config={item} data={data} BID={_bid} mainSearch={mainSearch} menuType={menuType} />
|
</Col>
|
)
|
} else if (item.type === 'scatter') {
|
return (
|
<Col span={item.width} key={item.uuid}>
|
<AntvScatter config={item} data={data} BID={_bid} mainSearch={mainSearch} menuType={menuType} />
|
</Col>
|
)
|
} else if (item.type === 'carousel' && item.subtype === 'datacard') {
|
return (
|
<Col span={item.width} key={item.uuid}>
|
<CarouselDataCard config={item} data={data} BID={_bid} mainSearch={mainSearch} menuType={menuType} />
|
</Col>
|
)
|
} else if (item.type === 'carousel' && item.subtype === 'propcard') {
|
return (
|
<Col span={item.width} key={item.uuid}>
|
<CarouselPropCard config={item} data={data} BID={_bid} mainSearch={mainSearch} menuType={menuType} />
|
</Col>
|
)
|
} else if (item.type === 'card' && item.subtype === 'datacard') {
|
return (
|
<Col span={item.width} key={item.uuid}>
|
<DataCard config={item} data={data} BID={_bid} mainSearch={mainSearch} menuType={menuType} />
|
</Col>
|
)
|
} else if (item.type === 'card' && item.subtype === 'propcard') {
|
return (
|
<Col span={item.width} key={item.uuid}>
|
<PropCard config={item} data={data} BID={_bid} mainSearch={mainSearch} menuType={menuType} />
|
</Col>
|
)
|
} else if (item.type === 'table' && item.subtype === 'tablecard') {
|
return (
|
<Col span={item.width} key={item.uuid}>
|
<TableCard config={item} data={data} BID={_bid} mainSearch={mainSearch} menuType={menuType} />
|
</Col>
|
)
|
} else if (item.type === 'table' && item.subtype === 'normaltable') {
|
return (
|
<Col span={item.width} key={item.uuid}>
|
<NormalTable config={item} data={data} BID={_bid} mainSearch={mainSearch} menuType={menuType} />
|
</Col>
|
)
|
} else if (item.type === 'tree') {
|
return (
|
<Col span={item.width} key={item.uuid}>
|
<NormalTree config={item} data={data} BID={_bid} mainSearch={mainSearch} menuType={menuType} />
|
</Col>
|
)
|
} else if (item.type === 'editor') {
|
return (
|
<Col span={item.width} key={item.uuid}>
|
<BraftEditor config={item} data={data} BID={_bid} mainSearch={mainSearch} menuType={menuType} />
|
</Col>
|
)
|
} else if (item.type === 'code') {
|
return (
|
<Col span={item.width} key={item.uuid}>
|
<SandBox config={item} data={data} BID={_bid} mainSearch={mainSearch} menuType={menuType} />
|
</Col>
|
)
|
} else {
|
return null
|
}
|
})
|
}
|
|
print = () => {
|
const { config } = this.props
|
const { printing } = this.state
|
|
if (printing) return
|
this.setState({printing: true})
|
|
let pageSize = ['A4', 'A3', 'A5'].includes(config.setting.pageSize) ? config.setting.pageSize : 'A4'
|
let pageLayout = config.setting.pageLayout !== 'horizontal' ? 'vertical' : 'horizontal'
|
|
let pageParam = {
|
A4: {
|
vertical: 980,
|
horizontal: 1200,
|
},
|
A3: {
|
vertical: 1200,
|
horizontal: 1600,
|
},
|
A5: {
|
vertical: 700,
|
horizontal: 1000,
|
}
|
}
|
|
let width = pageParam[pageSize][pageLayout]
|
|
try {
|
let jubuData = document.getElementById(config.uuid).innerHTML
|
|
let iframe = document.createElement('IFRAME')
|
let linkList = document.getElementsByTagName('link') // 获取父窗口link标签对象列表
|
let styleList = document.getElementsByTagName('style') // 获取父窗口style标签对象列表
|
|
document.body.appendChild(iframe)
|
let doc = iframe.contentWindow.document
|
|
doc.open()
|
doc.write(`<!DOCTYPE html><html lang="en"><head>`)
|
for (let i = 0;i < linkList.length;i++) {
|
if (linkList[i].type === 'text/css') {
|
doc.write(`<LINK rel="stylesheet" type="text/css" href="${linkList[i].href}">`)
|
}
|
}
|
doc.write(`<style>body{width: ${width}px!important;}*{border-style: solid;border-width: 0;}.print-button, .top-search{display: none!important;}</style>`)
|
for (let i = 0;i < styleList.length;i++) {
|
doc.write('<style>' + styleList[i].innerHTML + '</style>')
|
}
|
doc.write(`</head><body>`)
|
doc.write(jubuData)
|
doc.write(`</body></html>`)
|
doc.close()
|
|
setTimeout(() => {
|
iframe.contentWindow.focus()
|
iframe.contentWindow.print()
|
|
document.body.removeChild(iframe)
|
|
this.setState({printing: false})
|
}, 500)
|
} catch (e) {
|
this.setState({printing: false})
|
notification.warning({
|
top: 92,
|
message: '打印异常!',
|
duration: 5
|
})
|
}
|
}
|
|
render() {
|
const { config } = this.props
|
const { printing } = this.state
|
|
return (
|
<div className="normal-group-wrap" id={config.uuid} style={config.style}>
|
{config.setting && config.setting.print === 'true' ? <Button className="print-button" icon="printer" loading={printing} onClick={this.print}></Button> : null}
|
<Row>{this.getComponents()}</Row>
|
</div>
|
)
|
}
|
}
|
|
const mapStateToProps = (state) => {
|
return {
|
menuType: state.editLevel
|
}
|
}
|
|
const mapDispatchToProps = () => {
|
return {}
|
}
|
|
export default connect(mapStateToProps, mapDispatchToProps)(TabTransfer)
|