Bläddra i källkod

disable unused

Joystream Stats 1 år sedan
förälder
incheckning
c8d75af3a9
3 ändrade filer med 9 tillägg och 7 borttagningar
  1. 6 4
      src/App.tsx
  2. 1 1
      src/components/Dashboard/index.tsx
  3. 2 2
      src/components/Distribution/TestResults.tsx

+ 6 - 4
src/App.tsx

@@ -3,18 +3,18 @@ import moment from "moment";
 import "bootstrap/dist/css/bootstrap.min.css";
 import "./index.css";
 import {
-  Log,
+  //Log,
   NavBar,
   Modals,
   Routes,
   Loading,
   Status,
-  Notes,
+  //Notes,
 } from "./components";
 import { initialState } from "./state";
 import { BrowserRouter } from "react-router-dom";
 import { IState } from "./types";
-//import api from '.api/'
+import { connectApi } from "./api";
 import { postQN } from "./lib/util";
 
 interface IProps {}
@@ -75,7 +75,7 @@ class App extends React.Component<IProps, IState> {
   }
 
   render() {
-    const { log, settings, connected, fetching, loading } = this.state;
+    const { /*log, settings,*/ connected, fetching, loading } = this.state;
     if (loading) return <Loading />;
 
     return (
@@ -83,6 +83,7 @@ class App extends React.Component<IProps, IState> {
         <NavBar toggleShowNotes={this.toggleShowNotes} />
 
         <Routes
+          api={this.api}
           selectEvent={this.selectEvent}
           selectVideo={this.selectVideo}
           toggleEditKpi={this.toggleEditKpi}
@@ -211,6 +212,7 @@ class App extends React.Component<IProps, IState> {
 
   constructor(props: IProps) {
     super(props);
+    this.api = connectApi();
     this.state = initialState;
     this.save = this.save.bind(this);
     this.load = this.load.bind(this);

+ 1 - 1
src/components/Dashboard/index.tsx

@@ -17,7 +17,7 @@ const data = {
 };
 
 const Dashboard = (props: IProps) => {
-  const { save, selectVideo, media, categories } = props;
+  //const { save, selectVideo, media, categories } = props;
   const {
     memberships,
     channels,

+ 2 - 2
src/components/Distribution/TestResults.tsx

@@ -2,8 +2,8 @@ import moment from "moment";
 import Provider from "./ProviderLatency";
 
 const Results = (props: { providers: any[]; uploadErrors: any[] }) => {
-  const { uploadErrors, providers } = props;
-  return <></>
+  const { loading, uploadErrors, providers } = props;
+  if (loading) return <></>
   return (
     <div className="mt-2">
       <h2>Upload errors</h2>