Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bliz install next-ui fails with error #5

Open
timfee opened this issue Apr 3, 2022 · 2 comments
Open

bliz install next-ui fails with error #5

timfee opened this issue Apr 3, 2022 · 2 comments

Comments

@timfee
Copy link
Contributor

timfee commented Apr 3, 2022

What is the problem?

When installing next-ui, the script fails:

/Users/timfee/Sites/www/.blitz/recipe-install/node_modules/yoga-layout-prebuilt/yoga-layout/build/Release/nbind.js:53
        throw ex;
        ^

Error: At least one choice must be selectable
    at AutoComplete.reset (/Users/timfee/Sites/www/.blitz/recipe-install/node_modules/enquirer/lib/types/array.js:38:13)
    at processTicksAndRejections (node:internal/process/task_queues:96:5)
    at AutoComplete.initialize (/Users/timfee/Sites/www/.blitz/recipe-install/node_modules/enquirer/lib/types/array.js:25:5)
    at /Users/timfee/Sites/www/.blitz/recipe-install/node_modules/enquirer/lib/prompt.js:236:7

It does make changes to _app.tsx, but I'm not sure if there were more steps ahead.

Paste all your error logs here:

❯ blitz install next-ui
Loaded env from /Users/timfee/Sites/www/.env.local
Loaded env from /Users/timfee/Sites/www/.env


Recipe: Next UI

This will install all necessary dependencies and configure Next UI for use.

Repo: https://github.com/blitz-js/blitz
Author: [email protected]

Press ENTER to continue
✅ Installed 1 dependency

+–––––––––––––––––––––––––––––––––––––+
⎪   Import NextUIProvider component   ⎪
+–––––––––––––––––––––––––––––––––––––+
Import the Next UI provider into _app, so it is accessible in the whole app

--- app/pages/_app.tsx
+++ app/pages/_app.tsx
@@ -7,20 +7,24 @@
 } from 'blitz'

 import { NextUIProvider } from '@nextui-org/react'

+import { NextUIProvider } from "@nextui-org/react";
+
 export default function App({ Component, pageProps }: AppProps) {
   const getLayout = Component.getLayout || ((page) => page)

   return (
     <NextUIProvider>
-      <ErrorBoundary
-        FallbackComponent={RootErrorFallback}
-        onReset={useQueryErrorResetBoundary().reset}>
-        {getLayout(<Component {...pageProps} />)}
-      </ErrorBoundary>
+      <NextUIProvider>
+        <ErrorBoundary
+          FallbackComponent={RootErrorFallback}
+          onReset={useQueryErrorResetBoundary().reset}>
+          {getLayout(<Component {...pageProps} />)}
+        </ErrorBoundary>
+      </NextUIProvider>
     </NextUIProvider>
-  )
+  );
 }

 function RootErrorFallback({ error }: ErrorFallbackProps) {
   return (

The above changes will be made. Press ENTER to continue
/Users/timfee/Sites/www/.blitz/recipe-install/node_modules/yoga-layout-prebuilt/yoga-layout/build/Release/nbind.js:53
        throw ex;
        ^

Error: At least one choice must be selectable
    at AutoComplete.reset (/Users/timfee/Sites/www/.blitz/recipe-install/node_modules/enquirer/lib/types/array.js:38:13)
    at processTicksAndRejections (node:internal/process/task_queues:96:5)
    at AutoComplete.initialize (/Users/timfee/Sites/www/.blitz/recipe-install/node_modules/enquirer/lib/types/array.js:25:5)
    at /Users/timfee/Sites/www/.blitz/recipe-install/node_modules/enquirer/lib/prompt.js:236:7

Paste all relevant code snippets here:

n/a

What are detailed steps to reproduce this?

  1. Create a brand new project (without anything else in it)
  2. Run blitz install next-ui

Run blitz -v and paste the output here:

❯ blitz -v
Loaded env from /Users/timfee/Sites/www/.env.local
Loaded env from /Users/timfee/Sites/www/.env
macOS Monterey | darwin-arm64 | Node: v16.14.2

blitz: 0.45.3 (global)
blitz: 0.45.3 (local)

  Package manager: yarn
  System:
    OS: macOS 12.3
    CPU: (10) arm64 Apple M1 Max
    Memory: 29.85 GB / 64.00 GB
    Shell: 5.8 - /bin/zsh
  Binaries:
    Node: 16.14.2 - /opt/homebrew/opt/node@16/bin/node
    Yarn: 1.22.18 - /opt/homebrew/bin/yarn
    npm: 8.5.0 - /opt/homebrew/opt/node@16/bin/npm
    Watchman: Not Found
  npmPackages:
    @prisma/client: Not Found
    blitz: 0.45.3 => 0.45.3
    prisma: Not Found
    react: 18.0.0 => 18.0.0
    react-dom: 18.0.0 => 18.0.0
    typescript: 4.6.3 => 4.6.3

Please include below any other applicable logs and screenshots that show your problem:

No response

@timfee
Copy link
Contributor Author

timfee commented Apr 3, 2022

I'm not sure if this is (among the) culprits, but at recipes/next-ui/index.ts#L117, it's looking for a file that doesn't exist ( app/core/components/LabeledTextField.tsx), and seems to have failed at this step.

@timfee
Copy link
Contributor Author

timfee commented Apr 3, 2022

One more thing; the Next UI installation guides suggest changing _document - which this recipe doesn't do (but is a different issue than here; happy to make another one!)

@dillondotzip dillondotzip transferred this issue from blitz-js/blitz Jul 7, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants