mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-03-31 15:20:32 +08:00
Merge pull request #1186 from lowdefy/client-server-dev
feat(server-dev): Client working 🏄♂️
This commit is contained in:
commit
2fe01c848f
@ -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}`);
|
||||
}
|
||||
|
@ -14,6 +14,6 @@
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
import App from '../lib/components/App.js';
|
||||
import App from '../lib/App.js';
|
||||
|
||||
export default App;
|
||||
|
@ -14,6 +14,6 @@
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
import App from '../lib/components/App.js';
|
||||
import App from '../lib/App.js';
|
||||
|
||||
export default App;
|
||||
|
@ -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), {
|
||||
|
@ -14,6 +14,6 @@
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
import App from '../lib/components/App.js';
|
||||
import App from '../lib/App.js';
|
||||
|
||||
export default App;
|
||||
|
Loading…
x
Reference in New Issue
Block a user