/* * << * Davinci * == * Copyright (C) 2016 - 2017 EDP * == * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * >> */ import React, { memo, useMemo, useCallback } from 'react' import Widget from 'containers/Widget/components/Widget' import { ILoadData, IDashboardItemInfo } from '../../containers/Dashboard/types' import { IShareDashboardItemInfo } from 'share/containers/Dashboard/types' import { IWidgetFormed } from 'app/containers/Widget/types' import { IViewModel } from 'app/containers/View/types' import styles from './FullScreenPanel.less' interface IFullScreenChartProps { itemId: number widget: IWidgetFormed info: IDashboardItemInfo | IShareDashboardItemInfo model: IViewModel onLoadData: ILoadData } const FullScreenChart: React.FC = memo( ({ itemId, widget, info, model, onLoadData }) => { const { queryVariables, pagination, renderType, data, loading } = useMemo(() => { const { renderType, datasource, loading, queryConditions } = info const { variables, linkageVariables, globalVariables, pagination } = queryConditions return { queryVariables: [ ...variables, ...linkageVariables, ...globalVariables ].reduce((obj, { name, value }) => { obj[`$${name}$`] = value return obj }, {}), pagination, renderType, data: datasource.resultList, loading } }, [info]) const paginationChange = useCallback( (pageNo: number, pageSize: number, orders) => { onLoadData('clear', itemId, { pagination: { ...info.queryConditions.pagination, pageNo, pageSize }, orders }) }, [itemId, widget] ) return (
) } ) export default FullScreenChart