/* * ============LICENSE_START=================================================== * SPARKY (AAI UI service) * ============================================================================ * Copyright © 2017 AT&T Intellectual Property. * Copyright © 2017 Amdocs * All rights reserved. * ============================================================================ * 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. * ============LICENSE_END===================================================== * * ECOMP and OpenECOMP are trademarks * and service marks of AT&T Intellectual Property. */ import React, {Component} from 'react'; import {connect} from 'react-redux'; import Grid from 'react-bootstrap/lib/Grid'; import Row from 'react-bootstrap/lib/Row'; import Col from 'react-bootstrap/lib/Col'; import Clearfix from 'react-bootstrap/lib/Clearfix'; import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, Brush } from 'recharts'; import i18n from 'utils/i18n/i18n'; import TopographicMap from 'generic-components/map/TopographicMap.jsx'; import { onTopographicMapMounted, onCountByTypeLoad, onLoadTotalCountByDate } from 'app/inventory/InventoryActions.js'; import { INVENTORY_TITLE, TOTAL_ENTITY_COUNTS_BY_DATE_CHART, COMPLEX_BY_LOCATION_TITLE, ENTITIES_BY_TYPE_TITLE, TOTAL_ENTITY_COUNT_TITLE } from 'app/inventory/InventoryConstants.js'; import InlineMessage from 'generic-components/InlineMessage/InlineMessage.jsx'; import PaginatedTable from 'generic-components/paginatedTable/PaginatedTable.jsx'; import { dateFormatLocalTimeZoneYYYYMMDD, getTicks, getTicksData, sortDataByField } from 'utils/DateTimeChartUtil.js'; import TitledContainer from 'generic-components/titledContainer/TitledContainer.jsx'; import {COLOR_BLUE} from 'utils/GlobalConstants.js'; const mapStateToProps = ({inventoryReducer}) => { let { mapPlotPoints = [], countByType = [], countByDate = [], feedbackMsgText = '', feedbackMsgSeverity = '' } = inventoryReducer; return { mapPlotPoints, countByType, countByDate, feedbackMsgText, feedbackMsgSeverity }; }; const mapActionToProps = (dispatch) => { return { onMountQueryTopographicVisualization: (requestObject) => { dispatch(onTopographicMapMounted(requestObject)); }, onLoadCountByType: () => { dispatch(onCountByTypeLoad()); }, onLoadTotalCountByDate: () => { dispatch(onLoadTotalCountByDate()); } }; }; class Inventory extends Component { componentDidMount() { let requestObject = { entityType: 'complex' }; this.props.onMountQueryTopographicVisualization(requestObject); this.props.onLoadCountByType(); this.props.onLoadTotalCountByDate(); } render() { let { mapPlotPoints, countByType, onLoadCountByType, countByDate, feedbackMsgSeverity, feedbackMsgText } = this.props; let tableDefinition = { key: {name: 'Entity'}, doc_count: {name: 'Count'} }; let paginationClasses = 'audit-pagination'; let tableClasses = 'inventory-table table table-striped table-bordered table-condensed'; const xAxisAttrName = 'date'; const yAxisAttrName = 'count'; const sortedData = sortDataByField(countByDate, xAxisAttrName); const ticksArr = getTicks(sortedData, xAxisAttrName); const completeData = getTicksData(sortedData, ticksArr, xAxisAttrName); const completeSortedData = sortDataByField(completeData, xAxisAttrName); let totalEntities = 0; let lastDate = ''; if (sortedData.length > 0) { lastDate = dateFormatLocalTimeZoneYYYYMMDD(sortedData[sortedData.length - 1] .date); totalEntities = sortedData[sortedData.length - 1].count; } return (
{i18n(INVENTORY_TITLE)}
{totalEntities} {lastDate}
onLoadCountByType()} paginationClass={paginationClasses} tableClass={tableClasses} maxPaginationLinks={25}/>
); } } export default connect(mapStateToProps, mapActionToProps)(Inventory);