| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- import React, { Component, ComponentClass } from 'react';
- import _ from 'lodash';
- export interface OuterProps {
- type: string;
- queries: any[];
- isVisible: boolean;
- }
- export interface AddedProps {
- data: any[];
- }
- interface State {
- isLoading: boolean;
- data: any[];
- }
- const DataPanel = (ComposedComponent: ComponentClass<AddedProps & OuterProps>) => {
- class Wrapper extends Component<OuterProps, State> {
- public static defaultProps = {
- isVisible: true,
- };
- constructor(props: OuterProps) {
- super(props);
- this.state = {
- isLoading: false,
- data: [],
- };
- }
- public componentDidMount() {
- this.issueQueries();
- }
- public issueQueries = () => {
- const { queries, isVisible } = this.props;
- if (!isVisible) {
- return;
- }
- if (!queries.length) {
- this.setState({ data: [{ message: 'no queries' }] });
- return;
- }
- this.setState({ isLoading: true });
- };
- public render() {
- const { data, isLoading } = this.state;
- if (!data.length) {
- return (
- <div className="no-data">
- <p>No Data</p>
- </div>
- );
- }
- if (isLoading) {
- return (
- <div className="loading">
- <p>Loading</p>
- </div>
- );
- }
- return <ComposedComponent {...this.props} data={data} />;
- }
- }
- return Wrapper;
- };
- export default DataPanel;
|