-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #253 from ONLYOFFICE/feature/my-profile
Feature/my profile
- Loading branch information
Showing
42 changed files
with
373 additions
and
390 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
//import "./wdyr"; | ||
import React from "react"; | ||
import Shell from "studio/shell"; | ||
import ErrorBoundary from "@appserver/common/components/ErrorBoundary"; | ||
import "@appserver/common/custom.scss"; | ||
|
||
const App = () => <Shell />; | ||
const App = () => { | ||
return ( | ||
<ErrorBoundary> | ||
<Shell /> | ||
</ErrorBoundary> | ||
); | ||
}; | ||
|
||
export default App; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
//import "./wdyr"; | ||
import React from "react"; | ||
import Shell from "studio/shell"; | ||
import ErrorBoundary from "@appserver/common/components/ErrorBoundary"; | ||
import "@appserver/common/custom.scss"; | ||
|
||
const App = () => <Shell />; | ||
const App = () => { | ||
return ( | ||
<ErrorBoundary> | ||
<Shell /> | ||
</ErrorBoundary> | ||
); | ||
}; | ||
|
||
export default App; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
//import "./wdyr"; | ||
import React from "react"; | ||
import Shell from "studio/shell"; | ||
//import "./wdyr"; | ||
import ErrorBoundary from "@appserver/common/components/ErrorBoundary"; | ||
import "@appserver/common/custom.scss"; | ||
|
||
const App = () => { | ||
return <Shell />; | ||
return ( | ||
<ErrorBoundary> | ||
<Shell /> | ||
</ErrorBoundary> | ||
); | ||
}; | ||
|
||
export default App; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1 @@ | ||
import("./bootstrap"); | ||
|
||
//import "./wdyr"; | ||
|
||
// import React from "react"; | ||
// import ReactDOM from "react-dom"; | ||
// import "./custom.scss"; | ||
// import App from "./App"; | ||
|
||
// import * as serviceWorker from "./serviceWorker"; | ||
// import { ErrorBoundary, store as commonStore } from "asc-web-common"; | ||
// import { Provider as MobxProvider } from "mobx-react"; | ||
// import filesStore from "./store/FilesStore"; | ||
// import settingsStore from "./store/SettingsStore"; | ||
// import mediaViewerDataStore from "./store/MediaViewerDataStore"; | ||
// import formatsStore from "./store/FormatsStore"; | ||
// import versionHistoryStore from "./store/VersionHistoryStore"; | ||
// import uploadDataStore from "./store/UploadDataStore"; | ||
// import dialogsStore from "./store/DialogsStore"; | ||
// import treeFoldersStore from "./store/TreeFoldersStore"; | ||
// import selectedFolderStore from "./store/SelectedFolderStore"; | ||
|
||
// const { authStore } = commonStore; | ||
|
||
// ReactDOM.render( | ||
// <MobxProvider | ||
// auth={authStore} | ||
// filesStore={filesStore} | ||
// settingsStore={settingsStore} | ||
// mediaViewerDataStore={mediaViewerDataStore} | ||
// formatsStore={formatsStore} | ||
// versionHistoryStore={versionHistoryStore} | ||
// uploadDataStore={uploadDataStore} | ||
// dialogsStore={dialogsStore} | ||
// treeFoldersStore={treeFoldersStore} | ||
// selectedFolderStore={selectedFolderStore} | ||
// > | ||
// <ErrorBoundary> | ||
// <App /> | ||
// </ErrorBoundary> | ||
// </MobxProvider>, | ||
// document.getElementById("root") | ||
// ); | ||
|
||
// // If you want your app to work offline and load faster, you can change | ||
// // unregister() to register() below. Note this comes with some pitfalls. | ||
// // Learn more about service workers: https://bit.ly/CRA-PWA | ||
// serviceWorker.register(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
//import "./wdyr"; | ||
import React from "react"; | ||
import Shell from "studio/shell"; | ||
import ErrorBoundary from "@appserver/common/components/ErrorBoundary"; | ||
import "@appserver/common/custom.scss"; | ||
|
||
const App = () => <Shell />; | ||
const App = () => { | ||
return ( | ||
<ErrorBoundary> | ||
<Shell /> | ||
</ErrorBoundary> | ||
); | ||
}; | ||
|
||
export default App; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
//import "./wdyr"; | ||
import React from "react"; | ||
import Shell from "studio/shell"; | ||
import ErrorBoundary from "@appserver/common/components/ErrorBoundary"; | ||
import "@appserver/common/custom.scss"; | ||
|
||
const App = () => <Shell />; | ||
const App = () => { | ||
return ( | ||
<ErrorBoundary> | ||
<Shell /> | ||
</ErrorBoundary> | ||
); | ||
}; | ||
|
||
export default App; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.