jiti-meet/react/features/base/app
Leonard Kim 9215b1e8b2 ref(app): move initialization into componentDidMount
componentWillMount is a deprecated lifecycle method;
componentDidMount should be used to kick off things
like ajax. In the case of the _App hierarchy, a promise
chain is used to perform initialization, and it is
first started in the constructor by initializing
storage. However, by the time storage is initialized,
resolving the first promise, _App has already mounted.
So, move it all to the componentDidMount lifecycle.
2019-01-02 10:02:04 +01:00
..
components ref(app): move initialization into componentDidMount 2019-01-02 10:02:04 +01:00
actionTypes.js feat(App): refactor App and split it into BaseApp and App 2018-07-12 11:28:19 -05:00
actions.js feat(App): refactor App and split it into BaseApp and App 2018-07-12 11:28:19 -05:00
functions.js feat(App): refactor App and split it into BaseApp and App 2018-07-12 11:28:19 -05:00
index.js feat(App): refactor App and split it into BaseApp and App 2018-07-12 11:28:19 -05:00
reducer.js feat(App): refactor App and split it into BaseApp and App 2018-07-12 11:28:19 -05:00