-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Migrate App initialization from knockout to React (#14033)
* refactor: Migrate App initialization from knockout to React * Update tests and remove unecessary code * Move WindowTitleViewModal to hook * CR fixes * CR Fixes
- Loading branch information
Showing
45 changed files
with
905 additions
and
948 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Wire | ||
* Copyright (C) 2022 Wire Swiss GmbH | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see http://www.gnu.org/licenses/. | ||
* | ||
*/ | ||
|
||
import {FC} from 'react'; | ||
|
||
import {ClientType} from '@wireapp/api-client/lib/client/'; | ||
import {container} from 'tsyringe'; | ||
|
||
import {Configuration} from '../../Config'; | ||
import {App} from '../../main/app'; | ||
import {AppMain} from '../../page/AppMain'; | ||
import {APIClient} from '../../service/APIClientSingleton'; | ||
import {Core} from '../../service/CoreSingleton'; | ||
import {MainViewModel} from '../../view_model/MainViewModel'; | ||
import {AppLoader} from '../AppLoader'; | ||
|
||
interface AppProps { | ||
config: Configuration; | ||
clientType: ClientType; | ||
} | ||
|
||
export const AppContainer: FC<AppProps> = ({config, clientType}) => { | ||
const app = new App(container.resolve(Core), container.resolve(APIClient)); | ||
const mainView = new MainViewModel(app.repository); | ||
|
||
return ( | ||
<AppLoader init={onProgress => app.initApp(clientType, config, onProgress)}> | ||
{selfUser => <AppMain app={app} selfUser={selfUser} mainView={mainView} />} | ||
</AppLoader> | ||
); | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Wire | ||
* Copyright (C) 2022 Wire Swiss GmbH | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see http://www.gnu.org/licenses/. | ||
* | ||
*/ | ||
|
||
export * from './AppContainer'; |
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Wire | ||
* Copyright (C) 2021 Wire Swiss GmbH | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see http://www.gnu.org/licenses/. | ||
* | ||
*/ | ||
|
||
import {act, render, waitFor} from '@testing-library/react'; | ||
|
||
import {User} from 'src/script/entity/User'; | ||
|
||
import {AppLoader} from '.'; | ||
|
||
describe('AppLoader', () => { | ||
it('triggers loading of the app once mounted', async () => { | ||
jest.useFakeTimers(); | ||
let nextStep: (progress: number, message: string) => void = () => {}; | ||
let done: () => void = () => {}; | ||
const init = jest.fn(async (onProgress: (p: number, m: string) => void) => { | ||
nextStep = (progress: number, message: string) => onProgress(progress, message); | ||
return new Promise<User>(resolve => (done = () => resolve(new User()))); | ||
}); | ||
|
||
const {queryByText, getByText} = render(<AppLoader init={init}>{() => <div>LoadedApp</div>}</AppLoader>); | ||
|
||
act(() => nextStep(1, 'first')); | ||
expect(getByText('first')).not.toBe(null); | ||
expect(queryByText('LoadedApp')).toBe(null); | ||
act(() => nextStep(2, 'second')); | ||
expect(getByText('second')).not.toBe(null); | ||
expect(queryByText('LoadedApp')).toBe(null); | ||
done(); | ||
await waitFor(() => expect(getByText('LoadedApp')).not.toBe(null)); | ||
}); | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* Wire | ||
* Copyright (C) 2022 Wire Swiss GmbH | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see http://www.gnu.org/licenses/. | ||
* | ||
*/ | ||
|
||
import {FC, ReactElement, useEffect, useRef, useState} from 'react'; | ||
|
||
import {LoadingBar} from 'Components/LoadingBar/LoadingBar'; | ||
|
||
import {styles} from './AppLoader.styles'; | ||
|
||
import {User} from '../../entity/User'; | ||
|
||
interface AppLoaderProps { | ||
init: (onProgress: (progress: number, message?: string) => void) => Promise<User | undefined>; | ||
children: (selfUser: User) => ReactElement; | ||
} | ||
|
||
interface LoadingProgress { | ||
progress: number; | ||
message: string; | ||
} | ||
|
||
const defaultLoadingState: LoadingProgress = { | ||
message: '', | ||
progress: 0, | ||
}; | ||
|
||
export const AppLoader: FC<AppLoaderProps> = ({init, children}) => { | ||
const [loadingState, setLoadingState] = useState<LoadingProgress>(defaultLoadingState); | ||
const [selfUser, setSelfUser] = useState<User>(); | ||
const isFirstRender = useRef(true); | ||
|
||
useEffect(() => { | ||
if (!isFirstRender.current) { | ||
return; | ||
} | ||
isFirstRender.current = false; | ||
|
||
init((progress, message) => { | ||
setLoadingState(previousState => ({message: message ?? previousState?.message ?? '', progress})); | ||
}).then(user => setSelfUser(user)); | ||
}, []); | ||
|
||
if (selfUser) { | ||
return children(selfUser); | ||
} | ||
|
||
return ( | ||
<div css={styles} data-uie-name="status-webapp" data-uie-value="is-loading"> | ||
<LoadingBar {...loadingState} /> | ||
</div> | ||
); | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Wire | ||
* Copyright (C) 2022 Wire Swiss GmbH | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see http://www.gnu.org/licenses/. | ||
* | ||
*/ | ||
|
||
export * from './AppLoader'; |
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Wire | ||
* Copyright (C) 2022 Wire Swiss GmbH | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see http://www.gnu.org/licenses/. | ||
* | ||
*/ | ||
|
||
export * from './LoadingBar'; |
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
Oops, something went wrong.