From 50352e0f8234d75ee898004361bf61b2a35c4fcf Mon Sep 17 00:00:00 2001 From: Chi Zhang Date: Fri, 17 Feb 2023 00:51:32 +0800 Subject: [PATCH] chore: cleanup old codes (#1071) --- apps/web/next.config.js | 8 ++ .../workspace/[workspaceId]/playground.tsx | 90 ------------------- 2 files changed, 8 insertions(+), 90 deletions(-) delete mode 100644 apps/web/src/pages/workspace/[workspaceId]/playground.tsx diff --git a/apps/web/next.config.js b/apps/web/next.config.js index 4ec0b5e412..9f8dee9d17 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -106,5 +106,13 @@ const withPWA = require('next-pwa')({ scope: '/_next', disable: process.env.NODE_ENV !== 'production', }); +const detectFirebaseConfig = () => { + if (!process.env.NEXT_PUBLIC_FIREBASE_API_KEY) { + printer.warn('NEXT_PUBLIC_FIREBASE_API_KEY not found, please check it'); + } else { + printer.info('NEXT_PUBLIC_FIREBASE_API_KEY found'); + } +}; +detectFirebaseConfig(); module.exports = withDebugLocal(withPWA(nextConfig)); diff --git a/apps/web/src/pages/workspace/[workspaceId]/playground.tsx b/apps/web/src/pages/workspace/[workspaceId]/playground.tsx deleted file mode 100644 index 28302d6dbd..0000000000 --- a/apps/web/src/pages/workspace/[workspaceId]/playground.tsx +++ /dev/null @@ -1,90 +0,0 @@ -import { styled } from '@affine/component'; - -import { ReactElement, ReactNode } from 'react'; -import WorkspaceLayout from '@/components/workspace-layout'; -import { Button } from '@affine/component'; - -export const FeatureCardDiv = styled('section')({ - width: '800px', - border: '1px #eee solid', - margin: '20px auto', - minHeight: '100px', - padding: '15px', -}); -const FeatureCard = (props: { - name: string; - children: ReactNode | ReactNode[]; -}) => { - return ( - -

Feature - {props.name}

- {props.children} -
- ); -}; - -export const Playground = () => { - return ( - <> - - - - - - - - - - - -
Workspace Name /[Workspace Members Count]/[Workspace Avatar]
-
Cloud Sync [Yes/No]
-
Auth [Public/Private]
-
- - - -
- -
- - -
-
- Cloud Sync - -
-
- - - - - - - - - - - - - -
Workspace Name
- - -
- - ); -}; - -Playground.getLayout = function getLayout(page: ReactElement) { - return {page}; -}; - -export default Playground;