Merge pull request #1186 from lowdefy/client-server-dev

feat(server-dev): Client working 🏄‍♂️
This commit is contained in:
Sam 2022-04-29 16:03:59 +02:00 committed by GitHub
commit 2fe01c848f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 9 deletions

View File

@ -23,7 +23,7 @@ import Link from 'next/link';
import Reload from './Reload.js';
import Page from './Page.js';
import setPageId from './utils/setPageId.js';
import setPageId from './setPageId.js';
import useRootConfig from './utils/useRootConfig.js';
import actions from '../build/plugins/actions.js';
@ -31,13 +31,11 @@ import blocks from '../build/plugins/blocks.js';
import icons from '../build/plugins/icons.js';
import operators from '../build/plugins/operatorsClient.js';
import '../build/plugins/styles.less';
const App = () => {
const router = useRouter();
const { data: rootConfig } = useRootConfig(router.basePath);
const { redirect, pageId } = setPageId(router);
const { redirect, pageId } = setPageId(router, rootConfig);
if (redirect) {
router.push(`/${pageId}`);
}

View File

@ -14,6 +14,6 @@
limitations under the License.
*/
import App from '../lib/components/App.js';
import App from '../lib/App.js';
export default App;

View File

@ -14,6 +14,6 @@
limitations under the License.
*/
import App from '../lib/components/App.js';
import App from '../lib/App.js';
export default App;

View File

@ -14,14 +14,18 @@
limitations under the License.
*/
import React from 'react';
import React, { Suspense } from 'react';
import dynamic from 'next/dynamic';
// Must be in _app due to next specifications.
import '../build/plugins/styles.less';
function App({ Component, pageProps }) {
return <Component {...pageProps} />;
return (
<Suspense fallback="">
<Component {...pageProps} />
</Suspense>
);
}
const DynamicApp = dynamic(() => Promise.resolve(App), {

View File

@ -14,6 +14,6 @@
limitations under the License.
*/
import App from '../lib/components/App.js';
import App from '../lib/App.js';
export default App;