create-plasmic-app 0.0.63 → 0.0.65

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (207) hide show
  1. package/README.internal.md +6 -2
  2. package/cpa-out/.gitignore +15 -0
  3. package/cpa-out/gatsby-codegen-js/gatsby-browser.jsx +11 -0
  4. package/cpa-out/gatsby-codegen-js/gatsby-config.js +9 -0
  5. package/cpa-out/gatsby-codegen-js/gatsby-node.js +0 -0
  6. package/cpa-out/gatsby-codegen-js/gatsby-ssr.jsx +11 -0
  7. package/cpa-out/gatsby-codegen-js/package.json +26 -0
  8. package/cpa-out/gatsby-codegen-js/plasmic.json +79 -0
  9. package/cpa-out/gatsby-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicGlobalVariant__Screen.jsx +29 -0
  10. package/cpa-out/gatsby-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicHomepage.jsx +206 -0
  11. package/cpa-out/gatsby-codegen-js/src/pages/404.js +4 -0
  12. package/cpa-out/gatsby-codegen-js/src/pages/index.jsx +39 -0
  13. package/cpa-out/gatsby-codegen-ts/gatsby-browser.tsx +11 -0
  14. package/cpa-out/gatsby-codegen-ts/gatsby-config.ts +14 -0
  15. package/cpa-out/gatsby-codegen-ts/gatsby-node.ts +0 -0
  16. package/cpa-out/gatsby-codegen-ts/gatsby-ssr.tsx +11 -0
  17. package/cpa-out/gatsby-codegen-ts/package.json +34 -0
  18. package/cpa-out/gatsby-codegen-ts/plasmic.json +79 -0
  19. package/cpa-out/gatsby-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicGlobalVariant__Screen.tsx +30 -0
  20. package/cpa-out/gatsby-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicHomepage.tsx +290 -0
  21. package/cpa-out/gatsby-codegen-ts/src/pages/404.js +4 -0
  22. package/cpa-out/gatsby-codegen-ts/src/pages/index.tsx +41 -0
  23. package/cpa-out/gatsby-codegen-ts/tsconfig.json +102 -0
  24. package/cpa-out/gatsby-loader-js/gatsby-config.js +25 -0
  25. package/cpa-out/gatsby-loader-js/gatsby-node.js +0 -0
  26. package/cpa-out/gatsby-loader-js/gatsby-ssr.jsx +44 -0
  27. package/cpa-out/gatsby-loader-js/package.json +24 -0
  28. package/cpa-out/gatsby-loader-js/src/pages/404.js +4 -0
  29. package/cpa-out/gatsby-loader-js/src/pages/plasmic-host.jsx +19 -0
  30. package/cpa-out/gatsby-loader-js/src/plasmic-init.js +18 -0
  31. package/cpa-out/gatsby-loader-js/src/templates/defaultPlasmicPage.jsx +44 -0
  32. package/cpa-out/gatsby-loader-ts/gatsby-config.ts +31 -0
  33. package/cpa-out/gatsby-loader-ts/gatsby-node.ts +0 -0
  34. package/cpa-out/gatsby-loader-ts/gatsby-ssr.tsx +44 -0
  35. package/cpa-out/gatsby-loader-ts/package.json +32 -0
  36. package/cpa-out/gatsby-loader-ts/src/pages/404.ts +4 -0
  37. package/cpa-out/gatsby-loader-ts/src/pages/plasmic-host.tsx +24 -0
  38. package/cpa-out/gatsby-loader-ts/src/plasmic-init.ts +19 -0
  39. package/cpa-out/gatsby-loader-ts/src/templates/defaultPlasmicPage.tsx +52 -0
  40. package/cpa-out/gatsby-loader-ts/tsconfig.json +102 -0
  41. package/cpa-out/nextjs-app-loader-js/app/[[...catchall]]/page.jsx +56 -0
  42. package/cpa-out/nextjs-app-loader-js/app/api/hello/route.js +3 -0
  43. package/cpa-out/nextjs-app-loader-js/app/layout.js +14 -0
  44. package/cpa-out/nextjs-app-loader-js/app/plasmic-host/page.jsx +6 -0
  45. package/cpa-out/nextjs-app-loader-js/next.config.js +13 -0
  46. package/cpa-out/nextjs-app-loader-js/package.json +19 -0
  47. package/cpa-out/nextjs-app-loader-js/plasmic-init-client.jsx +65 -0
  48. package/cpa-out/nextjs-app-loader-js/plasmic-init.js +16 -0
  49. package/cpa-out/nextjs-app-loader-ts/app/[[...catchall]]/page.tsx +59 -0
  50. package/cpa-out/nextjs-app-loader-ts/app/api/hello/route.ts +3 -0
  51. package/cpa-out/nextjs-app-loader-ts/app/layout.tsx +18 -0
  52. package/cpa-out/nextjs-app-loader-ts/app/plasmic-host/page.tsx +6 -0
  53. package/cpa-out/nextjs-app-loader-ts/next.config.js +13 -0
  54. package/cpa-out/nextjs-app-loader-ts/package.json +23 -0
  55. package/cpa-out/nextjs-app-loader-ts/plasmic-init-client.tsx +65 -0
  56. package/cpa-out/nextjs-app-loader-ts/plasmic-init.ts +16 -0
  57. package/cpa-out/nextjs-app-loader-ts/tsconfig.json +28 -0
  58. package/cpa-out/nextjs-pages-codegen-js/components/plasmic/create_plasmic_app/PlasmicGlobalVariant__Screen.jsx +29 -0
  59. package/cpa-out/nextjs-pages-codegen-js/components/plasmic/create_plasmic_app/PlasmicHomepage.jsx +216 -0
  60. package/cpa-out/nextjs-pages-codegen-js/next.config.js +10 -0
  61. package/cpa-out/nextjs-pages-codegen-js/package.json +21 -0
  62. package/cpa-out/nextjs-pages-codegen-js/pages/_app.jsx +11 -0
  63. package/cpa-out/nextjs-pages-codegen-js/pages/api/hello.js +5 -0
  64. package/cpa-out/nextjs-pages-codegen-js/pages/index.jsx +35 -0
  65. package/cpa-out/nextjs-pages-codegen-js/pages/plasmic-host.jsx +15 -0
  66. package/cpa-out/nextjs-pages-codegen-js/plasmic.json +79 -0
  67. package/cpa-out/nextjs-pages-codegen-ts/components/plasmic/create_plasmic_app/PlasmicGlobalVariant__Screen.tsx +30 -0
  68. package/cpa-out/nextjs-pages-codegen-ts/components/plasmic/create_plasmic_app/PlasmicHomepage.tsx +297 -0
  69. package/cpa-out/nextjs-pages-codegen-ts/next.config.js +10 -0
  70. package/cpa-out/nextjs-pages-codegen-ts/package.json +25 -0
  71. package/cpa-out/nextjs-pages-codegen-ts/pages/_app.tsx +12 -0
  72. package/cpa-out/nextjs-pages-codegen-ts/pages/api/hello.ts +13 -0
  73. package/cpa-out/nextjs-pages-codegen-ts/pages/index.tsx +37 -0
  74. package/cpa-out/nextjs-pages-codegen-ts/pages/plasmic-host.tsx +15 -0
  75. package/cpa-out/nextjs-pages-codegen-ts/plasmic.json +79 -0
  76. package/cpa-out/nextjs-pages-codegen-ts/tsconfig.json +23 -0
  77. package/cpa-out/nextjs-pages-loader-js/next.config.js +10 -0
  78. package/cpa-out/nextjs-pages-loader-js/package.json +19 -0
  79. package/cpa-out/nextjs-pages-loader-js/pages/[[...catchall]].jsx +66 -0
  80. package/cpa-out/nextjs-pages-loader-js/pages/api/hello.js +5 -0
  81. package/cpa-out/nextjs-pages-loader-js/pages/plasmic-host.jsx +7 -0
  82. package/cpa-out/nextjs-pages-loader-js/plasmic-init.js +25 -0
  83. package/cpa-out/nextjs-pages-loader-ts/next.config.js +10 -0
  84. package/cpa-out/nextjs-pages-loader-ts/package.json +23 -0
  85. package/cpa-out/nextjs-pages-loader-ts/pages/[[...catchall]].tsx +70 -0
  86. package/cpa-out/nextjs-pages-loader-ts/pages/api/hello.ts +13 -0
  87. package/cpa-out/nextjs-pages-loader-ts/pages/plasmic-host.tsx +7 -0
  88. package/cpa-out/nextjs-pages-loader-ts/plasmic-init.ts +25 -0
  89. package/cpa-out/nextjs-pages-loader-ts/tsconfig.json +23 -0
  90. package/cpa-out/react-codegen-js/package.json +41 -0
  91. package/cpa-out/react-codegen-js/plasmic.json +76 -0
  92. package/cpa-out/react-codegen-js/src/App.jsx +9 -0
  93. package/cpa-out/react-codegen-js/src/components/Homepage.jsx +26 -0
  94. package/cpa-out/react-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicGlobalVariant__Screen.jsx +29 -0
  95. package/cpa-out/react-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicHomepage.jsx +196 -0
  96. package/cpa-out/react-codegen-js/src/index.js +17 -0
  97. package/cpa-out/react-codegen-js/src/reportWebVitals.js +13 -0
  98. package/cpa-out/react-codegen-js/src/setupTests.js +5 -0
  99. package/cpa-out/react-codegen-ts/package.json +46 -0
  100. package/cpa-out/react-codegen-ts/plasmic.json +76 -0
  101. package/cpa-out/react-codegen-ts/src/App.tsx +9 -0
  102. package/cpa-out/react-codegen-ts/src/components/Homepage.tsx +45 -0
  103. package/cpa-out/react-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicGlobalVariant__Screen.tsx +30 -0
  104. package/cpa-out/react-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicHomepage.tsx +280 -0
  105. package/cpa-out/react-codegen-ts/src/index.tsx +19 -0
  106. package/cpa-out/react-codegen-ts/src/react-app-env.d.ts +1 -0
  107. package/cpa-out/react-codegen-ts/src/reportWebVitals.ts +15 -0
  108. package/cpa-out/react-codegen-ts/src/setupTests.ts +5 -0
  109. package/cpa-out/react-codegen-ts/tsconfig.json +26 -0
  110. package/cpa-out/react-loader-js/package.json +41 -0
  111. package/cpa-out/react-loader-js/plasmic.json +76 -0
  112. package/cpa-out/react-loader-js/src/App.jsx +9 -0
  113. package/cpa-out/react-loader-js/src/components/Homepage.jsx +26 -0
  114. package/cpa-out/react-loader-js/src/components/plasmic/create_plasmic_app/PlasmicGlobalVariant__Screen.jsx +29 -0
  115. package/cpa-out/react-loader-js/src/components/plasmic/create_plasmic_app/PlasmicHomepage.jsx +196 -0
  116. package/cpa-out/react-loader-js/src/index.js +17 -0
  117. package/cpa-out/react-loader-js/src/reportWebVitals.js +13 -0
  118. package/cpa-out/react-loader-js/src/setupTests.js +5 -0
  119. package/cpa-out/react-loader-ts/package.json +46 -0
  120. package/cpa-out/react-loader-ts/plasmic.json +76 -0
  121. package/cpa-out/react-loader-ts/src/App.tsx +9 -0
  122. package/cpa-out/react-loader-ts/src/components/Homepage.tsx +45 -0
  123. package/cpa-out/react-loader-ts/src/components/plasmic/create_plasmic_app/PlasmicGlobalVariant__Screen.tsx +30 -0
  124. package/cpa-out/react-loader-ts/src/components/plasmic/create_plasmic_app/PlasmicHomepage.tsx +280 -0
  125. package/cpa-out/react-loader-ts/src/index.tsx +19 -0
  126. package/cpa-out/react-loader-ts/src/react-app-env.d.ts +1 -0
  127. package/cpa-out/react-loader-ts/src/reportWebVitals.ts +15 -0
  128. package/cpa-out/react-loader-ts/src/setupTests.ts +5 -0
  129. package/cpa-out/react-loader-ts/tsconfig.json +26 -0
  130. package/dist/gatsby/gatsby.d.ts +6 -0
  131. package/dist/{strategies → gatsby}/gatsby.js +26 -29
  132. package/dist/gatsby/template.d.ts +11 -0
  133. package/dist/{templates/gatsby.js → gatsby/template.js} +34 -42
  134. package/dist/index.d.ts +1 -1
  135. package/dist/index.js +57 -27
  136. package/dist/lib.d.ts +3 -4
  137. package/dist/lib.js +22 -12
  138. package/dist/nextjs/nextjs.d.ts +2 -0
  139. package/dist/nextjs/nextjs.js +155 -0
  140. package/dist/nextjs/templates/app-loader/catchall-page.d.ts +2 -0
  141. package/dist/nextjs/templates/app-loader/catchall-page.js +67 -0
  142. package/dist/nextjs/templates/app-loader/plasmic-host.d.ts +1 -0
  143. package/dist/nextjs/templates/app-loader/plasmic-host.js +13 -0
  144. package/dist/nextjs/templates/app-loader/plasmic-init-client.d.ts +2 -0
  145. package/dist/nextjs/templates/app-loader/plasmic-init-client.js +73 -0
  146. package/dist/nextjs/templates/app-loader/plasmic-init.d.ts +1 -0
  147. package/dist/nextjs/templates/app-loader/plasmic-init.js +23 -0
  148. package/dist/nextjs/templates/pages-codegen/app.d.ts +2 -0
  149. package/dist/nextjs/templates/pages-codegen/app.js +20 -0
  150. package/dist/nextjs/templates/pages-codegen/plasmic-host.d.ts +1 -0
  151. package/dist/nextjs/templates/pages-codegen/plasmic-host.js +22 -0
  152. package/dist/nextjs/templates/pages-loader/catchall-page.d.ts +2 -0
  153. package/dist/nextjs/templates/pages-loader/catchall-page.js +77 -0
  154. package/dist/nextjs/templates/pages-loader/plasmic-host.d.ts +1 -0
  155. package/dist/nextjs/templates/pages-loader/plasmic-host.js +14 -0
  156. package/dist/nextjs/templates/pages-loader/plasmic-init.d.ts +1 -0
  157. package/dist/nextjs/templates/pages-loader/plasmic-init.js +32 -0
  158. package/dist/react/react.d.ts +2 -0
  159. package/dist/{strategies → react}/react.js +10 -10
  160. package/dist/templates/readme.d.ts +2 -2
  161. package/dist/templates/readme.js +5 -4
  162. package/dist/templates/welcomePage.d.ts +2 -2
  163. package/dist/templates/welcomePage.js +5 -5
  164. package/dist/utils/file-utils.d.ts +2 -2
  165. package/dist/utils/file-utils.js +3 -3
  166. package/dist/{strategies/types.d.ts → utils/strategy.d.ts} +16 -14
  167. package/dist/utils/types.d.ts +9 -0
  168. package/dist/utils/types.js +7 -0
  169. package/package.json +4 -3
  170. package/run-cpa.ts +151 -0
  171. package/src/{strategies → gatsby}/gatsby.ts +28 -46
  172. package/src/{templates/gatsby.ts → gatsby/template.ts} +41 -51
  173. package/src/index.ts +86 -56
  174. package/src/lib.ts +30 -15
  175. package/src/nextjs/nextjs.ts +180 -0
  176. package/src/nextjs/templates/app-loader/catchall-page.ts +71 -0
  177. package/src/nextjs/templates/app-loader/plasmic-host.ts +9 -0
  178. package/src/nextjs/templates/app-loader/plasmic-init-client.ts +74 -0
  179. package/src/nextjs/templates/app-loader/plasmic-init.ts +22 -0
  180. package/src/nextjs/templates/pages-codegen/app.ts +24 -0
  181. package/src/nextjs/templates/pages-codegen/plasmic-host.ts +18 -0
  182. package/src/nextjs/templates/pages-loader/catchall-page.ts +81 -0
  183. package/src/nextjs/templates/pages-loader/plasmic-host.ts +10 -0
  184. package/src/nextjs/templates/pages-loader/plasmic-init.ts +31 -0
  185. package/src/{strategies → react}/react.ts +8 -10
  186. package/src/templates/readme.ts +5 -5
  187. package/src/templates/welcomePage.ts +6 -7
  188. package/src/utils/file-utils.ts +4 -4
  189. package/src/utils/strategy.ts +48 -0
  190. package/src/utils/types.ts +12 -0
  191. package/dist/strategies/gatsby.d.ts +0 -7
  192. package/dist/strategies/index.d.ts +0 -2
  193. package/dist/strategies/index.js +0 -22
  194. package/dist/strategies/nextjs.d.ts +0 -3
  195. package/dist/strategies/nextjs.js +0 -104
  196. package/dist/strategies/react.d.ts +0 -3
  197. package/dist/templates/gatsby.d.ts +0 -11
  198. package/dist/templates/nextjs.d.ts +0 -5
  199. package/dist/templates/nextjs.js +0 -162
  200. package/src/strategies/index.ts +0 -21
  201. package/src/strategies/nextjs.ts +0 -131
  202. package/src/strategies/types.ts +0 -42
  203. package/src/templates/nextjs.ts +0 -170
  204. /package/dist/{strategies/common.d.ts → utils/codegen.d.ts} +0 -0
  205. /package/dist/{strategies/common.js → utils/codegen.js} +0 -0
  206. /package/dist/{strategies/types.js → utils/strategy.js} +0 -0
  207. /package/src/{strategies/common.ts → utils/codegen.ts} +0 -0
@@ -0,0 +1,65 @@
1
+ "use client";
2
+
3
+ import { PlasmicRootProvider } from "@plasmicapp/loader-nextjs";
4
+ import { PLASMIC } from "@/plasmic-init";
5
+
6
+ // You can register any code components that you want to use here; see
7
+ // https://docs.plasmic.app/learn/code-components-ref/
8
+ // And configure your Plasmic project to use the host url pointing at
9
+ // the /plasmic-host page of your nextjs app (for example,
10
+ // http://localhost:3000/plasmic-host). See
11
+ // https://docs.plasmic.app/learn/app-hosting/#set-a-plasmic-project-to-use-your-app-host
12
+
13
+ // PLASMIC.registerComponent(...);
14
+
15
+ /**
16
+ * ClientPlasmicRootProvider is a Client Component that passes in the loader for you.
17
+ *
18
+ * Why? Props passed from Server to Client Components must be serializable.
19
+ * https://beta.nextjs.org/docs/rendering/server-and-client-components#passing-props-from-server-to-client-components-serialization
20
+ * However, PlasmicRootProvider requires a loader, but the loader is NOT serializable.
21
+ *
22
+ * In a Server Component like app/<your-path>/path.tsx, rendering the following would not work:
23
+ *
24
+ * ```tsx
25
+ * import { PLASMIC } from "@/plasmic-init";
26
+ * import { PlasmicRootProvider } from "plasmicapp/loader-nextjs";
27
+ * export default function MyPage() {
28
+ * const prefetchedData = await PLASMIC.fetchComponentData("YourPage");
29
+ * return (
30
+ * <PlasmicRootProvider
31
+ * loader={PLASMIC} // ERROR: loader is not serializable
32
+ * prefetchedData={prefetchedData}
33
+ * >
34
+ * {yourContent()}
35
+ * </PlasmicRootProvider>;
36
+ * );
37
+ * }
38
+ * ```
39
+ *
40
+ * Therefore, we define ClientPlasmicRootProvider as a Client Component (this file is marked "use client").
41
+ * ClientPlasmicRootProvider wraps the PlasmicRootProvider and passes in the loader for you,
42
+ * while allowing your Server Component to pass in prefetched data and other serializable props:
43
+ *
44
+ * ```tsx
45
+ * import { PLASMIC } from "@/plasmic-init";
46
+ * import { ClientPlasmicRootProvider } from "@/plasmic-init-client"; // changed
47
+ * export default function MyPage() {
48
+ * const prefetchedData = await PLASMIC.fetchComponentData("YourPage");
49
+ * return (
50
+ * <ClientPlasmicRootProvider // don't pass in loader
51
+ * prefetchedData={prefetchedData}
52
+ * >
53
+ * {yourContent()}
54
+ * </ClientPlasmicRootProvider>;
55
+ * );
56
+ * }
57
+ * ```
58
+ */
59
+ export function ClientPlasmicRootProvider(
60
+ props: Omit<React.ComponentProps<typeof PlasmicRootProvider>, "loader">
61
+ ) {
62
+ return (
63
+ <PlasmicRootProvider loader={PLASMIC} {...props}></PlasmicRootProvider>
64
+ );
65
+ }
@@ -0,0 +1,16 @@
1
+ import { initPlasmicLoader } from "@plasmicapp/loader-nextjs/react-server-conditional";
2
+
3
+ export const PLASMIC = initPlasmicLoader({
4
+ projects: [
5
+ {
6
+ id: "47tFXWjN2C4NyHFGGpaYQ3",
7
+ token: "7BRFratDxPLMGZHnd2grV5QP6mlHcZ1AK3BJSIeh7xzUlHgWh25XpgXvUaKAqHXFMXQQuzpADqboibF6nqNWQ",
8
+ },
9
+ ],
10
+
11
+ // By default Plasmic will use the last published version of your project.
12
+ // For development, you can set preview to true, which will use the unpublished
13
+ // project, allowing you to see your designs without publishing. Please
14
+ // only use this for development, as this is significantly slower.
15
+ preview: false,
16
+ });
@@ -0,0 +1,28 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es5",
4
+ "lib": ["dom", "dom.iterable", "esnext"],
5
+ "allowJs": true,
6
+ "skipLibCheck": true,
7
+ "strict": true,
8
+ "forceConsistentCasingInFileNames": true,
9
+ "noEmit": true,
10
+ "esModuleInterop": true,
11
+ "module": "esnext",
12
+ "moduleResolution": "node",
13
+ "resolveJsonModule": true,
14
+ "isolatedModules": true,
15
+ "jsx": "preserve",
16
+ "incremental": true,
17
+ "plugins": [
18
+ {
19
+ "name": "next"
20
+ }
21
+ ],
22
+ "paths": {
23
+ "@/*": ["./*"]
24
+ }
25
+ },
26
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
27
+ "exclude": ["node_modules"]
28
+ }
@@ -0,0 +1,29 @@
1
+ // @ts-nocheck
2
+ /* eslint-disable */
3
+ /* tslint:disable */
4
+ /* prettier-ignore-start */
5
+ import * as React from "react";
6
+ import * as p from "@plasmicapp/react-web";
7
+
8
+ export const ScreenContext = React.createContext(
9
+ "PLEASE_RENDER_INSIDE_PROVIDER"
10
+ );
11
+ /**
12
+ * @deprecated Plasmic now uses a custom hook for Screen variants, which is
13
+ * automatically included in your components. Please remove this provider
14
+ * from your code.
15
+ */
16
+
17
+ export function ScreenVariantProvider(props) {
18
+ console.warn(
19
+ "DEPRECATED: Plasmic now uses a custom hook for Screen variants, which is automatically included in your components. Please remove this provider from your code."
20
+ );
21
+ return props.children;
22
+ }
23
+
24
+ export const useScreenVariants = p.createUseScreenVariants(true, {
25
+ desktopOnly: "(min-width:768px)",
26
+ });
27
+
28
+ export default ScreenContext;
29
+ /* prettier-ignore-end */
@@ -0,0 +1,216 @@
1
+ // @ts-nocheck
2
+ /* eslint-disable */
3
+ /* tslint:disable */
4
+ /* prettier-ignore-start */
5
+ /** @jsxRuntime classic */
6
+ /** @jsx createPlasmicElementProxy */
7
+ /** @jsxFrag React.Fragment */
8
+ // This class is auto-generated by Plasmic; please do not edit!
9
+ // Plasmic Project: 47tFXWjN2C4NyHFGGpaYQ3
10
+ // Component: 6uuAAE1jiCew
11
+ import * as React from "react";
12
+ import Head from "next/head";
13
+ import { useRouter } from "next/router";
14
+ import * as p from "@plasmicapp/react-web";
15
+ import * as ph from "@plasmicapp/host";
16
+ import {
17
+ hasVariant,
18
+ classNames,
19
+ createPlasmicElementProxy,
20
+ deriveRenderOpts,
21
+ ensureGlobalVariants
22
+ } from "@plasmicapp/react-web";
23
+ import { useScreenVariants as useScreenVariantsscBjPxgdxdzbv } from "./PlasmicGlobalVariant__Screen"; // plasmic-import: SCBjPXGDXDZBV/globalVariant
24
+ import "@plasmicapp/react-web/lib/plasmic.css";
25
+ import projectcss from "./plasmic_create_plasmic_app.module.css"; // plasmic-import: 47tFXWjN2C4NyHFGGpaYQ3/projectcss
26
+ import sty from "./PlasmicHomepage.module.css"; // plasmic-import: 6uuAAE1jiCew/css
27
+
28
+ export const PlasmicHomepage__VariantProps = new Array();
29
+
30
+ export const PlasmicHomepage__ArgProps = new Array();
31
+
32
+ const __wrapUserFunction =
33
+ globalThis.__PlasmicWrapUserFunction ?? ((loc, fn) => fn());
34
+
35
+ const __wrapUserPromise =
36
+ globalThis.__PlasmicWrapUserPromise ??
37
+ (async (loc, promise) => {
38
+ return await promise;
39
+ });
40
+
41
+ function useNextRouter() {
42
+ try {
43
+ return useRouter();
44
+ } catch {}
45
+ return undefined;
46
+ }
47
+
48
+ function PlasmicHomepage__RenderFunc(props) {
49
+ const { variants, overrides, forNode } = props;
50
+ const __nextRouter = useNextRouter();
51
+ const $ctx = ph.useDataEnv?.() || {};
52
+ const args = React.useMemo(() => Object.assign({}, props.args), [props.args]);
53
+ const $props = {
54
+ ...args,
55
+ ...variants
56
+ };
57
+ const refsRef = React.useRef({});
58
+ const $refs = refsRef.current;
59
+ const currentUser = p.useCurrentUser?.() || {};
60
+ const [$queries, setDollarQueries] = React.useState({});
61
+ const globalVariants = ensureGlobalVariants({
62
+ screen: useScreenVariantsscBjPxgdxdzbv()
63
+ });
64
+ return (
65
+ <React.Fragment>
66
+ <Head></Head>
67
+
68
+ <style>{`
69
+ body {
70
+ margin: 0;
71
+ }
72
+ `}</style>
73
+
74
+ <div className={projectcss.plasmic_page_wrapper}>
75
+ <div
76
+ data-plasmic-name={"root"}
77
+ data-plasmic-override={overrides.root}
78
+ data-plasmic-root={true}
79
+ data-plasmic-for-node={forNode}
80
+ className={classNames(
81
+ projectcss.all,
82
+ projectcss.root_reset,
83
+ projectcss.plasmic_default_styles,
84
+ projectcss.plasmic_mixins,
85
+ sty.root
86
+ )}
87
+ >
88
+ <p.Stack
89
+ as={"section"}
90
+ data-plasmic-name={"section"}
91
+ data-plasmic-override={overrides.section}
92
+ hasGap={true}
93
+ className={classNames(projectcss.all, sty.section)}
94
+ >
95
+ <h1
96
+ data-plasmic-name={"h1"}
97
+ data-plasmic-override={overrides.h1}
98
+ className={classNames(
99
+ projectcss.all,
100
+ projectcss.h1,
101
+ projectcss.__wab_text,
102
+ sty.h1
103
+ )}
104
+ >
105
+ {"create-plasmic-app"}
106
+ </h1>
107
+
108
+ <div
109
+ data-plasmic-name={"text"}
110
+ data-plasmic-override={overrides.text}
111
+ className={classNames(
112
+ projectcss.all,
113
+ projectcss.__wab_text,
114
+ sty.text
115
+ )}
116
+ >
117
+ {hasVariant(globalVariants, "screen", "desktopOnly") ? (
118
+ <React.Fragment>
119
+ <React.Fragment>
120
+ {
121
+ "This project is used by run-cpa.ts in the create-plasmic-app repo.\n\nrun-cpa.ts runs create-plasmic-app for many combinations of args (e.g. nextjs + appDir + loader + typescript) to check for changes in generated files. Any changes to this project will result in lots of changes to the generated files. "
122
+ }
123
+ </React.Fragment>
124
+ <span
125
+ className={"plasmic_default__all plasmic_default__span"}
126
+ style={{ fontWeight: 700 }}
127
+ >
128
+ {"Therefore, please avoid changing this project."}
129
+ </span>
130
+ </React.Fragment>
131
+ ) : (
132
+ <React.Fragment>
133
+ <React.Fragment>
134
+ {
135
+ "If you haven't already done so, go back and learn the basics by going through the Plasmic Levels tutorial.\n\nIt's always easier to start from examples! Add a new page using a template—do this from the list of pages in the top left (the gray + button).\n\nOr press the big blue + button to start dragging items into this page.\n\nIntegrate this project into your codebase—press the "
136
+ }
137
+ </React.Fragment>
138
+ <span
139
+ className={"plasmic_default__all plasmic_default__span"}
140
+ style={{ fontWeight: 700 }}
141
+ >
142
+ {"Code"}
143
+ </span>
144
+ <React.Fragment>
145
+ {
146
+ " button in the top right and follow the quickstart instructions.\n\nJoin our Slack community (icon in bottom left) for help any time."
147
+ }
148
+ </React.Fragment>
149
+ </React.Fragment>
150
+ )}
151
+ </div>
152
+ </p.Stack>
153
+ </div>
154
+ </div>
155
+ </React.Fragment>
156
+ );
157
+ }
158
+
159
+ const PlasmicDescendants = {
160
+ root: ["root", "section", "h1", "text"],
161
+ section: ["section", "h1", "text"],
162
+ h1: ["h1"],
163
+ text: ["text"]
164
+ };
165
+
166
+ function makeNodeComponent(nodeName) {
167
+ const func = function (props) {
168
+ const { variants, args, overrides } = React.useMemo(
169
+ () =>
170
+ deriveRenderOpts(props, {
171
+ name: nodeName,
172
+ descendantNames: [...PlasmicDescendants[nodeName]],
173
+ internalArgPropNames: PlasmicHomepage__ArgProps,
174
+ internalVariantPropNames: PlasmicHomepage__VariantProps
175
+ }),
176
+ [props, nodeName]
177
+ );
178
+
179
+ return PlasmicHomepage__RenderFunc({
180
+ variants,
181
+ args,
182
+ overrides,
183
+ forNode: nodeName
184
+ });
185
+ };
186
+ if (nodeName === "root") {
187
+ func.displayName = "PlasmicHomepage";
188
+ } else {
189
+ func.displayName = `PlasmicHomepage.${nodeName}`;
190
+ }
191
+ return func;
192
+ }
193
+
194
+ export const PlasmicHomepage = Object.assign(
195
+ // Top-level PlasmicHomepage renders the root element
196
+ makeNodeComponent("root"),
197
+ {
198
+ // Helper components rendering sub-elements
199
+ section: makeNodeComponent("section"),
200
+ h1: makeNodeComponent("h1"),
201
+ text: makeNodeComponent("text"),
202
+ // Metadata about props expected for PlasmicHomepage
203
+ internalVariantProps: PlasmicHomepage__VariantProps,
204
+ internalArgProps: PlasmicHomepage__ArgProps,
205
+ // Page metadata
206
+ pageMetadata: {
207
+ title: "",
208
+ description: "",
209
+ ogImageSrc: "",
210
+ canonical: ""
211
+ }
212
+ }
213
+ );
214
+
215
+ export default PlasmicHomepage;
216
+ /* prettier-ignore-end */
@@ -0,0 +1,10 @@
1
+
2
+ /** @type {import('next').NextConfig} */
3
+ const nextConfig = {
4
+ eslint: {
5
+ ignoreDuringBuilds: true,
6
+ },
7
+ trailingSlash: true,
8
+ };
9
+
10
+ module.exports = nextConfig;
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "nextjs-pages-codegen-js",
3
+ "version": "0.1.0",
4
+ "private": true,
5
+ "scripts": {
6
+ "dev": "next dev",
7
+ "build": "next build",
8
+ "start": "next start",
9
+ "lint": "next lint"
10
+ },
11
+ "dependencies": {
12
+ "@plasmicapp/cli": "^0.1.216",
13
+ "@plasmicapp/host": "^1.0.107",
14
+ "@plasmicapp/react-web": "^0.2.161",
15
+ "eslint": "8.35.0",
16
+ "eslint-config-next": "13.2.3",
17
+ "next": "13.2.3",
18
+ "react": "18.2.0",
19
+ "react-dom": "18.2.0"
20
+ }
21
+ }
@@ -0,0 +1,11 @@
1
+ import 'styles/globals.css'
2
+ import { PlasmicRootProvider } from "@plasmicapp/react-web";
3
+ import Head from "next/head";
4
+
5
+ export default function MyApp({ Component, pageProps }) {
6
+ return (
7
+ <PlasmicRootProvider Head={Head}>
8
+ <Component {...pageProps} />
9
+ </PlasmicRootProvider>
10
+ );
11
+ }
@@ -0,0 +1,5 @@
1
+ // Next.js API route support: https://nextjs.org/docs/api-routes/introduction
2
+
3
+ export default function handler(req, res) {
4
+ res.status(200).json({ name: 'John Doe' })
5
+ }
@@ -0,0 +1,35 @@
1
+ // This is a skeleton starter React page generated by Plasmic.
2
+ // This file is owned by you, feel free to edit as you see fit.
3
+ import * as React from "react";
4
+ import * as ph from "@plasmicapp/host";
5
+ import { PlasmicHomepage } from "../components/plasmic/create_plasmic_app/PlasmicHomepage";
6
+ import { useRouter } from "next/router";
7
+
8
+ function Homepage() {
9
+ // Use PlasmicHomepage to render this component as it was
10
+ // designed in Plasmic, by activating the appropriate variants,
11
+ // attaching the appropriate event handlers, etc. You
12
+ // can also install whatever React hooks you need here to manage state or
13
+ // fetch data.
14
+ //
15
+ // Props you can pass into PlasmicHomepage are:
16
+ // 1. Variants you want to activate,
17
+ // 2. Contents for slots you want to fill,
18
+ // 3. Overrides for any named node in the component to attach behavior and data,
19
+ // 4. Props to set on the root node.
20
+ //
21
+ // By default, PlasmicHomepage is wrapped by your project's global
22
+ // variant context providers. These wrappers may be moved to
23
+ // Next.js Custom App component
24
+ // (https://nextjs.org/docs/advanced-features/custom-app).
25
+ return (
26
+ <ph.PageParamsProvider
27
+ params={useRouter()?.query}
28
+ query={useRouter()?.query}
29
+ >
30
+ <PlasmicHomepage />
31
+ </ph.PageParamsProvider>
32
+ );
33
+ }
34
+
35
+ export default Homepage;
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+ import { PlasmicCanvasHost, registerComponent } from '@plasmicapp/host';
3
+
4
+ // You can register any code components that you want to use here; see
5
+ // https://docs.plasmic.app/learn/code-components-ref/
6
+ // And configure your Plasmic project to use the host url pointing at
7
+ // the /plasmic-host page of your nextjs app (for example,
8
+ // http://localhost:3000/plasmic-host). See
9
+ // https://docs.plasmic.app/learn/app-hosting/#set-a-plasmic-project-to-use-your-app-host
10
+
11
+ // registerComponent(...)
12
+
13
+ export default function PlasmicHost() {
14
+ return <PlasmicCanvasHost />;
15
+ }
@@ -0,0 +1,79 @@
1
+ {
2
+ "platform": "nextjs",
3
+ "code": {
4
+ "lang": "js",
5
+ "scheme": "blackbox",
6
+ "reactRuntime": "classic"
7
+ },
8
+ "style": {
9
+ "scheme": "css-modules",
10
+ "defaultStyleCssFilePath": "plasmic/plasmic__default_style.css"
11
+ },
12
+ "images": {
13
+ "scheme": "public-files",
14
+ "publicDir": "../public",
15
+ "publicUrlPrefix": "/"
16
+ },
17
+ "tokens": {
18
+ "scheme": "theo",
19
+ "tokensFilePath": "plasmic-tokens.theo.json"
20
+ },
21
+ "srcDir": "components",
22
+ "defaultPlasmicDir": "./plasmic",
23
+ "projects": [
24
+ {
25
+ "projectId": "47tFXWjN2C4NyHFGGpaYQ3",
26
+ "projectApiToken": "7BRFratDxPLMGZHnd2grV5QP6mlHcZ1AK3BJSIeh7xzUlHgWh25XpgXvUaKAqHXFMXQQuzpADqboibF6nqNWQ",
27
+ "projectName": "create-plasmic-app",
28
+ "version": "latest",
29
+ "cssFilePath": "plasmic/create_plasmic_app/plasmic_create_plasmic_app.module.css",
30
+ "components": [
31
+ {
32
+ "id": "6uuAAE1jiCew",
33
+ "name": "Homepage",
34
+ "type": "managed",
35
+ "projectId": "47tFXWjN2C4NyHFGGpaYQ3",
36
+ "renderModuleFilePath": "plasmic/create_plasmic_app/PlasmicHomepage.jsx",
37
+ "importSpec": {
38
+ "modulePath": "../pages/index.jsx"
39
+ },
40
+ "cssFilePath": "plasmic/create_plasmic_app/PlasmicHomepage.module.css",
41
+ "scheme": "blackbox",
42
+ "componentType": "page"
43
+ }
44
+ ],
45
+ "icons": [],
46
+ "images": [],
47
+ "indirect": false,
48
+ "globalContextsFilePath": "",
49
+ "codeComponents": [
50
+ {
51
+ "id": "P6aGdYWZ2R",
52
+ "name": "PlasmicHead",
53
+ "componentImportPath": "@plasmicapp/react-web"
54
+ },
55
+ {
56
+ "id": "8G2A-uTjGa",
57
+ "name": "Fetcher",
58
+ "componentImportPath": "@plasmicapp/react-web/lib/data-sources"
59
+ }
60
+ ]
61
+ }
62
+ ],
63
+ "globalVariants": {
64
+ "variantGroups": [
65
+ {
66
+ "id": "SCBjPXGDXDZBV",
67
+ "name": "Screen",
68
+ "projectId": "47tFXWjN2C4NyHFGGpaYQ3",
69
+ "contextFilePath": "plasmic/create_plasmic_app/PlasmicGlobalVariant__Screen.jsx"
70
+ }
71
+ ]
72
+ },
73
+ "wrapPagesWithGlobalContexts": true,
74
+ "nextjsConfig": {
75
+ "pagesDir": "../pages"
76
+ },
77
+ "cliVersion": "0.1.216",
78
+ "$schema": "https://unpkg.com/@plasmicapp/cli@0.1.216/dist/plasmic.schema.json"
79
+ }
@@ -0,0 +1,30 @@
1
+ // @ts-nocheck
2
+ /* eslint-disable */
3
+ /* tslint:disable */
4
+ /* prettier-ignore-start */
5
+ import * as React from "react";
6
+ import * as p from "@plasmicapp/react-web";
7
+
8
+ export type ScreenValue = "desktopOnly";
9
+ export const ScreenContext = React.createContext<ScreenValue[] | undefined>(
10
+ "PLEASE_RENDER_INSIDE_PROVIDER" as any
11
+ );
12
+
13
+ /**
14
+ * @deprecated Plasmic now uses a custom hook for Screen variants, which is
15
+ * automatically included in your components. Please remove this provider
16
+ * from your code.
17
+ */
18
+ export function ScreenVariantProvider(props: React.PropsWithChildren) {
19
+ console.warn(
20
+ "DEPRECATED: Plasmic now uses a custom hook for Screen variants, which is automatically included in your components. Please remove this provider from your code."
21
+ );
22
+ return props.children;
23
+ }
24
+
25
+ export const useScreenVariants = p.createUseScreenVariants(true, {
26
+ desktopOnly: "(min-width:768px)",
27
+ });
28
+
29
+ export default ScreenContext;
30
+ /* prettier-ignore-end */