web: commented console.log

This commit is contained in:
Vladislav Makhov 2021-01-21 20:55:36 +03:00
parent fbcf056533
commit 93af940e51
3 changed files with 23 additions and 17 deletions

View File

@ -120,7 +120,7 @@ class App extends React.Component {
setEncryptionKeys,
isLoaded,
} = this.props;
console.log("componentDidUpdate: ", this.props);
//console.log("componentDidUpdate: ", this.props);
if (isAuthenticated && !this.isDesktopInit && isEncryption && isLoaded) {
this.isDesktopInit = true;
regDesktop(
@ -141,7 +141,7 @@ class App extends React.Component {
render() {
const { homepage, isDesktop } = this.props;
console.log(Layout);
//console.log(Layout);
return navigator.onLine ? (
<Layout>

View File

@ -242,7 +242,7 @@ class PureHome extends React.Component {
showOwnerChangePanel,
uploadPanelVisible,
} = this.props;
console.log("Files Home render");
return (
<>
{convertDialogVisible && (

View File

@ -4,7 +4,13 @@ import { Redirect, Route } from "react-router-dom";
import { connect } from "react-redux";
//import { Loader } from "asc-web-components";
import PageLayout from "../PageLayout";
import { getCurrentUser, getIsLoaded, isAdmin, isAuthenticated, isMe } from "../../store/auth/selectors.js";
import {
getCurrentUser,
getIsLoaded,
isAdmin,
isAuthenticated,
isMe,
} from "../../store/auth/selectors.js";
import { Error401, Error404 } from "../../pages/errors";
import RectangleLoader from "../Loaders/RectangleLoader/RectangleLoader";
//import isEmpty from "lodash/isEmpty";
@ -34,14 +40,14 @@ const PrivateRoute = ({ component: Component, ...rest }) => {
);
}
if(!isLoaded) {
if (!isLoaded) {
return (
<PageLayout>
<PageLayout.SectionBody>
<RectangleLoader height="90vh"/>
</PageLayout.SectionBody>
</PageLayout>
);
<PageLayout>
<PageLayout.SectionBody>
<RectangleLoader height="90vh" />
</PageLayout.SectionBody>
</PageLayout>
);
}
// const userLoaded = !isEmpty(user);
@ -65,11 +71,11 @@ const PrivateRoute = ({ component: Component, ...rest }) => {
isAdmin ||
(allowForMe && userId && isMe(user, userId))
) {
console.log(
"PrivateRoute render Component",
rest,
Component.name || Component.displayName
);
// console.log(
// "PrivateRoute render Component",
// rest,
// Component.name || Component.displayName
// );
return <Component {...props} />;
}
@ -91,7 +97,7 @@ function mapStateToProps(state) {
isAdmin: isAdmin(state),
user: getCurrentUser(state),
isAuthenticated: isAuthenticated(state),
isLoaded: getIsLoaded(state)
isLoaded: getIsLoaded(state),
};
}