@teispace/next-maker 1.0.0 → 1.0.1
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.
- package/CHANGELOG.md +7 -0
- package/dist/index.js +118 -191
- package/dist/index.js.map +4 -4
- package/dist/src/commands/setup.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/src/services/setup/dark-theme.service.d.ts +0 -4
- package/dist/src/services/setup/dark-theme.service.d.ts.map +0 -1
- package/dist/src/services/setup/http-client.service.d.ts +0 -9
- package/dist/src/services/setup/http-client.service.d.ts.map +0 -1
- package/dist/src/services/setup/i18n.service.d.ts +0 -3
- package/dist/src/services/setup/i18n.service.d.ts.map +0 -1
- package/dist/src/services/setup/redux.service.d.ts +0 -4
- package/dist/src/services/setup/redux.service.d.ts.map +0 -1
package/dist/index.js
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import{Command as gr}from"commander";import ve from"node:path";import B from"picocolors";import $t from"ora";function q(t="",i){let e=$t({text:t,...i});return e.start(),e}import At from"enquirer";var{prompt:jt}=At,$e=async t=>{let i=await jt([{type:"input",name:"projectName",message:"What is the project name?",initial:t||"my-app",skip:!!t,validate:e=>/^[a-z0-9-_]+$/.test(e)?!0:"Project name must be lowercase and contain only alphanumeric characters, hyphens, and underscores."},{type:"input",name:"description",message:"Project description:",initial:"A Next.js application"},{type:"input",name:"author",message:"Author:",initial:"Teispace"},{type:"input",name:"version",message:"Version:",initial:"0.1.0",validate:e=>/^\d+\.\d+\.\d+$/.test(e)?!0:"Version must be a valid semantic version (x.y.z)."},{type:"input",name:"email",message:"Support email:",initial:"support@example.com",validate:e=>/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(e)?!0:"Please enter a valid email address."},{type:"select",name:"packageManager",message:"Which package manager would you like to use?",choices:["npm","yarn","pnpm","bun"],initial:1},{type:"input",name:"gitRemote",message:"GitHub repository URL (optional):",validate:e=>{if(!e)return!0;let r=/^https:\/\/github\.com\/[\w-]+\/[\w.-]+$/,s=/^git@github\.com:[\w-]+\/[\w.-]+\.git$/;return!r.test(e)&&!s.test(e)?"Please enter a valid GitHub repository URL (e.g., https://github.com/user/repo)":!0}},{type:"confirm",name:"keepTemplates",message:"Do you want to keep GitHub issue and pull request templates?",initial:!1},{type:"select",name:"httpClient",message:"Which HTTP client do you want to use?",choices:["axios","fetch","both","none"],initial:1},{type:"confirm",name:"reactSecureStorage",message:"Do you want to include react-secure-storage?",initial:!0,skip:function(){let e=this.state?.answers??this.enquirer?.answers??{};return!!(e.httpClient&&e.httpClient!=="none")}},{type:"confirm",name:"darkMode",message:"Do you want to include Dark Mode (Tailwind + next-themes)?",initial:!0},{type:"confirm",name:"redux",message:"Do you want to include Redux Toolkit?",initial:!0},{type:"confirm",name:"i18n",message:"Do you want to include Internationalization (next-intl)?",initial:!0},{type:"multiselect",name:"communityFiles",message:"Select community files to include:",choices:[{name:"CODE_OF_CONDUCT.md",value:"CODE_OF_CONDUCT.md"},{name:"CONTRIBUTING.md",value:"CONTRIBUTING.md"},{name:"SECURITY.md",value:"SECURITY.md"}],initial:[]},{type:"confirm",name:"readme",message:"Do you want to create a README.md?",initial:!0},{type:"confirm",name:"docker",message:"Do you want to include Docker configuration?",initial:!1},{type:"input",name:"containerName",message:"Docker Container Name:",initial:"next-app",skip:function(){return!(this.state?.answers??this.enquirer?.answers??{}).docker},validate:e=>/^[a-zA-Z0-9][a-zA-Z0-9_.-]*$/.test(e)?!0:"Invalid Docker container name."},{type:"input",name:"imageName",message:"Docker Image Name:",initial:"nextjs-starter",skip:function(){return!(this.state?.answers??this.enquirer?.answers??{}).docker},validate:e=>/^[a-z0-9]+(?:[._-][a-z0-9]+)*$/.test(e)?!0:"Invalid Docker image name (must be lowercase)."},{type:"input",name:"imageTag",message:"Docker Image Tag:",initial:"latest",skip:function(){return!(this.state?.answers??this.enquirer?.answers??{}).docker},validate:e=>/^[a-zA-Z0-9_][a-zA-Z0-9_.-]{0,127}$/.test(e)?!0:"Invalid Docker image tag."},{type:"confirm",name:"ci",message:"Do you want to include GitHub Actions (CI/CD)?",initial:!1},{type:"confirm",name:"preCommitHooks",message:"Do you want to setup pre-commit hooks (Husky, Commitlint, Lint-staged)?",initial:!0},{type:"confirm",name:"commitizen",message:"Do you want to setup Commitizen?",initial:!0},{type:"confirm",name:"copyEnv",message:"Want to copy .env.example to .env?",initial:!0}]);if(i.company=i.author,i.gitRemote&&!i.gitHomepage){let e=i.gitRemote.replace("git@github.com:","https://github.com/").replace(/\.git$/,"");i.gitHomepage=`${e}#readme`,i.gitIssues=`${e}/issues`}return i};import ie from"node:fs/promises";import kt from"node:path";import{existsSync as xe}from"node:fs";var y=async t=>ie.readFile(t,"utf-8"),g=async(t,i)=>{await ie.mkdir(kt.dirname(t),{recursive:!0}),await ie.writeFile(t,i,"utf-8")},P=async t=>{xe(t)&&await ie.unlink(t)},w=async t=>{xe(t)&&await ie.rm(t,{recursive:!0,force:!0})},re=async(t,i)=>{let e=await y(t),r=JSON.parse(e),s=i(r);await g(t,JSON.stringify(s,null,2))},C=t=>xe(t);import{exec as Ot}from"node:child_process";import{promisify as _t}from"node:util";var ue=_t(Ot),Ae=async(t,i)=>{try{await ue("git init",{cwd:t}),await ue("git add .",{cwd:t}),await ue('git commit -m "Initial commit from @teispace/next-maker"',{cwd:t}),i&&await ue(`git remote add origin ${i}`,{cwd:t})}catch(e){console.warn("Failed to initialize git repository",e)}};import{exec as Ft}from"node:child_process";import{promisify as Dt}from"node:util";var ye=Dt(Ft),je=async(t,i)=>{let e=`${i} install`;try{await ye(e,{cwd:t})}catch(r){throw new Error(`Failed to install dependencies with ${i}: ${r}`)}},Pe=async(t,i,e)=>{let r=i==="npm"?`${i} run ${e}`:`${i} ${e}`;try{await ye(r,{cwd:t})}catch(s){console.warn(`Warning: Failed to run script '${e}': ${s}`)}},Lt=()=>{let t=process.env.npm_config_user_agent;if(t){if(t.startsWith("yarn"))return"yarn";if(t.startsWith("pnpm"))return"pnpm";if(t.startsWith("bun"))return"bun"}return"npm"},oe=async t=>{let{existsSync:i}=await import("node:fs"),e=await import("node:path");return i(e.join(t,"pnpm-lock.yaml"))?"pnpm":i(e.join(t,"yarn.lock"))?"yarn":i(e.join(t,"bun.lockb"))?"bun":i(e.join(t,"package-lock.json"))?"npm":Lt()},ne=async(t,i,e)=>{if(e.length===0)return;let s=`${Mt(i)} ${e.join(" ")}`;try{await ye(s,{cwd:t})}catch(o){throw new Error(`Failed to install packages with ${i}: ${o}`)}},Mt=t=>{switch(t){case"npm":return"npm install";case"yarn":return"yarn add";case"pnpm":return"pnpm add";case"bun":return"bun add";default:return"npm install"}};import L from"picocolors";var Gt={reset:t=>t,red:L.red,green:L.green,yellow:L.yellow,blue:L.blue,cyan:L.cyan,magenta:L.magenta,white:L.white,gray:L.gray,bright:L.bold,dim:L.dim};function H(t,i="reset"){let e=Gt[i]??(r=>r);console.log(e(t))}function A(t){H(`\u2713 ${t}`,"green")}function z(t){H(`\u2716 ${t}`,"red")}var S=z;function D(t){H(`\u2139 ${t}`,"cyan")}function a(t){H(t)}function ke(){console.log(""),H("\u2554\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2557","cyan"),H("\u2551 \u2551","cyan"),H("\u2551 \u{1F680} Create Teispace Next.js App \u{1F680} \u2551","cyan"),H("\u2551 \u2551","cyan"),H("\u255A\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u255D","cyan"),console.log("")}function Oe(t){let{logger:i=n=>console.error(n),exitOnCancel:e=process.env.NODE_ENV!=="test"}=t??{},r=()=>{console.log(""),console.log(""),i("Setup cancelled by user"),console.log(""),e&&process.exit(0)},s=n=>{if(n!==null&&typeof n=="object"&&"code"in n&&n.code==="ERR_USE_AFTER_CLOSE"){r();return}if(n instanceof Error){i(`Uncaught exception: ${n.message}`);return}i(`Uncaught exception: ${String(n)}`)},o=n=>{if(n instanceof Error){i(`Unhandled promise rejection: ${n.message}`);return}i(`Unhandled promise rejection: ${String(n)}`)};return process.on("SIGINT",r),process.on("SIGTERM",r),process.on("uncaughtException",s),process.on("unhandledRejection",o),()=>{process.off("SIGINT",r),process.off("SIGTERM",r),process.off("uncaughtException",s),process.off("unhandledRejection",o)}}var Ut=t=>t.charAt(0).toUpperCase()+t.slice(1),_=t=>t.replace(/-([a-z])/g,(i,e)=>e.toUpperCase()),V=t=>Ut(_(t));import Ht from"ora";var d=Ht();import zt from"degit";var _e=async t=>{let i=q("Downloading template...");try{await zt("teispace/nextjs-starter",{cache:!1,force:!0,verbose:!0}).clone(t),i.succeed("Template downloaded successfully.")}catch(e){throw i.fail("Failed to download template."),e}};import Xt from"node:path";var l={NEXT_CONFIG:"next.config.ts",TAILWIND_CONFIG:"tailwind.config.ts",POSTCSS_CONFIG:"postcss.config.mjs",ESLINT_CONFIG:"eslint.config.mjs",TS_CONFIG:"tsconfig.json",PACKAGE_JSON:"package.json",ENV_EXAMPLE:".env.example",GITIGNORE:".gitignore",README:"README.md",LICENSE:"LICENSE",CHANGELOG:"CHANGELOG.md",NVM_RC:".nvmrc",NPM_RC:".npmrc",SRC:"src",APP:"src/app",COMPONENTS:"src/components",LIB:"src/lib",PROVIDERS:"src/providers",STYLES:"src/styles",TYPES:"src/types",UTILS:"src/lib/utils",HOOKS:"src/hooks",SERVICES:"src/services",STORE:"src/store",I18N:"src/i18n",GLOBALS_CSS:"src/styles/globals.css",ROOT_LAYOUT:"src/app/layout.tsx",ROOT_PAGE:"src/app/page.tsx",ROOT_PROVIDER:"src/providers/RootProvider.tsx",PROVIDERS_INDEX:"src/providers/index.ts",COMPONENTS_INDEX:"src/components/index.ts",TYPES_INDEX:"src/types/index.ts",UTILS_INDEX:"src/lib/utils/index.ts",CONFIG_INDEX:"src/lib/config/index.ts",CONSTANTS:"src/lib/config/constants.ts",APP_LOCALES:"src/lib/config/app-locales.ts",MIDDLEWARE:"src/middleware.ts",PROXY:"src/proxy.ts",I18N_TYPES:"src/types/i18n.ts",HTTP_UTILS:"src/lib/utils/http",AXIOS_CLIENT:"src/lib/utils/http/axios-client",FETCH_CLIENT:"src/lib/utils/http/fetch-client",CLIENT_UTILS:"src/lib/utils/http/client-utils.ts",APP_APIS:"src/lib/config/app-apis.ts",STORAGE_SERVICE:"src/services/storage",COUNTER_FEATURE:"src/features/counter",I18N_DIR:"src/i18n",LOCALE_DIR:"src/app/[locale]",ERRORS_DIR:"src/lib/errors",UTILITY_TYPES_DIR:"src/types/utility",COMMON_TYPES_DIR:"src/types/common",HTTP_TYPES:"src/types/common/http.types.ts",GITHUB_DIR:".github",HUSKY_DIR:".husky",STORE_PROVIDER:"src/providers/StoreProvider.tsx",THEME_PROVIDER:"src/providers/CustomThemeProvider.tsx",COUNTER_COMPONENT:"src/features/counter/components/Counter.tsx",LOCALE_PAGE:"src/app/[locale]/page.tsx",COMMITLINT_CONFIG:"commitlint.config.mjs",LINTSTAGED_RC:".lintstagedrc.mjs",CZRC:".czrc",DOCKERIGNORE:".dockerignore",DOCKERFILE:"Dockerfile",DOCKER_COMPOSE:"docker-compose.yml",GITHUB_WORKFLOWS:".github/workflows",GITHUB_ISSUE_TEMPLATE:"ISSUE_TEMPLATE",GITHUB_PR_TEMPLATE:"PULL_REQUEST_TEMPLATE.md",CODE_OF_CONDUCT:"CODE_OF_CONDUCT.md",CONTRIBUTING:"CONTRIBUTING.md",SECURITY:"SECURITY.md"};var b={REDUX_TOOLKIT:"@reduxjs/toolkit",REACT_REDUX:"react-redux",REDUX_PERSIST:"redux-persist",REACT_SECURE_STORAGE:"react-secure-storage",NEXT_INTL:"next-intl",NEXT_THEMES:"next-themes",AXIOS:"axios",HUSKY:"husky",COMMITLINT_CLI:"@commitlint/cli",COMMITLINT_CONFIG:"@commitlint/config-conventional",LINT_STAGED:"lint-staged",COMMITIZEN:"commitizen",CZ_CONVENTIONAL_CHANGELOG:"cz-conventional-changelog"};var Fe=async(t,i)=>{let e=q("Configuring package.json...");try{let r=i.gitRemote,s=i.gitHomepage,o=i.gitIssues;i.gitRemote&&(i.gitRemote.startsWith("git@github.com:")&&(r=i.gitRemote.replace("git@github.com:","https://github.com/").replace(/\.git$/,"")),s||(s=`${r.replace(/\.git$/,"")}#readme`),o||(o=`${r.replace(/\.git$/,"")}/issues`),r.endsWith(".git")||(r=`${r}.git`)),await re(Xt.join(t,l.PACKAGE_JSON),n=>(n.name=i.projectName,n.version=i.version,n.description=i.description,n.author=i.author,delete n.packageManager,i.gitRemote?(s&&(n.homepage=s),o&&(n.bugs={url:o}),r&&(n.repository={type:"git",url:r})):(delete n.homepage,delete n.bugs,delete n.repository),i.redux||(delete n.dependencies[b.REDUX_TOOLKIT],delete n.dependencies[b.REACT_REDUX],delete n.dependencies[b.REDUX_PERSIST]),i.httpClient!=="none"||i.reactSecureStorage||delete n.dependencies[b.REACT_SECURE_STORAGE],i.i18n||delete n.dependencies[b.NEXT_INTL],i.darkMode||delete n.dependencies[b.NEXT_THEMES],i.httpClient==="none"?delete n.dependencies[b.AXIOS]:i.httpClient==="fetch"&&delete n.dependencies[b.AXIOS],n)),e.succeed("package.json configured.")}catch(r){throw e.fail("Failed to configure package.json."),r}};import u from"node:path";var De=async(t,i)=>{let e=q("Customizing features...");try{await Wt(t,i),await Yt(t,i),await qt(t,i),await Vt(t,i),await Bt(t,i),await Kt(t),await Jt(t),await Zt(t),e.succeed("Features customized.")}catch(r){throw e.fail("Failed to customize features."),r}},Wt=async(t,i)=>{let e=u.join(t,l.HTTP_UTILS),r=i.httpClient!=="none"||i.reactSecureStorage;if(i.httpClient==="none"){if(await w(u.join(t,l.AXIOS_CLIENT)),await w(u.join(t,l.FETCH_CLIENT)),r)await g(u.join(e,"index.ts"),`export * from './token-store';
|
|
3
|
-
`),await
|
|
4
|
-
${
|
|
2
|
+
import{Command as Vt}from"commander";import re from"node:path";import L from"picocolors";import Ue from"ora";function k(t="",e){let i=Ue({text:t,...e});return i.start(),i}import He from"enquirer";var{prompt:ze}=He,ae=async t=>{let e=await ze([{type:"input",name:"projectName",message:"What is the project name?",initial:t||"my-app",skip:!!t,validate:i=>/^[a-z0-9-_]+$/.test(i)?!0:"Project name must be lowercase and contain only alphanumeric characters, hyphens, and underscores."},{type:"input",name:"description",message:"Project description:",initial:"A Next.js application"},{type:"input",name:"author",message:"Author:",initial:"Teispace"},{type:"input",name:"version",message:"Version:",initial:"0.1.0",validate:i=>/^\d+\.\d+\.\d+$/.test(i)?!0:"Version must be a valid semantic version (x.y.z)."},{type:"input",name:"email",message:"Support email:",initial:"support@example.com",validate:i=>/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(i)?!0:"Please enter a valid email address."},{type:"select",name:"packageManager",message:"Which package manager would you like to use?",choices:["npm","yarn","pnpm","bun"],initial:1},{type:"input",name:"gitRemote",message:"GitHub repository URL (optional):",validate:i=>{if(!i)return!0;let n=/^https:\/\/github\.com\/[\w-]+\/[\w.-]+$/,s=/^git@github\.com:[\w-]+\/[\w.-]+\.git$/;return!n.test(i)&&!s.test(i)?"Please enter a valid GitHub repository URL (e.g., https://github.com/user/repo)":!0}},{type:"confirm",name:"keepTemplates",message:"Do you want to keep GitHub issue and pull request templates?",initial:!1},{type:"select",name:"httpClient",message:"Which HTTP client do you want to use?",choices:["axios","fetch","both","none"],initial:1},{type:"confirm",name:"reactSecureStorage",message:"Do you want to include react-secure-storage?",initial:!0,skip:function(){let i=this.state?.answers??this.enquirer?.answers??{};return!!(i.httpClient&&i.httpClient!=="none")}},{type:"confirm",name:"darkMode",message:"Do you want to include Dark Mode (Tailwind + next-themes)?",initial:!0},{type:"confirm",name:"redux",message:"Do you want to include Redux Toolkit?",initial:!0},{type:"confirm",name:"i18n",message:"Do you want to include Internationalization (next-intl)?",initial:!0},{type:"multiselect",name:"communityFiles",message:"Select community files to include:",choices:[{name:"CODE_OF_CONDUCT.md",value:"CODE_OF_CONDUCT.md"},{name:"CONTRIBUTING.md",value:"CONTRIBUTING.md"},{name:"SECURITY.md",value:"SECURITY.md"}],initial:[]},{type:"confirm",name:"readme",message:"Do you want to create a README.md?",initial:!0},{type:"confirm",name:"docker",message:"Do you want to include Docker configuration?",initial:!1},{type:"input",name:"containerName",message:"Docker Container Name:",initial:"next-app",skip:function(){return!(this.state?.answers??this.enquirer?.answers??{}).docker},validate:i=>/^[a-zA-Z0-9][a-zA-Z0-9_.-]*$/.test(i)?!0:"Invalid Docker container name."},{type:"input",name:"imageName",message:"Docker Image Name:",initial:"nextjs-starter",skip:function(){return!(this.state?.answers??this.enquirer?.answers??{}).docker},validate:i=>/^[a-z0-9]+(?:[._-][a-z0-9]+)*$/.test(i)?!0:"Invalid Docker image name (must be lowercase)."},{type:"input",name:"imageTag",message:"Docker Image Tag:",initial:"latest",skip:function(){return!(this.state?.answers??this.enquirer?.answers??{}).docker},validate:i=>/^[a-zA-Z0-9_][a-zA-Z0-9_.-]{0,127}$/.test(i)?!0:"Invalid Docker image tag."},{type:"confirm",name:"ci",message:"Do you want to include GitHub Actions (CI/CD)?",initial:!1},{type:"confirm",name:"preCommitHooks",message:"Do you want to setup pre-commit hooks (Husky, Commitlint, Lint-staged)?",initial:!0},{type:"confirm",name:"commitizen",message:"Do you want to setup Commitizen?",initial:!0},{type:"confirm",name:"copyEnv",message:"Want to copy .env.example to .env?",initial:!0}]);if(e.company=e.author,e.gitRemote&&!e.gitHomepage){let i=e.gitRemote.replace("git@github.com:","https://github.com/").replace(/\.git$/,"");e.gitHomepage=`${i}#readme`,e.gitIssues=`${i}/issues`}return e};import X from"node:fs/promises";import Xe from"node:path";import{existsSync as ee}from"node:fs";var g=async t=>X.readFile(t,"utf-8"),u=async(t,e)=>{await X.mkdir(Xe.dirname(t),{recursive:!0}),await X.writeFile(t,e,"utf-8")},h=async t=>{ee(t)&&await X.unlink(t)},y=async t=>{ee(t)&&await X.rm(t,{recursive:!0,force:!0})},Y=async(t,e)=>{let i=await g(t),n=JSON.parse(i),s=e(n);await u(t,JSON.stringify(s,null,2))},x=t=>ee(t);import{exec as Ye}from"node:child_process";import{promisify as We}from"node:util";var J=We(Ye),ce=async(t,e)=>{try{await J("git init",{cwd:t}),await J("git add .",{cwd:t}),await J('git commit -m "Initial commit from @teispace/next-maker"',{cwd:t}),e&&await J(`git remote add origin ${e}`,{cwd:t})}catch(i){console.warn("Failed to initialize git repository",i)}};import{exec as Ke}from"node:child_process";import{promisify as Ve}from"node:util";var pe=Ve(Ke),le=async(t,e)=>{let i=`${e} install`;try{await pe(i,{cwd:t})}catch(n){throw new Error(`Failed to install dependencies with ${e}: ${n}`)}},te=async(t,e,i)=>{let n=e==="npm"?`${e} run ${i}`:`${e} ${i}`;try{await pe(n,{cwd:t})}catch(s){console.warn(`Warning: Failed to run script '${i}': ${s}`)}};import A from"picocolors";var Be={reset:t=>t,red:A.red,green:A.green,yellow:A.yellow,blue:A.blue,cyan:A.cyan,magenta:A.magenta,white:A.white,gray:A.gray,bright:A.bold,dim:A.dim};function U(t,e="reset"){let i=Be[e]??(n=>n);console.log(i(t))}function q(t){U(`\u2716 ${t}`,"red")}var C=q;function c(t){U(t)}function me(){console.log(""),U("\u2554\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2557","cyan"),U("\u2551 \u2551","cyan"),U("\u2551 \u{1F680} Create Teispace Next.js App \u{1F680} \u2551","cyan"),U("\u2551 \u2551","cyan"),U("\u255A\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u255D","cyan"),console.log("")}function de(t){let{logger:e=o=>console.error(o),exitOnCancel:i=process.env.NODE_ENV!=="test"}=t??{},n=()=>{console.log(""),console.log(""),e("Setup cancelled by user"),console.log(""),i&&process.exit(0)},s=o=>{if(o!==null&&typeof o=="object"&&"code"in o&&o.code==="ERR_USE_AFTER_CLOSE"){n();return}if(o instanceof Error){e(`Uncaught exception: ${o.message}`);return}e(`Uncaught exception: ${String(o)}`)},r=o=>{if(o instanceof Error){e(`Unhandled promise rejection: ${o.message}`);return}e(`Unhandled promise rejection: ${String(o)}`)};return process.on("SIGINT",n),process.on("SIGTERM",n),process.on("uncaughtException",s),process.on("unhandledRejection",r),()=>{process.off("SIGINT",n),process.off("SIGTERM",n),process.off("uncaughtException",s),process.off("unhandledRejection",r)}}var Je=t=>t.charAt(0).toUpperCase()+t.slice(1),b=t=>t.replace(/-([a-z])/g,(e,i)=>i.toUpperCase()),G=t=>Je(b(t));import qe from"ora";var f=qe();import Ze from"degit";var ue=async t=>{let e=k("Downloading template...");try{await Ze("teispace/nextjs-starter",{cache:!1,force:!0,verbose:!0}).clone(t),e.succeed("Template downloaded successfully.")}catch(i){throw e.fail("Failed to download template."),i}};import Qe from"node:path";var a={NEXT_CONFIG:"next.config.ts",TAILWIND_CONFIG:"tailwind.config.ts",POSTCSS_CONFIG:"postcss.config.mjs",ESLINT_CONFIG:"eslint.config.mjs",TS_CONFIG:"tsconfig.json",PACKAGE_JSON:"package.json",ENV_EXAMPLE:".env.example",GITIGNORE:".gitignore",README:"README.md",LICENSE:"LICENSE",CHANGELOG:"CHANGELOG.md",NVM_RC:".nvmrc",NPM_RC:".npmrc",SRC:"src",APP:"src/app",COMPONENTS:"src/components",LIB:"src/lib",PROVIDERS:"src/providers",STYLES:"src/styles",TYPES:"src/types",UTILS:"src/lib/utils",HOOKS:"src/hooks",SERVICES:"src/services",STORE:"src/store",I18N:"src/i18n",GLOBALS_CSS:"src/styles/globals.css",ROOT_LAYOUT:"src/app/layout.tsx",ROOT_PAGE:"src/app/page.tsx",ROOT_PROVIDER:"src/providers/RootProvider.tsx",PROVIDERS_INDEX:"src/providers/index.ts",COMPONENTS_INDEX:"src/components/index.ts",TYPES_INDEX:"src/types/index.ts",UTILS_INDEX:"src/lib/utils/index.ts",CONFIG_INDEX:"src/lib/config/index.ts",CONSTANTS:"src/lib/config/constants.ts",APP_LOCALES:"src/lib/config/app-locales.ts",MIDDLEWARE:"src/middleware.ts",PROXY:"src/proxy.ts",I18N_TYPES:"src/types/i18n.ts",HTTP_UTILS:"src/lib/utils/http",AXIOS_CLIENT:"src/lib/utils/http/axios-client",FETCH_CLIENT:"src/lib/utils/http/fetch-client",CLIENT_UTILS:"src/lib/utils/http/client-utils.ts",APP_APIS:"src/lib/config/app-apis.ts",STORAGE_SERVICE:"src/services/storage",COUNTER_FEATURE:"src/features/counter",I18N_DIR:"src/i18n",LOCALE_DIR:"src/app/[locale]",ERRORS_DIR:"src/lib/errors",UTILITY_TYPES_DIR:"src/types/utility",COMMON_TYPES_DIR:"src/types/common",HTTP_TYPES:"src/types/common/http.types.ts",GITHUB_DIR:".github",HUSKY_DIR:".husky",STORE_PROVIDER:"src/providers/StoreProvider.tsx",THEME_PROVIDER:"src/providers/CustomThemeProvider.tsx",COUNTER_COMPONENT:"src/features/counter/components/Counter.tsx",LOCALE_PAGE:"src/app/[locale]/page.tsx",COMMITLINT_CONFIG:"commitlint.config.mjs",LINTSTAGED_RC:".lintstagedrc.mjs",CZRC:".czrc",DOCKERIGNORE:".dockerignore",DOCKERFILE:"Dockerfile",DOCKER_COMPOSE:"docker-compose.yml",GITHUB_WORKFLOWS:".github/workflows",GITHUB_ISSUE_TEMPLATE:"ISSUE_TEMPLATE",GITHUB_PR_TEMPLATE:"PULL_REQUEST_TEMPLATE.md",CODE_OF_CONDUCT:"CODE_OF_CONDUCT.md",CONTRIBUTING:"CONTRIBUTING.md",SECURITY:"SECURITY.md"};var w={REDUX_TOOLKIT:"@reduxjs/toolkit",REACT_REDUX:"react-redux",REDUX_PERSIST:"redux-persist",REACT_SECURE_STORAGE:"react-secure-storage",NEXT_INTL:"next-intl",NEXT_THEMES:"next-themes",AXIOS:"axios",HUSKY:"husky",COMMITLINT_CLI:"@commitlint/cli",COMMITLINT_CONFIG:"@commitlint/config-conventional",LINT_STAGED:"lint-staged",COMMITIZEN:"commitizen",CZ_CONVENTIONAL_CHANGELOG:"cz-conventional-changelog"};var fe=async(t,e)=>{let i=k("Configuring package.json...");try{let n=e.gitRemote,s=e.gitHomepage,r=e.gitIssues;e.gitRemote&&(e.gitRemote.startsWith("git@github.com:")&&(n=e.gitRemote.replace("git@github.com:","https://github.com/").replace(/\.git$/,"")),s||(s=`${n.replace(/\.git$/,"")}#readme`),r||(r=`${n.replace(/\.git$/,"")}/issues`),n.endsWith(".git")||(n=`${n}.git`)),await Y(Qe.join(t,a.PACKAGE_JSON),o=>(o.name=e.projectName,o.version=e.version,o.description=e.description,o.author=e.author,delete o.packageManager,e.gitRemote?(s&&(o.homepage=s),r&&(o.bugs={url:r}),n&&(o.repository={type:"git",url:n})):(delete o.homepage,delete o.bugs,delete o.repository),e.redux||(delete o.dependencies[w.REDUX_TOOLKIT],delete o.dependencies[w.REACT_REDUX],delete o.dependencies[w.REDUX_PERSIST]),e.httpClient!=="none"||e.reactSecureStorage||delete o.dependencies[w.REACT_SECURE_STORAGE],e.i18n||delete o.dependencies[w.NEXT_INTL],e.darkMode||delete o.dependencies[w.NEXT_THEMES],e.httpClient==="none"?delete o.dependencies[w.AXIOS]:e.httpClient==="fetch"&&delete o.dependencies[w.AXIOS],o)),i.succeed("package.json configured.")}catch(n){throw i.fail("Failed to configure package.json."),n}};import l from"node:path";var ge=async(t,e)=>{let i=k("Customizing features...");try{await et(t,e),await tt(t,e),await it(t,e),await rt(t,e),await ot(t,e),await nt(t),await st(t),await at(t),i.succeed("Features customized.")}catch(n){throw i.fail("Failed to customize features."),n}},et=async(t,e)=>{let i=l.join(t,a.HTTP_UTILS),n=e.httpClient!=="none"||e.reactSecureStorage;if(e.httpClient==="none"){if(await y(l.join(t,a.AXIOS_CLIENT)),await y(l.join(t,a.FETCH_CLIENT)),n)await u(l.join(i,"index.ts"),`export * from './token-store';
|
|
3
|
+
`),await h(l.join(t,a.CLIENT_UTILS));else{await y(i);let r=l.join(t,a.UTILS_INDEX);if(x(r)){let p=await g(r);p=p.replace(/export \* from '\.\/http';\n/,""),await u(r,p)}await h(l.join(t,a.APP_APIS));let o=l.join(t,a.CONFIG_INDEX);if(x(o)){let p=await g(o);p=p.replace(/export \* from '\.\/app-apis';\n/,""),await u(o,p)}}let s=l.join(t,a.CONSTANTS);if(x(s)){let r=await g(s);r=r.replace(/export const API_RESPONSE_DATA_KEY = 'data';\n/,""),r=r.replace(/export const SAVE_AUTH_TOKENS = false;\n/,""),await u(s,r)}if(await y(l.join(t,a.ERRORS_DIR)),!n){await y(l.join(t,a.COMMON_TYPES_DIR)),await y(l.join(t,a.UTILITY_TYPES_DIR));let r=l.join(t,a.TYPES_INDEX);if(x(r)){let o=await g(r);o=o.replace(/export \* from '\.\/utility';\n/,""),o=o.replace(/export \* from '\.\/common';\n/,""),await u(r,o)}}}else if(e.httpClient==="axios"){await y(l.join(t,a.FETCH_CLIENT));let s=await g(l.join(i,"index.ts"));s=s.replace(/export .* from '\.\/fetch-client';\n/g,""),await u(l.join(i,"index.ts"),s);let r=l.join(t,a.HTTP_TYPES);if(x(r)){let o=await g(r);o=o.replace(/export interface FetchClientOptions \{[\s\S]*?\}\n\n/,""),o=o.replace(/export interface ExtendedRequestInit extends RequestInit \{[\s\S]*?\}\n\n/,""),await u(r,o)}}else if(e.httpClient==="fetch"){await y(l.join(t,a.AXIOS_CLIENT));let s=await g(l.join(i,"index.ts"));s=s.replace(/export .* from '\.\/axios-client';\n/g,""),await u(l.join(i,"index.ts"),s);let r=l.join(t,a.HTTP_TYPES);if(x(r)){let o=await g(r);o=o.replace(/declare module 'axios' \{[\s\S]*?\}\n\n/,""),o=o.replace(/export interface AxiosClientOptions \{[\s\S]*?\}\n\n/,""),await u(r,o)}}},tt=async(t,e)=>{e.httpClient!=="none"||e.reactSecureStorage||await y(l.join(t,a.STORAGE_SERVICE))},it=async(t,e)=>{if(!e.redux){await y(l.join(t,a.STORE)),await y(l.join(t,a.COUNTER_FEATURE)),await h(l.join(t,a.STORE_PROVIDER));let i=l.join(t,a.PROVIDERS_INDEX),n=await g(i);n=n.replace(/export \* from '\.\/StoreProvider';\n/,""),await u(i,n);let s=[l.join(t,a.ROOT_PAGE),l.join(t,a.LOCALE_PAGE)];for(let r of s)if(x(r)){let o=await g(r);o=o.replace(/import\s+\{\s*Counter\s*\}\s+from\s+['"]@\/features\/counter['"];\n?/,""),o=o.replace(/<Counter\s*\/>\n?/g,""),await u(r,o)}}},rt=async(t,e)=>{if(!e.darkMode){await h(l.join(t,a.THEME_PROVIDER));let i=l.join(t,a.PROVIDERS_INDEX),n=await g(i);n=n.replace(/export \* from '\.\/CustomThemeProvider';\n/,""),await u(i,n);let s=l.join(t,a.GLOBALS_CSS);if(x(s)){let r=await g(s);r=r.replace(/@custom-variant dark \(.*?\);\n\n/,""),r=r.replace(/@theme \{[\s\S]*?\}\n/,""),await u(s,r)}if(!e.i18n){let r=l.join(t,a.ROOT_LAYOUT);if(x(r)){let o=await g(r);o=o.replace(/bg-light dark:bg-dark /g,""),await u(r,o)}}}},ot=async(t,e)=>{if(!e.i18n){await y(l.join(t,a.I18N_DIR)),await y(l.join(t,a.LOCALE_DIR)),await h(l.join(t,a.PROXY)),await h(l.join(t,a.MIDDLEWARE)),await h(l.join(t,a.I18N_TYPES)),await h(l.join(t,a.APP_LOCALES));let i=l.join(t,a.TYPES_INDEX);if(x(i)){let o=await g(i);o=o.replace(/export \* from '\.\/i18n';\n/,""),await u(i,o)}let n=l.join(t,a.CONFIG_INDEX);if(x(n)){let o=await g(n);o=o.replace(/export \* from '\.\/app-locales';\n/,""),await u(n,o)}let s=l.join(t,a.NEXT_CONFIG);if(x(s)){let o=await g(s);o=o.replace(/import createNextIntlPlugin from 'next-intl\/plugin';\n/,""),o=o.replace(/const withNextIntl = createNextIntlPlugin\(\);\n/,""),o=o.replace(/export default withNextIntl\(nextConfig\);/,"export default nextConfig;"),await u(s,o)}let r=l.join(t,a.COUNTER_COMPONENT);if(x(r)){let o=await g(r);o=o.replace(/import\s+\{\s*useTranslations\s*\}\s+from\s+['"]next-intl['"];\n/,""),o=o.replace(/\s*const\s+t\s*=\s*useTranslations\(['"]Count['"]\);\n/,""),o=o.replace(/\{t\('currentCount',\s*\{\s*count:\s*value\s*\}\)\}/g,"{value}"),o=o.replace(/\{t\(['"]increment['"]\)\}/g,"Increment"),o=o.replace(/\{t\(['"]decrement['"]\)\}/g,"Decrement"),o=o.replace(/\{t\(['"]reset['"]\)\}/g,"Reset"),await u(r,o)}}},nt=async t=>{await h(l.join(t,a.LICENSE))},st=async t=>{await h(l.join(t,a.CHANGELOG))},at=async t=>{await h(l.join(t,a.NVM_RC)),await h(l.join(t,a.NPM_RC))};import ie from"node:path";var he=async(t,e)=>{let i=[],n=[];e.redux&&(i.push("import { StoreProvider } from '@/providers';"),n.push("StoreProvider")),e.darkMode&&(i.push("import { CustomThemeProvider } from '@/providers';"),n.push("CustomThemeProvider")),e.i18n&&(i.push("import { NextIntlClientProvider, AbstractIntlMessages } from 'next-intl';"),i.push("import { SupportedLocale } from '@/types/i18n';"));let s=`'use client';
|
|
4
|
+
${i.join(`
|
|
5
5
|
`)}
|
|
6
6
|
|
|
7
7
|
export const RootProvider = ({
|
|
8
8
|
children,
|
|
9
|
-
${
|
|
9
|
+
${e.i18n?`locale,
|
|
10
10
|
messages,`:""}
|
|
11
11
|
}: {
|
|
12
12
|
children: React.ReactNode;
|
|
13
|
-
${
|
|
13
|
+
${e.i18n?`locale: SupportedLocale;
|
|
14
14
|
messages: AbstractIntlMessages;`:""}
|
|
15
15
|
}) => {
|
|
16
16
|
return (
|
|
17
|
-
`,
|
|
18
|
-
${
|
|
19
|
-
</NextIntlClientProvider>`),
|
|
20
|
-
${
|
|
21
|
-
</CustomThemeProvider>`),
|
|
22
|
-
${
|
|
23
|
-
</StoreProvider>`),
|
|
17
|
+
`,r="{children}";e.i18n&&(r=`<NextIntlClientProvider locale={locale} messages={messages}>
|
|
18
|
+
${r}
|
|
19
|
+
</NextIntlClientProvider>`),e.darkMode&&(r=`<CustomThemeProvider>
|
|
20
|
+
${r}
|
|
21
|
+
</CustomThemeProvider>`),e.redux&&(r=`<StoreProvider>
|
|
22
|
+
${r}
|
|
23
|
+
</StoreProvider>`),r==="{children}"&&(r="<>{children}</>"),s+=` ${r}
|
|
24
24
|
);
|
|
25
25
|
};
|
|
26
|
-
`,await
|
|
26
|
+
`,await u(ie.join(t,a.ROOT_PROVIDER),s)},xe=async(t,e)=>{if(!e.i18n){let i=`import type { Metadata } from 'next';
|
|
27
27
|
import '@/styles/globals.css';
|
|
28
28
|
import { Livvic } from 'next/font/google';
|
|
29
29
|
import { RootProvider } from '@/providers';
|
|
@@ -36,8 +36,8 @@ const livvic = Livvic({
|
|
|
36
36
|
});
|
|
37
37
|
|
|
38
38
|
export const metadata: Metadata = {
|
|
39
|
-
title: '${
|
|
40
|
-
description: '${
|
|
39
|
+
title: '${e.projectName}',
|
|
40
|
+
description: '${e.description}',
|
|
41
41
|
};
|
|
42
42
|
|
|
43
43
|
export default function RootLayout({
|
|
@@ -46,8 +46,8 @@ export default function RootLayout({
|
|
|
46
46
|
children: React.ReactNode;
|
|
47
47
|
}>) {
|
|
48
48
|
return (
|
|
49
|
-
<html lang="en" suppressHydrationWarning={${
|
|
50
|
-
<body className={\`\${livvic.variable} ${
|
|
49
|
+
<html lang="en" suppressHydrationWarning={${e.darkMode?"true":"false"}}>
|
|
50
|
+
<body className={\`\${livvic.variable} ${e.darkMode?"bg-light dark:bg-dark ":""}antialiased\`}>
|
|
51
51
|
<RootProvider>
|
|
52
52
|
{children}
|
|
53
53
|
</RootProvider>
|
|
@@ -55,53 +55,53 @@ export default function RootLayout({
|
|
|
55
55
|
</html>
|
|
56
56
|
);
|
|
57
57
|
}
|
|
58
|
-
`;await
|
|
58
|
+
`;await u(ie.join(t,a.ROOT_LAYOUT),i);let n=e.redux?`import { Counter } from '@/features/counter';
|
|
59
59
|
|
|
60
|
-
`:"",s=
|
|
61
|
-
<Counter />`:"",
|
|
60
|
+
`:"",s=e.redux?`
|
|
61
|
+
<Counter />`:"",r=`${n}export default function Home() {
|
|
62
62
|
return (
|
|
63
63
|
<div className="flex min-h-screen flex-col items-center justify-center p-24">
|
|
64
|
-
<h1 className="text-4xl font-bold">Welcome to ${
|
|
64
|
+
<h1 className="text-4xl font-bold">Welcome to ${e.projectName}</h1>
|
|
65
65
|
<p className="mt-4 text-xl">Get started by editing src/app/page.tsx</p>${s}
|
|
66
66
|
</div>
|
|
67
67
|
);
|
|
68
68
|
}
|
|
69
|
-
`;await
|
|
70
|
-
`};s("CONTAINER_NAME",
|
|
69
|
+
`;await u(ie.join(t,a.ROOT_PAGE),r)}};import S from"node:path";import{readdir as Se}from"node:fs/promises";var ye=async(t,e)=>{await ct(t,e),await pt(t,e),await lt(t,e),await mt(t,e),await dt(t,e),await ut(t,e),await ft(t,e)},ct=async(t,e)=>{e.preCommitHooks||(await y(S.join(t,a.HUSKY_DIR)),await h(S.join(t,a.COMMITLINT_CONFIG)),await h(S.join(t,a.LINTSTAGED_RC)),await Y(S.join(t,a.PACKAGE_JSON),i=>(delete i.devDependencies[w.HUSKY],delete i.devDependencies[w.COMMITLINT_CLI],delete i.devDependencies[w.COMMITLINT_CONFIG],delete i.devDependencies[w.LINT_STAGED],delete i.scripts.prepare,delete i.scripts.postinstall,delete i.commitlint,delete i["lint-staged"],i)))},pt=async(t,e)=>{e.commitizen||(await h(S.join(t,a.CZRC)),await Y(S.join(t,a.PACKAGE_JSON),i=>(delete i.devDependencies[w.COMMITIZEN],delete i.devDependencies[w.CZ_CONVENTIONAL_CHANGELOG],delete i.config?.commitizen,i.config&&Object.keys(i.config).length===0&&delete i.config,delete i.scripts.commit,i)))},lt=async(t,e)=>{e.ci||await y(S.join(t,a.GITHUB_WORKFLOWS))},mt=async(t,e)=>{let i=S.join(t,a.GITHUB_DIR);if(!e.keepTemplates)await y(S.join(i,a.GITHUB_ISSUE_TEMPLATE)),await h(S.join(i,a.GITHUB_PR_TEMPLATE));else{let n=S.join(i,a.GITHUB_ISSUE_TEMPLATE),s=S.join(i,a.GITHUB_PR_TEMPLATE),r=o=>o.replace(/Teispace/g,e.company).replace(/support@teispace\.com/g,e.email).replace(/Next\.js Starter/g,e.projectName).replace(/\[AUTHOR\]/g,e.author).replace(/\[COMPANY\]/g,e.company).replace(/\[EMAIL\]/g,e.email);if(x(s)){let o=await g(s);o=r(o),await u(s,o)}try{if(x(n)){let o=await Se(n);for(let p of o){let m=S.join(n,p),d=await g(m);d=r(d),await u(m,d)}}}catch{}}},dt=async(t,e)=>{let i=[a.CODE_OF_CONDUCT,a.CONTRIBUTING,a.SECURITY];for(let n of i)e.communityFiles.includes(n)||await h(S.join(t,n))},ut=async(t,e)=>{if(e.docker){let i=S.join(t,a.ENV_EXAMPLE);if(x(i)){let n=await g(i),s=(r,o)=>{let p=new RegExp(`${r}=.*`);p.test(n)?n=n.replace(p,`${r}=${o}`):n+=`${r}=${o}
|
|
70
|
+
`};s("CONTAINER_NAME",e.containerName||"next-app"),s("IMAGE_NAME",e.imageName||"nextjs-starter"),s("IMAGE_TAG",e.imageTag||"latest"),await u(i,n)}}else{await h(S.join(t,a.DOCKERFILE)),await h(S.join(t,a.DOCKER_COMPOSE)),await h(S.join(t,a.DOCKERIGNORE));let i=S.join(t,a.ENV_EXAMPLE);if(x(i)){let n=await g(i);n=n.replace(/# Docker Compose Configuration\n/,""),n=n.replace(/CONTAINER_NAME=.*\n/,""),n=n.replace(/IMAGE_NAME=.*\n/,""),n=n.replace(/IMAGE_TAG=.*\n/,""),await u(i,n)}}},ft=async(t,e)=>{let i=async r=>{let o=await Se(r,{withFileTypes:!0}),p=[];for(let m of o){let d=S.join(r,m.name);m.isDirectory()&&m.name!=="node_modules"&&m.name!==".git"?p.push(...await i(d)):m.isFile()&&m.name.toLowerCase()==="readme.md"&&p.push(d)}return p},n=await i(t),s=S.join(t,a.README);for(let r of n)r!==s&&await h(r);if(e.readme){let r=`# ${e.projectName}
|
|
71
71
|
|
|
72
|
-
${
|
|
72
|
+
${e.description}
|
|
73
73
|
|
|
74
74
|
## Getting Started
|
|
75
75
|
|
|
76
76
|
First, run the development server:
|
|
77
77
|
|
|
78
78
|
\`\`\`bash
|
|
79
|
-
${
|
|
79
|
+
${e.packageManager==="npm"?"npm run dev":e.packageManager+" dev"}
|
|
80
80
|
\`\`\`
|
|
81
81
|
|
|
82
82
|
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
|
83
|
-
`;await
|
|
84
|
-
Cleaning up: Deleting directory ${
|
|
85
|
-
Process interrupted. Cleaning up...`)),await s(),process.exit(1)};process.on("SIGINT",
|
|
83
|
+
`;await u(s,r)}else await h(s)};var Ce=t=>{t.command("init").description("Initialize a new Next.js project").argument("[name]","Project name").action(async e=>{await gt(e)})},gt=async t=>{me(),c("Welcome to the Teispace Next.js App Creator!"),c("");let e=await ae(t),i=re.resolve(process.cwd(),e.projectName);x(i)&&(console.error(L.red(`Error: Directory ${e.projectName} already exists.`)),process.exit(1));let n=k("Initializing project..."),s=async()=>{if(x(i)){n.stop(),console.log(L.yellow(`
|
|
84
|
+
Cleaning up: Deleting directory ${e.projectName}...`));try{await y(i),console.log(L.green("Cleanup successful."))}catch(o){console.error(L.red(`Failed to clean up directory ${e.projectName}:`),o)}}},r=async()=>{console.log(L.red(`
|
|
85
|
+
Process interrupted. Cleaning up...`)),await s(),process.exit(1)};process.on("SIGINT",r),process.on("SIGTERM",r);try{if(await ue(i),await fe(i,e),await ge(i,e),n.text="Generating code...",await he(i,e),await xe(i,e),n.text="Setting up developer tools...",await ye(i,e),n.text="Initializing Git...",await ce(i,e.gitRemote),n.text="Installing dependencies...",await le(i,e.packageManager),n.text="Formatting and Linting...",await te(i,e.packageManager,"format"),await te(i,e.packageManager,"lint:fix"),e.copyEnv){n.text="Creating .env file...";let o=re.join(i,".env.example"),p=re.join(i,".env");x(o)&&await(await import("node:fs/promises")).copyFile(o,p)}process.off("SIGINT",r),process.off("SIGTERM",r),n.succeed(L.green(`Project ${e.projectName} created successfully!`)),c(""),c("To get started:"),c(L.cyan(` cd ${e.projectName}`)),c(L.cyan(` ${e.packageManager==="npm"?"npm run dev":e.packageManager+" dev"}`)),c("")}catch(o){n.fail("Failed to create project."),console.error(o),await s(),process.exit(1)}};import v from"picocolors";import se from"node:path";import ht from"enquirer";var{prompt:xt}=ht,Pe=async(t,e,i,n,s,r,o)=>{let p=[];t||p.push({type:"input",name:"featureName",message:"What is the feature name?",initial:"my-feature",validate:d=>/^[a-z0-9-]+$/.test(d)?!0:"Feature name must be lowercase and contain only alphanumeric characters and hyphens."}),e&&n===void 0&&s===void 0&&(p.push({type:"confirm",name:"createStore",message:"Generate Redux store for this feature?",initial:!0}),p.push({type:"confirm",name:"persistStore",message:"Enable persistence for this store?",initial:!1,skip(){return!this.state.answers.createStore}})),i&&i!=="none"&&r===void 0&&o===void 0&&(p.push({type:"confirm",name:"createService",message:"Generate API service for this feature?",initial:!0}),i==="both"&&p.push({type:"select",name:"selectedHttpClient",message:"Which HTTP client to use for the service?",choices:["fetch","axios"],initial:0,skip(){return!this.state.answers.createService}}));let m=p.length>0?await xt(p):{};return{featureName:t||m.featureName,hasRedux:e||!1,createStore:n===!0?!1:s!==void 0?!0:m.createStore||!1,persistStore:s==="persist"?!0:s==="no-persist"?!1:m.persistStore||!1,httpClient:i||"none",createService:r===!0?!1:o!==void 0?!0:m.createService||!1,selectedHttpClient:o||m.selectedHttpClient||(i==="both"?"fetch":i!=="none"?i:void 0)}};import{readFile as St,access as oe}from"node:fs/promises";import W from"node:path";var z=async t=>{let e=!1,i=!1,n=!1,s=!1;try{let r=W.join(t,"package.json"),o=await St(r,"utf-8"),p=JSON.parse(o),m={...p.dependencies,...p.devDependencies};e=!!(m["@reduxjs/toolkit"]&&m["react-redux"]),i=!!m.axios,s=!!m["next-intl"];let d=W.join(t,"src","lib","utils","http","axios-client");try{await oe(d),i=i&&!0}catch{i=!1}let R=W.join(t,"src","lib","utils","http","fetch-client");try{await oe(R),n=!0}catch{n=!1}let P;return i&&n?P="both":i?P="axios":n?P="fetch":P="none",{hasRedux:e,httpClient:P,hasI18n:s}}catch(r){throw new Error(`Failed to detect project setup: ${r}`)}},Ee=async(t,e,i=W.join("src","features"))=>{let n=W.join(t,i,e);try{return await oe(n),!0}catch{return!1}};import{writeFile as F,mkdir as K}from"node:fs/promises";import N from"node:path";var ve=async t=>{let{featurePath:e}=t;await K(N.join(e,"components"),{recursive:!0}),await K(N.join(e,"hooks"),{recursive:!0}),await K(N.join(e,"types"),{recursive:!0}),t.createStore&&await K(N.join(e,"store"),{recursive:!0}),t.createService&&await K(N.join(e,"services"),{recursive:!0}),await yt(t),await Ct(t),await Pt(t),await Tt(t),t.createStore&&await Et(t),t.createService&&t.httpClient&&await vt(t)};var yt=async t=>{let{featureName:e,featurePath:i}=t,n=G(e),s=`use${n}`,r=`'use client';
|
|
86
86
|
import { ${s} } from '../hooks/${s}';
|
|
87
87
|
|
|
88
|
-
export function ${
|
|
88
|
+
export function ${n}() {
|
|
89
89
|
const {} = ${s}();
|
|
90
90
|
|
|
91
91
|
return (
|
|
92
92
|
<div>
|
|
93
|
-
<h2>${
|
|
93
|
+
<h2>${n} Component</h2>
|
|
94
94
|
{/* Add your component UI here */}
|
|
95
95
|
</div>
|
|
96
96
|
);
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
-
export default ${
|
|
100
|
-
`;await
|
|
99
|
+
export default ${n};
|
|
100
|
+
`;await F(N.join(i,"components",`${n}.tsx`),r)},Ct=async t=>{let{featureName:e,featurePath:i,createStore:n}=t,s=G(e),r=`use${s}`,o;n?o=`'use client';
|
|
101
101
|
import { useAppDispatch, useAppSelector } from '@/store/hooks';
|
|
102
|
-
import { select${s}State, setLoading, setError } from '../store/${
|
|
102
|
+
import { select${s}State, setLoading, setError } from '../store/${e}.selectors';
|
|
103
103
|
|
|
104
|
-
export const ${
|
|
104
|
+
export const ${r} = () => {
|
|
105
105
|
const dispatch = useAppDispatch();
|
|
106
106
|
const state = useAppSelector(select${s}State);
|
|
107
107
|
|
|
@@ -121,10 +121,10 @@ export const ${o} = () => {
|
|
|
121
121
|
setError: handleSetError,
|
|
122
122
|
} as const;
|
|
123
123
|
};
|
|
124
|
-
`:
|
|
124
|
+
`:o=`'use client';
|
|
125
125
|
import { useState } from 'react';
|
|
126
126
|
|
|
127
|
-
export const ${
|
|
127
|
+
export const ${r} = () => {
|
|
128
128
|
// Add your state and logic here
|
|
129
129
|
const [state, setState] = useState({});
|
|
130
130
|
|
|
@@ -133,13 +133,13 @@ export const ${o} = () => {
|
|
|
133
133
|
// Add your methods here
|
|
134
134
|
} as const;
|
|
135
135
|
};
|
|
136
|
-
`,await
|
|
136
|
+
`,await F(N.join(i,"hooks",`${r}.ts`),o)},Pt=async t=>{let{featureName:e,featurePath:i,createStore:n}=t,o=`export interface ${`${G(e)}State`} {
|
|
137
137
|
// Add your state properties here
|
|
138
|
-
${
|
|
138
|
+
${n?`loading: boolean;
|
|
139
139
|
error: string | null;`:"// example: value: string;"}
|
|
140
140
|
}
|
|
141
|
-
`;await
|
|
142
|
-
import { ${s}State } from '../types/${
|
|
141
|
+
`;await F(N.join(i,"types",`${e}.types.ts`),o)},Et=async t=>{let{featureName:e,featurePath:i,persistStore:n}=t,s=G(e),r=b(e),o=`import { createSlice, PayloadAction } from '@reduxjs/toolkit';
|
|
142
|
+
import { ${s}State } from '../types/${e}.types';
|
|
143
143
|
|
|
144
144
|
const initialState: ${s}State = {
|
|
145
145
|
loading: false,
|
|
@@ -147,8 +147,8 @@ const initialState: ${s}State = {
|
|
|
147
147
|
// Add your initial state here
|
|
148
148
|
};
|
|
149
149
|
|
|
150
|
-
export const ${
|
|
151
|
-
name: '${
|
|
150
|
+
export const ${r}Slice = createSlice({
|
|
151
|
+
name: '${r}',
|
|
152
152
|
initialState,
|
|
153
153
|
reducers: {
|
|
154
154
|
setLoading: (state, action: PayloadAction<boolean>) => {
|
|
@@ -164,26 +164,26 @@ export const ${o}Slice = createSlice({
|
|
|
164
164
|
},
|
|
165
165
|
});
|
|
166
166
|
|
|
167
|
-
export const { setLoading, setError, resetState } = ${
|
|
167
|
+
export const { setLoading, setError, resetState } = ${r}Slice.actions;
|
|
168
168
|
|
|
169
|
-
export const ${
|
|
170
|
-
`;await
|
|
169
|
+
export const ${r}Reducer = ${r}Slice.reducer;
|
|
170
|
+
`;await F(N.join(i,"store",`${e}.slice.ts`),o);let p=`import { RootState } from '@/store/rootReducer';
|
|
171
171
|
|
|
172
|
-
export const select${s}State = (state: RootState) => state.${
|
|
173
|
-
export { setLoading, setError, resetState } from './${
|
|
174
|
-
`;if(await
|
|
172
|
+
export const select${s}State = (state: RootState) => state.${r};
|
|
173
|
+
export { setLoading, setError, resetState } from './${e}.slice';
|
|
174
|
+
`;if(await F(N.join(i,"store",`${e}.selectors.ts`),p),n){let d=`import { PersistConfig } from 'redux-persist';
|
|
175
175
|
import storage from 'redux-persist/lib/storage';
|
|
176
|
-
import { ${s}State } from '../types/${
|
|
176
|
+
import { ${s}State } from '../types/${e}.types';
|
|
177
177
|
|
|
178
|
-
export const ${
|
|
179
|
-
key: '${
|
|
178
|
+
export const ${r}PersistConfig: PersistConfig<${s}State> = {
|
|
179
|
+
key: '${r}',
|
|
180
180
|
storage,
|
|
181
181
|
// whitelist: ['someField'], // Specify which fields to persist
|
|
182
182
|
};
|
|
183
|
-
`;await
|
|
184
|
-
export * from './${
|
|
183
|
+
`;await F(N.join(i,"store","persist.ts"),d)}let m=`export * from './${e}.slice';
|
|
184
|
+
export * from './${e}.selectors';${n?`
|
|
185
185
|
export * from './persist';`:""}
|
|
186
|
-
`;await
|
|
186
|
+
`;await F(N.join(i,"store","index.ts"),m)},vt=async t=>{let{featureName:e,featurePath:i,httpClient:n}=t,s=b(e),r;n==="axios"?r=`import { AppApis } from '@/lib/config';
|
|
187
187
|
import { axiosClient } from '@/lib/utils/http';
|
|
188
188
|
import { ResultAsync } from '@/types';
|
|
189
189
|
|
|
@@ -192,7 +192,7 @@ export const ${s}Service = {
|
|
|
192
192
|
return axiosClient.get<string>(AppApis.${s}.getAll);
|
|
193
193
|
},
|
|
194
194
|
};
|
|
195
|
-
`:
|
|
195
|
+
`:r=`import { AppApis } from '@/lib/config';
|
|
196
196
|
import { fetchClient } from '@/lib/utils/http';
|
|
197
197
|
import { ResultAsync } from '@/types';
|
|
198
198
|
|
|
@@ -201,50 +201,50 @@ export const ${s}Service = {
|
|
|
201
201
|
return fetchClient.get<string>(AppApis.${s}.getAll);
|
|
202
202
|
},
|
|
203
203
|
};
|
|
204
|
-
`,await
|
|
205
|
-
export { use${
|
|
206
|
-
export * from './types/${
|
|
204
|
+
`,await F(N.join(i,"services",`${e}.service.ts`),r)},Tt=async t=>{let{featureName:e,featurePath:i,createStore:n,createService:s}=t,r=G(e),o=`export { default as ${r} } from './components/${r}';
|
|
205
|
+
export { use${r} } from './hooks/use${r}';
|
|
206
|
+
export * from './types/${e}.types';${n?`
|
|
207
207
|
export * from './store';`:""}${s?`
|
|
208
|
-
export * from './services/${
|
|
209
|
-
`;await
|
|
210
|
-
`+
|
|
211
|
-
`+
|
|
212
|
-
${
|
|
213
|
-
${
|
|
214
|
-
})`)}else throw new Error("Could not find combineReducers in rootReducer.ts");await
|
|
215
|
-
`+
|
|
216
|
-
`+
|
|
217
|
-
${
|
|
218
|
-
${
|
|
219
|
-
})`)}else throw new Error("Could not find combineReducers in rootReducer.ts");await
|
|
220
|
-
base: \`\${API_PREFIX}/${
|
|
221
|
-
getAll: \`\${API_PREFIX}/${
|
|
222
|
-
},`,
|
|
223
|
-
${
|
|
224
|
-
${
|
|
225
|
-
`+
|
|
226
|
-
`+
|
|
208
|
+
export * from './services/${e}.service';`:""}
|
|
209
|
+
`;await F(N.join(i,"index.ts"),o)};import{readFile as Te,writeFile as we}from"node:fs/promises";import ne from"node:path";var Ie=async(t,e,i,n=ne.join("src","features"))=>{let s=ne.join(t,"src","store","rootReducer.ts");try{let r=await Te(s,"utf-8"),o=b(e),p=`${o}Reducer`,m=i?`${o}PersistConfig`:"",d=n.replace(/^src\//,"@/"),R=i?`import { ${p}, ${m} } from '${d}/${e}/store';`:`import { ${p} } from '${d}/${e}/store';`,P=/import\s+.*\s+from\s+['"].*['"];?\n/g,T=r.match(P);if(T&&T.length>0){let I=T[T.length-1],_=r.lastIndexOf(I);r=r.slice(0,_+I.length)+R+`
|
|
210
|
+
`+r.slice(_+I.length)}else r=R+`
|
|
211
|
+
`+r;let E=/combineReducers\(\{([^}]*)\}\)/s,j=r.match(E);if(j){let I=j[1],_=i?`
|
|
212
|
+
${o}: persistReducer(${m}, ${p}),`:`
|
|
213
|
+
${o}: ${p},`,Q=I.trimEnd()+_;r=r.replace(E,`combineReducers({${Q}
|
|
214
|
+
})`)}else throw new Error("Could not find combineReducers in rootReducer.ts");await we(s,r)}catch(r){throw new Error(`Failed to register feature in rootReducer: ${r}`)}},Re=async(t,e,i,n)=>{let s=ne.join(t,"src","store","rootReducer.ts");try{let r=await Te(s,"utf-8"),o=b(e),p=`${o}Reducer`,m=i?`${o}PersistConfig`:"",d=n.replace(/^src\//,"@/"),R=i?`import { ${p}, ${m} } from '${d}/${e}';`:`import { ${p} } from '${d}/${e}';`,P=/import\s+.*\s+from\s+['"].*['"];?\n/g,T=r.match(P);if(T&&T.length>0){let I=T[T.length-1],_=r.lastIndexOf(I);r=r.slice(0,_+I.length)+R+`
|
|
215
|
+
`+r.slice(_+I.length)}else r=R+`
|
|
216
|
+
`+r;let E=/combineReducers\(\{([^}]*)\}\)/s,j=r.match(E);if(j){let I=j[1],_=i?`
|
|
217
|
+
${o}: persistReducer(${m}, ${p}),`:`
|
|
218
|
+
${o}: ${p},`,Q=I.trimEnd()+_;r=r.replace(E,`combineReducers({${Q}
|
|
219
|
+
})`)}else throw new Error("Could not find combineReducers in rootReducer.ts");await we(s,r)}catch(r){throw new Error(`Failed to register slice in rootReducer: ${r}`)}};import{readFile as wt,writeFile as It}from"node:fs/promises";import Rt from"node:path";var Z=async t=>{let{serviceName:e,projectPath:i}=t,n=b(e),s=Rt.join(i,"src","lib","config","app-apis.ts");try{let r=await wt(s,"utf-8");if(r.includes(`${n}:`))return;if(!r.match(/export const AppApis = \{[\s\S]*?\} as const;/))throw new Error("Could not find AppApis object in app-apis.ts");let p=` ${n}: {
|
|
220
|
+
base: \`\${API_PREFIX}/${e}\`,
|
|
221
|
+
getAll: \`\${API_PREFIX}/${e}\`,
|
|
222
|
+
},`,m=/(\s*)\} as const;/;if(!r.match(m))throw new Error("Could not find closing brace of AppApis object");let R=r.lastIndexOf("} as const;"),P=r.substring(0,R),T=r.substring(R),E=P.trim().endsWith(","),j=P.match(/:\s*\{[^}]*\},\s*$/),I;j||E?I=`${P}
|
|
223
|
+
${p}
|
|
224
|
+
${T}`:I=P.trimEnd()+`
|
|
225
|
+
`+p+`
|
|
226
|
+
`+T,await It(s,I)}catch(r){throw new Error(`Failed to register API endpoints: ${r}`)}};var Ne=t=>{t.command("feature [name]").description("Generate a new feature module").option("--skip-store","Skip Redux store generation").option("--store <type>","Generate Redux store with persistence option (persist|no-persist)").option("--skip-service","Skip API service generation").option("--service <client>","Generate API service with specific HTTP client (axios|fetch)").option("--path <path>","Custom path for feature generation (default: src/features)").action(async(e,i)=>{try{let n=process.cwd();i.store&&!["persist","no-persist"].includes(i.store)&&(C("Invalid --store option. Use: persist or no-persist"),process.exit(1)),i.service&&!["axios","fetch"].includes(i.service)&&(C("Invalid --service option. Use: axios or fetch"),process.exit(1)),i.skipStore&&i.store&&(C("Cannot use --skip-store and --store together"),process.exit(1)),i.skipService&&i.service&&(C("Cannot use --skip-service and --service together"),process.exit(1)),c(v.cyan(`
|
|
227
227
|
\u{1F3AF} Feature Generator
|
|
228
|
-
`)),
|
|
229
|
-
`));let
|
|
230
|
-
\u2728 Feature '${
|
|
231
|
-
`)),
|
|
232
|
-
`)),
|
|
228
|
+
`)),f.start("Detecting project setup...");let s=await z(n);f.succeed("Project setup detected"),c(v.dim(` Redux: ${s.hasRedux?"\u2713":"\u2717"}`)),c(v.dim(` HTTP Client: ${s.httpClient}`)),c(v.dim(` i18n: ${s.hasI18n?"\u2713":"\u2717"}
|
|
229
|
+
`));let r=await Pe(e,s.hasRedux,s.httpClient,i.skipStore,i.store,i.skipService,i.service),o=i.path||se.join("src","features"),p=se.join(n,o,r.featureName);await Ee(n,r.featureName,o)&&(C(`Feature '${r.featureName}' already exists at ${o}!`),process.exit(1)),f.start("Generating feature files..."),await ve({featureName:r.featureName,featurePath:p,createStore:r.createStore,persistStore:r.persistStore,createService:r.createService,httpClient:r.selectedHttpClient}),f.succeed("Feature files generated"),r.createService&&(f.start("Registering API endpoints..."),await Z({serviceName:r.featureName,projectPath:n}),f.succeed("API endpoints registered")),r.createStore&&s.hasRedux&&(f.start("Registering feature in rootReducer..."),await Ie(n,r.featureName,r.persistStore,o),f.succeed("Feature registered in rootReducer"));let d=se.join(o,r.featureName);c(v.green(`
|
|
230
|
+
\u2728 Feature '${r.featureName}' created successfully!
|
|
231
|
+
`)),c(v.dim("Generated files:")),c(v.dim(` \u{1F4C2} ${d}/`)),c(v.dim(" \u251C\u2500\u2500 components/")),c(v.dim(" \u251C\u2500\u2500 hooks/")),c(v.dim(" \u251C\u2500\u2500 types/")),r.createStore&&c(v.dim(" \u251C\u2500\u2500 store/")),r.createService&&c(v.dim(" \u251C\u2500\u2500 services/")),c(v.dim(` \u2514\u2500\u2500 index.ts
|
|
232
|
+
`)),c(v.cyan("Next steps:"));let R=o.replace(/^src\//,"@/");c(v.dim(` 1. Import and use the feature: import { ${r.featureName} } from '${R}/${r.featureName}'`)),r.createStore&&c(v.dim(` 2. Customize your Redux slice in: ${d}/store/`)),r.createService&&c(v.dim(` 3. Add API methods in: ${d}/services/${r.featureName}.service.ts`)),c("")}catch(n){f.fail("Feature generation failed"),C(`${n}`),process.exit(1)}})};import $ from"picocolors";import M from"node:path";import{existsSync as kt}from"node:fs";import{mkdir as Gt}from"node:fs/promises";import Nt from"enquirer";var{prompt:$t}=Nt,$e=async(t,e,i)=>{let n=[];t||n.push({type:"input",name:"sliceName",message:"What is the slice name?",initial:"my-slice",validate:r=>/^[a-z0-9-]+$/.test(r)?!0:"Slice name must be lowercase and contain only alphanumeric characters and hyphens."}),e===void 0&&i===void 0&&n.push({type:"confirm",name:"persistSlice",message:"Enable persistence for this slice?",initial:!1});let s=n.length>0?await $t(n):{};return{sliceName:t||s.sliceName,persistSlice:e===!0?!0:i===!1?!1:s.persistSlice||!1}};import{writeFile as V,mkdir as bt}from"node:fs/promises";import B from"node:path";var be=async t=>{let{sliceName:e,slicePath:i,persistSlice:n}=t;await bt(i,{recursive:!0});let s=G(e),r=b(e);await Ot(e,i,s),await At(e,i,s,r),await jt(e,i,s,r),n&&await _t(e,i,s,r),await Ft(e,i,n)},Ot=async(t,e,i)=>{let n=`export interface ${i}State {
|
|
233
233
|
loading: boolean;
|
|
234
234
|
error: string | null;
|
|
235
235
|
// Add your state properties here
|
|
236
236
|
}
|
|
237
|
-
`;await
|
|
238
|
-
import { ${
|
|
237
|
+
`;await V(B.join(e,`${t}.types.ts`),n)},At=async(t,e,i,n)=>{let s=`import { createSlice, PayloadAction } from '@reduxjs/toolkit';
|
|
238
|
+
import { ${i}State } from './${t}.types';
|
|
239
239
|
|
|
240
|
-
const initialState: ${
|
|
240
|
+
const initialState: ${i}State = {
|
|
241
241
|
loading: false,
|
|
242
242
|
error: null,
|
|
243
243
|
// Add your initial state here
|
|
244
244
|
};
|
|
245
245
|
|
|
246
|
-
export const ${
|
|
247
|
-
name: '${
|
|
246
|
+
export const ${n}Slice = createSlice({
|
|
247
|
+
name: '${n}',
|
|
248
248
|
initialState,
|
|
249
249
|
reducers: {
|
|
250
250
|
setLoading: (state, action: PayloadAction<boolean>) => {
|
|
@@ -260,35 +260,35 @@ export const ${r}Slice = createSlice({
|
|
|
260
260
|
},
|
|
261
261
|
});
|
|
262
262
|
|
|
263
|
-
export const { setLoading, setError, resetState } = ${
|
|
263
|
+
export const { setLoading, setError, resetState } = ${n}Slice.actions;
|
|
264
264
|
|
|
265
|
-
export const ${
|
|
266
|
-
`;await
|
|
265
|
+
export const ${n}Reducer = ${n}Slice.reducer;
|
|
266
|
+
`;await V(B.join(e,`${t}.slice.ts`),s)},jt=async(t,e,i,n)=>{let s=`import { RootState } from '@/store/rootReducer';
|
|
267
267
|
|
|
268
|
-
export const select${
|
|
268
|
+
export const select${i}State = (state: RootState) => state.${n};
|
|
269
269
|
export { setLoading, setError, resetState } from './${t}.slice';
|
|
270
|
-
`;await
|
|
270
|
+
`;await V(B.join(e,`${t}.selectors.ts`),s)},_t=async(t,e,i,n)=>{let s=`import { PersistConfig } from 'redux-persist';
|
|
271
271
|
import storage from 'redux-persist/lib/storage';
|
|
272
|
-
import { ${
|
|
272
|
+
import { ${i}State } from './${t}.types';
|
|
273
273
|
|
|
274
|
-
export const ${
|
|
275
|
-
key: '${
|
|
274
|
+
export const ${n}PersistConfig: PersistConfig<${i}State> = {
|
|
275
|
+
key: '${n}',
|
|
276
276
|
storage,
|
|
277
277
|
// whitelist: ['someField'], // Specify which fields to persist
|
|
278
278
|
};
|
|
279
|
-
`;await
|
|
279
|
+
`;await V(B.join(e,"persist.ts"),s)},Ft=async(t,e,i)=>{let n=`export * from './${t}.slice';
|
|
280
280
|
export * from './${t}.selectors';
|
|
281
|
-
export * from './${t}.types';${
|
|
281
|
+
export * from './${t}.types';${i?`
|
|
282
282
|
export * from './persist';`:""}
|
|
283
|
-
`;await
|
|
283
|
+
`;await V(B.join(e,"index.ts"),n)};import{access as Dt}from"node:fs/promises";import Oe from"node:path";var Ae=async(t,e,i=Oe.join("src","store","slices"))=>{let n=Oe.join(t,i,e);try{return await Dt(n),!0}catch{return!1}};var je=t=>{t.command("slice [name]").description("Generate a Redux slice").option("--path <path>","Custom path for slice generation (default: create new feature)").option("--persist","Enable persistence for this slice").option("--no-persist","Disable persistence for this slice").action(async(e,i)=>{try{let n=process.cwd();i.persist&&i.noPersist===!0&&(C("Cannot use --persist and --no-persist together"),process.exit(1)),c($.cyan(`
|
|
284
284
|
\u{1F527} Slice Generator
|
|
285
|
-
`)),
|
|
285
|
+
`)),f.start("Detecting project setup...");let s=await z(n);f.succeed("Project setup detected"),s.hasRedux||(f.fail("Redux is not setup in this project"),C("Please install @reduxjs/toolkit and react-redux first"),c($.dim(`
|
|
286
286
|
Run: npm install @reduxjs/toolkit react-redux
|
|
287
|
-
`)),process.exit(1)),
|
|
288
|
-
`));let
|
|
289
|
-
\u2728 Slice '${
|
|
290
|
-
`)),
|
|
291
|
-
`)),
|
|
287
|
+
`)),process.exit(1)),c($.dim(` Redux: \u2713
|
|
288
|
+
`));let r=await $e(e,i.persist,i.noPersist===!0?!1:void 0),o,p,m;if(i.path){let E=i.path.replace(/^src\//,"");E.startsWith("features/")?(p=E.split("/")[1],o=M.join("src","features",p,"store"),m=M.join(n,o,r.sliceName)):(o=M.join("src",E),p=E.split("/")[0],m=M.join(n,o,r.sliceName))}else p=r.sliceName,o=M.join("src","features",p,"store"),m=M.join(n,o,r.sliceName);let d=M.join(n,o);kt(d)||await Gt(d,{recursive:!0}),await Ae(n,r.sliceName,o)&&(C(`Slice '${r.sliceName}' already exists at ${o}!`),process.exit(1)),f.start("Generating slice files..."),await be({sliceName:r.sliceName,slicePath:m,persistSlice:r.persistSlice}),f.succeed("Slice files generated"),f.start("Registering slice in rootReducer..."),await Re(n,r.sliceName,r.persistSlice,o),f.succeed("Slice registered in rootReducer");let P=M.join(o,r.sliceName);c($.green(`
|
|
289
|
+
\u2728 Slice '${r.sliceName}' created successfully!
|
|
290
|
+
`)),c($.dim("Generated files:")),c($.dim(` \u{1F4C2} ${P}/`)),c($.dim(` \u251C\u2500\u2500 ${r.sliceName}.slice.ts`)),c($.dim(` \u251C\u2500\u2500 ${r.sliceName}.selectors.ts`)),r.persistSlice&&c($.dim(" \u251C\u2500\u2500 persist.ts")),c($.dim(` \u251C\u2500\u2500 ${r.sliceName}.types.ts`)),c($.dim(` \u2514\u2500\u2500 index.ts
|
|
291
|
+
`)),c($.cyan("Next steps:"));let T=o.replace(/^src\//,"@/");c($.dim(` 1. Import actions: import { setLoading, setError } from '${T}/${r.sliceName}'`)),c($.dim(" 2. Use in component: dispatch(setLoading(true))")),c("")}catch(n){f.fail("Slice generation failed"),C(`${n}`),process.exit(1)}})};import D from"picocolors";import H from"node:path";import{existsSync as Xt}from"node:fs";import{mkdir as Yt}from"node:fs/promises";import _e from"enquirer";var Fe=async(t,e,i,n)=>{let s=t||(await _e.prompt({type:"input",name:"serviceName",message:"Service name (kebab-case):",validate:o=>o?/^[a-z0-9-]+$/.test(o)?!0:"Service name must be lowercase with hyphens only":"Service name is required"})).serviceName,r;return e!==void 0?r="axios":i!==void 0?r="fetch":n==="axios"?r="axios":n==="fetch"?r="fetch":n==="both"?r=(await _e.prompt({type:"select",name:"httpClient",message:"Choose HTTP client:",choices:["axios","fetch"]})).httpClient:r="axios",{serviceName:s,httpClient:r}};import{writeFile as Lt}from"node:fs/promises";import Mt from"node:path";var De=async t=>{await Ut(t)},Ut=async t=>{let{serviceName:e,servicePath:i,httpClient:n}=t,s=b(e),r;n==="axios"?r=`import { AppApis } from '@/lib/config';
|
|
292
292
|
import { axiosClient } from '@/lib/utils/http';
|
|
293
293
|
import { ResultAsync } from '@/types';
|
|
294
294
|
|
|
@@ -297,7 +297,7 @@ export const ${s}Service = {
|
|
|
297
297
|
return axiosClient.get<string>(AppApis.${s}.getAll);
|
|
298
298
|
},
|
|
299
299
|
};
|
|
300
|
-
`:
|
|
300
|
+
`:r=`import { AppApis } from '@/lib/config';
|
|
301
301
|
import { fetchClient } from '@/lib/utils/http';
|
|
302
302
|
import { ResultAsync } from '@/types';
|
|
303
303
|
|
|
@@ -306,93 +306,20 @@ export const ${s}Service = {
|
|
|
306
306
|
return fetchClient.get<string>(AppApis.${s}.getAll);
|
|
307
307
|
},
|
|
308
308
|
};
|
|
309
|
-
`;let
|
|
309
|
+
`;let o=`${e}.service.ts`;await Lt(Mt.join(i,o),r)};import{existsSync as Ht}from"node:fs";import zt from"node:path";var ke=async(t,e,i)=>{let n=zt.join(t,i,`${e}.service.ts`);return Ht(n)};var Ge=t=>{t.command("service [name]").description("Generate an API service").option("--path <path>","Custom path for service generation (default: create new feature)").option("--axios","Use Axios HTTP client").option("--fetch","Use Fetch HTTP client").action(async(e,i)=>{try{let n=process.cwd();i.axios&&i.fetch&&(C("Cannot use --axios and --fetch together"),process.exit(1)),c(D.cyan(`
|
|
310
310
|
\u{1F527} Service Generator
|
|
311
|
-
`)),
|
|
311
|
+
`)),f.start("Detecting project setup...");let s=await z(n);f.succeed("Project setup detected"),s.httpClient==="none"&&(f.fail("No HTTP client is setup in this project"),C("Please setup either AxiosClient or FetchClient first"),c(D.dim(`
|
|
312
312
|
Check: lib/utils/http/axios-client or lib/utils/http/fetch-client
|
|
313
|
-
`)),process.exit(1));let
|
|
314
|
-
`));let
|
|
315
|
-
\u2728 Service '${
|
|
316
|
-
`)),
|
|
317
|
-
`)),
|
|
318
|
-
`)+`
|
|
319
|
-
`)},Ui=async t=>{let i=ct(),e=j.join(i,"src","lib","utils","http"),r=j.join(t,"src","lib","utils","http");await Ie(r,{recursive:!0});let s=["client-utils.ts","token-store.ts"];for(let o of s){let n=j.join(e,o),c=j.join(r,o);try{let p=await Re(n,"utf-8");await Ne(c,p)}catch{console.warn(`Warning: Could not copy ${o}`)}}},lt=async t=>{let{projectPath:i,clientType:e}=t,r=ct(),s=[];if(await Ui(i),(e==="axios"||e==="both")&&!await at(i,"axios")){let n=j.join(r,"src","lib","utils","http","axios-client"),c=j.join(i,"src","lib","utils","http","axios-client");await Ee(n,c),s.push("axios")}if((e==="fetch"||e==="both")&&!await at(i,"fetch")){let n=j.join(r,"src","lib","utils","http","fetch-client"),c=j.join(i,"src","lib","utils","http","fetch-client");await Ee(n,c),s.push("fetch")}return await Gi(i,e),s},pt=t=>{let i=[];return(t==="axios"||t==="both")&&i.push("axios"),i};import{readFile as pe,writeFile as ee,access as Hi}from"node:fs/promises";import M from"node:path";import{fileURLToPath as zi}from"node:url";var Xi=()=>{let t=zi(import.meta.url),i=M.dirname(t);return M.resolve(i,"..","..","..","..","..","Templates","nextjs-starter")},mt=async t=>{let i=M.join(t,"src","providers","CustomThemeProvider.tsx");try{return await Hi(i),!0}catch{return!1}},dt=async t=>{if(await mt(t))return!1;let e=Xi(),r=M.join(e,"src","providers","CustomThemeProvider.tsx"),s=M.join(t,"src","providers","CustomThemeProvider.tsx"),o=await pe(r,"utf-8");return await ee(s,o),await qi(t),await Vi(t),await Wi(t),await Yi(t),!0},Wi=async t=>{let i=M.join(t,"src","providers","index.ts");try{let e=await pe(i,"utf-8");if(e.includes("CustomThemeProvider"))return;e+=`
|
|
320
|
-
export { CustomThemeProvider } from './CustomThemeProvider';
|
|
321
|
-
`,await ee(i,e)}catch{await ee(i,`export { CustomThemeProvider } from './CustomThemeProvider';
|
|
322
|
-
export { RootProvider } from './RootProvider';
|
|
323
|
-
export { StoreProvider } from './StoreProvider';
|
|
324
|
-
`)}},Yi=async t=>{let i=M.join(t,"src","providers","RootProvider.tsx");try{let e=await pe(i,"utf-8");if(e.includes("CustomThemeProvider"))return;if(e.includes("import { StoreProvider } from '@/providers';"))e=e.replace("import { StoreProvider } from '@/providers';","import { CustomThemeProvider, StoreProvider } from '@/providers';");else if(e.includes("import {"))e=e.replace(/import \{([^}]+)\} from '@\/providers';/,"import { CustomThemeProvider, $1 } from '@/providers';");else{let r=e.indexOf("import");if(r!==-1){let s=e.indexOf(`
|
|
325
|
-
`,r);e=e.slice(0,s+1)+`import { CustomThemeProvider } from '@/providers';
|
|
326
|
-
`+e.slice(s+1)}}e.includes("<StoreProvider>")?(e=e.replace(/(<StoreProvider>)/,`$1
|
|
327
|
-
<CustomThemeProvider>`),e=e.replace(/(<\/StoreProvider>)/,` </CustomThemeProvider>
|
|
328
|
-
$1`)):(e=e.replace(/(return\s*\(\s*<[^>]+>)/,`$1
|
|
329
|
-
<CustomThemeProvider>`),e=e.replace(/(<\/[^>]+>\s*\);)/,` </CustomThemeProvider>
|
|
330
|
-
$1`)),await ee(i,e)}catch(e){throw new Error(`Failed to update RootProvider: ${e}`)}},ut=async t=>await mt(t),qi=async t=>{let i=M.join(t,"src","styles","globals.css");try{let e=await pe(i,"utf-8");if(e.includes("@custom-variant dark")&&e.includes("--color-dark")&&e.includes("--color-light"))return;e.includes("@custom-variant dark")||(e.includes("@import 'tailwindcss';")?e=e.replace("@import 'tailwindcss';",`@import 'tailwindcss';
|
|
331
|
-
|
|
332
|
-
@custom-variant dark (&:where(.dark, .dark *));`):e=`@custom-variant dark (&:where(.dark, .dark *));
|
|
333
|
-
|
|
334
|
-
`+e),e.includes("@theme")?e.includes("--color-dark")||(e=e.replace(/(@theme\s*{[^}]*)(})/,`$1 --color-dark: #202938;
|
|
335
|
-
--color-light: #f5f5f5;
|
|
336
|
-
$2`)):e+=`
|
|
337
|
-
@theme {
|
|
338
|
-
--color-dark: #202938;
|
|
339
|
-
--color-light: #f5f5f5;
|
|
340
|
-
}
|
|
341
|
-
`,await ee(i,e)}catch{}},Vi=async t=>{let i=[M.join(t,"src","app","layout.tsx"),M.join(t,"src","app","[locale]","layout.tsx")];for(let e of i)try{let r=await pe(e,"utf-8");if(r.includes("dark:bg-dark"))continue;r=r.replace(/<body([^>]*?)className={`([^`]*)`}([^>]*)>/,(s,o,n,c)=>{let p=n;return p.includes("bg-light")||(p=p.trim()+" bg-light dark:bg-dark"),`<body${o}className={\`${p}\`}${c}>`}),r=r.replace(/<body([^>]*?)className="([^"]*)"([^>]*)>/,(s,o,n,c)=>{let p=n;return p.includes("bg-light")||(p=p.trim()+" bg-light dark:bg-dark"),`<body${o}className="${p}"${c}>`}),await ee(e,r)}catch{}},ft=()=>["next-themes"];import{readFile as ge,writeFile as me,mkdir as gt,access as ht}from"node:fs/promises";import F from"node:path";import{fileURLToPath as Bi}from"node:url";var Ki=()=>{let t=Bi(import.meta.url),i=F.dirname(t);return F.resolve(i,"..","..","..","..","..","Templates","nextjs-starter")},xt=async t=>{let i=F.join(t,"src","store"),e=F.join(t,"src","providers","StoreProvider.tsx");try{return await ht(i),await ht(e),!0}catch{return!1}},yt=async t=>{if(await xt(t))return!1;let e=Ki(),r=F.join(t,"src","store");return await gt(r,{recursive:!0}),await gt(F.join(r,"slices"),{recursive:!0}),await Ji(e,t),await Zi(e,t),await Qi(t),await er(t),!0},Ji=async(t,i)=>{let e=["index.ts","hooks.ts","persistor.ts","rootReducer.ts"];for(let r of e){let s=F.join(t,"src","store",r),o=F.join(i,"src","store",r),n=await ge(s,"utf-8");await me(o,n)}},Zi=async(t,i)=>{let e=F.join(t,"src","providers","StoreProvider.tsx"),r=F.join(i,"src","providers","StoreProvider.tsx"),s=await ge(e,"utf-8");await me(r,s)},Qi=async t=>{let i=F.join(t,"src","providers","index.ts");try{let e=await ge(i,"utf-8");if(e.includes("StoreProvider"))return;e+=`
|
|
342
|
-
export { StoreProvider } from './StoreProvider';
|
|
343
|
-
`,await me(i,e)}catch{await me(i,`export { StoreProvider } from './StoreProvider';
|
|
344
|
-
export { RootProvider } from './RootProvider';
|
|
345
|
-
`)}},er=async t=>{let i=F.join(t,"src","providers","RootProvider.tsx");try{let e=await ge(i,"utf-8");if(e.includes("StoreProvider"))return;if(e.includes("from '@/providers'"))e=e.replace(/import \{ ([^}]+) \} from '@\/providers';/,"import { StoreProvider, $1 } from '@/providers';");else{let s=e.indexOf("'use client';");if(s!==-1){let o=e.indexOf(`
|
|
346
|
-
`,s);e=e.slice(0,o+1)+`import { StoreProvider } from '@/providers';
|
|
347
|
-
`+e.slice(o+1)}}let r=e.match(/(return\s*\(\s*)/);if(r){let o=e.indexOf(r[0])+r[0].length,n=1,c=o;for(let x=o;x<e.length;x++)if(e[x]==="("&&n++,e[x]===")"&&(n--,n===0)){c=x;break}let p=e.slice(0,o),f=e.slice(o,c),T=e.slice(c);e=`${p}
|
|
348
|
-
<StoreProvider>
|
|
349
|
-
${f}
|
|
350
|
-
</StoreProvider>
|
|
351
|
-
${T}`}await me(i,e)}catch(e){throw new Error(`Failed to update RootProvider: ${e}`)}},Pt=async t=>await xt(t),Ct=()=>["@reduxjs/toolkit","react-redux","redux-persist"];import{readFile as Z,writeFile as J,mkdir as de,readdir as tr}from"node:fs/promises";import*as R from"fs";import h from"node:path";import{fileURLToPath as ir}from"url";var rr=ir(import.meta.url),or=h.dirname(rr),nr=()=>h.resolve(or,"..","..","..","..","..","Templates","nextjs-starter"),vt=async(t,i)=>{await de(i,{recursive:!0});let e=await tr(t,{withFileTypes:!0});for(let r of e){let s=h.join(t,r.name),o=h.join(i,r.name);if(r.isDirectory())await vt(s,o);else{let n=await Z(s,"utf-8");await J(o,n)}}},te=async(t,i)=>{await de(h.dirname(i),{recursive:!0});let e=await Z(t,"utf-8");await J(i,e)},be=t=>{let i=h.join(t,"src","i18n");return R.existsSync(i)},wt=async t=>{try{if(be(t)){D("next-intl is already configured in your project."),D("Skipping i18n setup...");return}let i=nr(),e=h.join(i,"src","i18n"),r=h.join(t,"src","i18n");R.existsSync(e)&&(await vt(e,r),A("Copied i18n directory"));let s=h.join(i,"src","types","i18n.ts"),o=h.join(t,"src","types","i18n.ts");R.existsSync(s)&&(await te(s,o),A("Copied types/i18n.ts"));let n=h.join(i,"src","lib","config","app-locales.ts"),c=h.join(t,"src","lib","config","app-locales.ts");R.existsSync(n)&&(await te(n,c),A("Copied lib/config/app-locales.ts")),await sr(t),await ar(t),await cr(t,i),await lr(t),await pr(t),await mr(t,i)}catch(i){throw z(`Failed to setup i18n: ${i}`),i}},sr=async t=>{let i=h.join(t,"src","lib","config","index.ts");try{let e=await Z(i,"utf-8");if(e.includes("export * from './app-locales'")){D("appLocales already exported in lib/config/index.ts");return}let r=e+`export * from './app-locales';
|
|
352
|
-
`;await J(i,r),A("Updated lib/config/index.ts to export appLocales")}catch{await de(h.dirname(i),{recursive:!0}),await J(i,`export * from './app-locales';
|
|
353
|
-
`),A("Created lib/config/index.ts with appLocales export")}},ar=async t=>{let i=h.join(t,"src","types","index.ts");try{let e=await Z(i,"utf-8");if(e.includes("export * from './i18n'")){D("i18n types already exported in types/index.ts");return}let r=e+`export * from './i18n';
|
|
354
|
-
`;await J(i,r),A("Updated types/index.ts to export i18n types")}catch{await de(h.dirname(i),{recursive:!0}),await J(i,`export * from './i18n';
|
|
355
|
-
`),A("Created types/index.ts with i18n types export")}},cr=async(t,i)=>{let e=h.join(t,"src","proxy.ts"),r=h.join(t,"src","middleware.ts");try{if((await Z(r,"utf-8")).includes("next-intl")){D("Middleware already configured with next-intl");return}}catch{}let s=h.join(i,"src","proxy.ts");R.existsSync(s)&&(await te(s,e),A("Created src/proxy.ts with next-intl middleware"))},lr=async t=>{let i=h.join(t,"next.config.ts");try{let e=await Z(i,"utf-8");if(e.includes("createNextIntlPlugin")||e.includes("next-intl")){D("next.config.ts already configured with next-intl");return}let r=`import createNextIntlPlugin from 'next-intl/plugin';
|
|
356
|
-
`,s=`const withNextIntl = createNextIntlPlugin();
|
|
357
|
-
`,o=e.match(/export default (.+);/);if(!o){z("Could not find export default in next.config.ts");return}let n=o[1].trim(),c=e,p=e.match(/import .+ from .+;\n/g);if(p){let f=p[p.length-1],T=e.lastIndexOf(f);c=e.slice(0,T+f.length)+`
|
|
358
|
-
`+r+e.slice(T+f.length)}else c=r+`
|
|
359
|
-
`+e;c=c.replace(/export default/,s+`
|
|
360
|
-
export default`),c=c.replace(`export default ${n};`,`export default withNextIntl(${n});`),await J(i,c),A("Updated next.config.ts to use createNextIntlPlugin")}catch{z("next.config.ts not found")}},pr=async t=>{let i=h.join(t,"src","providers","RootProvider.tsx");try{let e=await Z(i,"utf-8");if(e.includes("NextIntlClientProvider")||e.includes("next-intl")){D("RootProvider already configured with NextIntlClientProvider");return}let r=`import { SupportedLocale } from '@/types/i18n';
|
|
361
|
-
import { NextIntlClientProvider } from 'next-intl';
|
|
362
|
-
import { AbstractIntlMessages } from 'next-intl';
|
|
363
|
-
`,s=e,o=e.match(/import .+ from .+;\n/g);if(o){let n=o[o.length-1],c=e.lastIndexOf(n);s=e.slice(0,c+n.length)+r+e.slice(c+n.length)}if(s=s.replace(/export const RootProvider = \(\{\s*children,?\s*\}: \{[^}]+\}\)/,`export const RootProvider = ({
|
|
364
|
-
children,
|
|
365
|
-
locale,
|
|
366
|
-
messages,
|
|
367
|
-
}: {
|
|
368
|
-
children: React.ReactNode;
|
|
369
|
-
locale: SupportedLocale;
|
|
370
|
-
messages: AbstractIntlMessages;
|
|
371
|
-
})`),s.includes("return <>{children}</>;"))s=s.replace("return <>{children}</>;",`return (
|
|
372
|
-
<NextIntlClientProvider locale={locale} messages={messages}>
|
|
373
|
-
{children}
|
|
374
|
-
</NextIntlClientProvider>
|
|
375
|
-
);`);else{let n=s.match(/return \(([\s\S]+?)\);[\s]*\}/);if(n){let c=n[1];if(c.match(/>\s*\{children\}\s*</)){let f=c.replace(/>\s*\{children\}\s*</,`>
|
|
376
|
-
<NextIntlClientProvider locale={locale} messages={messages}>
|
|
377
|
-
{children}
|
|
378
|
-
</NextIntlClientProvider>
|
|
379
|
-
<`);s=s.replace(c,f)}}}await J(i,s),A("Updated RootProvider to include NextIntlClientProvider")}catch{z("RootProvider.tsx not found")}},mr=async(t,i)=>{let e=h.join(t,"src","app","[locale]","layout.tsx"),r=h.join(t,"src","app","[locale]");if(!R.existsSync(r)){await de(r,{recursive:!0});let s=h.join(i,"src","app","[locale]","layout.tsx");R.existsSync(s)&&(await te(s,e),A("Created [locale]/layout.tsx with i18n configuration"));let o=h.join(t,"src","app","page.tsx"),n=h.join(t,"src","app","[locale]","page.tsx");if(R.existsSync(o))R.renameSync(o,n),A("Moved page.tsx to [locale]/page.tsx");else{let p=h.join(i,"src","app","[locale]","page.tsx");R.existsSync(p)&&(await te(p,n),A("Created [locale]/page.tsx from template"))}let c=h.join(t,"src","app","layout.tsx");R.existsSync(c)&&(R.unlinkSync(c),D("Removed old app/layout.tsx"));return}if(!R.existsSync(e)){let s=h.join(i,"src","app","[locale]","layout.tsx");R.existsSync(s)&&(await te(s,e),A("Created [locale]/layout.tsx with i18n configuration"));return}try{let s=await Z(e,"utf-8");if(s.includes("next-intl")||s.includes("setRequestLocale")){D("[locale]/layout.tsx already configured with i18n");return}D("[locale]/layout.tsx exists but may need manual i18n configuration")}catch{}};var{prompt:It}=dr,Rt=t=>{t.command("setup").description("Setup additional features for your Next.js project").option("--http-client <type>","Setup HTTP client (axios|fetch|both)").option("--dark-theme","Setup dark theme support").option("--redux","Setup Redux Toolkit with persistence").option("--i18n","Setup next-intl for internationalization").action(async i=>{try{let e=process.cwd();if(a(m.cyan(`
|
|
313
|
+
`)),process.exit(1));let r=[];(s.httpClient==="axios"||s.httpClient==="both")&&r.push("Axios \u2713"),(s.httpClient==="fetch"||s.httpClient==="both")&&r.push("Fetch \u2713"),c(D.dim(` HTTP Clients: ${r.join(", ")}
|
|
314
|
+
`));let o=await Fe(e,i.axios,i.fetch,s.httpClient),p,m,d;if(i.path){let E=i.path.replace(/^src\//,"");E.startsWith("features/")?(m=E.split("/")[1],p=H.join("src","features",m,"services"),d=H.join(n,p)):(p=H.join("src",E),m=E.split("/")[0],d=H.join(n,p))}else m=o.serviceName,p=H.join("src","features",m,"services"),d=H.join(n,p);Xt(d)||await Yt(d,{recursive:!0}),await ke(n,o.serviceName,p)&&(C(`Service '${o.serviceName}' already exists at ${p}!`),process.exit(1)),f.start("Generating service files..."),await De({serviceName:o.serviceName,servicePath:d,httpClient:o.httpClient}),f.succeed("Service files generated"),f.start("Registering API endpoints..."),await Z({serviceName:o.serviceName,projectPath:n}),f.succeed("API endpoints registered");let P=H.join(p,`${o.serviceName}.service.ts`);c(D.green(`
|
|
315
|
+
\u2728 Service '${o.serviceName}' created successfully!
|
|
316
|
+
`)),c(D.dim("Generated files:")),c(D.dim(` \u{1F4C4} ${P}
|
|
317
|
+
`)),c(D.cyan("Next steps:"));let T=p.replace(/^src\//,"@/");c(D.dim(` 1. Import service: import { ${o.serviceName}Service } from '${T}/${o.serviceName}.service'`)),c(D.dim(` 2. Use in component: const data = await ${o.serviceName}Service.getAll()`)),c("")}catch(n){f.fail("Service generation failed"),C(`${n}`),process.exit(1)}})};import O from"picocolors";import Wt from"enquirer";var{prompt:Kt}=Wt,Le=t=>{t.command("setup").description("Setup additional features for your Next.js project").option("--http-client <type>","Setup HTTP client (axios|fetch|both)").option("--dark-theme","Setup dark theme support").option("--redux","Setup Redux Toolkit with persistence").option("--i18n","Setup next-intl for internationalization").action(async e=>{try{if(c(O.cyan(`
|
|
380
318
|
\u{1F527} Setup Wizard
|
|
381
|
-
`)),!
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
\
|
|
385
|
-
\
|
|
386
|
-
\
|
|
387
|
-
\u2728 HTTP Client setup completed successfully!
|
|
388
|
-
`)),e.length>0&&(a(m.dim("Installed clients:")),e.forEach(s=>{a(m.dim(` \u2713 ${s}`))}),a("")),a(m.cyan("Next steps:")),a(m.dim(" 1. HTTP client is now available at: src/lib/utils/http/")),(i==="axios"||e.includes("axios"))&&a(m.dim(" 2. Use Axios: import { axiosClient } from '@/lib/utils/http';")),(i==="fetch"||e.includes("fetch"))&&a(m.dim(" 2. Use Fetch: import { fetchClient } from '@/lib/utils/http';")),a(m.dim(" 3. Create services using: npm run make service <name>")),a("")},St=async t=>{d.start("Checking dark theme setup...");let i=await ut(t);if(d.succeed("Check complete"),i){a(m.green(`
|
|
389
|
-
\u2713 Dark theme is already setup!`));return}d.start("Setting up dark theme...");let e=await dt(t);if(d.succeed("Dark theme files setup complete"),e){let r=ft();d.start("Installing required packages...");let s=await oe(t);await ne(t,s,r),d.succeed("Packages installed")}a(m.green(`
|
|
390
|
-
\u2728 Dark theme setup completed successfully!
|
|
391
|
-
`)),a(m.dim("What was added:")),a(m.dim(" \u2713 CustomThemeProvider component")),a(m.dim(" \u2713 Integrated with RootProvider")),a(m.dim(" \u2713 next-themes package installed")),a(""),a(m.cyan("Next steps:")),a(m.dim(" 1. Dark theme is now available in your app")),a(m.dim(" 2. Users can toggle between light/dark/system modes")),a(m.dim(" 3. Use the theme: import { useTheme } from 'next-themes';")),a(m.dim(" 4. Add dark mode classes to your Tailwind CSS (e.g., dark:bg-gray-900)")),a("")},Tt=async t=>{d.start("Checking Redux setup...");let i=await Pt(t);if(d.succeed("Check complete"),i){a(m.green(`
|
|
392
|
-
\u2713 Redux Toolkit is already setup!`));return}d.start("Setting up Redux Toolkit...");let e=await yt(t);if(d.succeed("Redux Toolkit files setup complete"),e){let r=Ct();d.start("Installing required packages...");let s=await oe(t);await ne(t,s,r),d.succeed("Packages installed")}a(m.green(`
|
|
393
|
-
\u2728 Redux Toolkit setup completed successfully!
|
|
394
|
-
`)),a(m.dim("What was added:")),a(m.dim(" \u2713 Store configuration (src/store)")),a(m.dim(" \u2713 Redux hooks (useAppDispatch, useAppSelector)")),a(m.dim(" \u2713 Redux Persist integration")),a(m.dim(" \u2713 StoreProvider component")),a(m.dim(" \u2713 Integrated with RootProvider")),a(m.dim(" \u2713 Required packages installed")),a(""),a(m.cyan("Next steps:")),a(m.dim(" 1. Redux store is now available in your app")),a(m.dim(" 2. Use hooks: import { useAppDispatch, useAppSelector } from '@/store/hooks';")),a(m.dim(" 3. Create features with state: npm run make feature <name> --store persist")),a(m.dim(" 4. Create slices: npm run make slice <name>")),a("")},Et=async t=>{d.start("Checking i18n setup...");let i=be(t);if(d.succeed("Check complete"),i){a(m.green(`
|
|
395
|
-
\u2713 next-intl is already setup!`));return}d.start("Setting up next-intl (i18n)..."),await wt(t),d.succeed("next-intl setup complete");let e=["next-intl"];d.start("Installing required packages...");let r=await oe(t);await ne(t,r,e),d.succeed("Packages installed"),a(m.green(`
|
|
396
|
-
\u2728 next-intl (i18n) setup completed successfully!
|
|
397
|
-
`)),a(m.dim("What was added:")),a(m.dim(" \u2713 i18n configuration (src/i18n)")),a(m.dim(" \u2713 Translation files (src/i18n/translations)")),a(m.dim(" \u2713 Locale types and config")),a(m.dim(" \u2713 Middleware for routing (src/proxy.ts)")),a(m.dim(" \u2713 Updated next.config.ts")),a(m.dim(" \u2713 Updated RootProvider with NextIntlClientProvider")),a(m.dim(" \u2713 Created [locale] route structure")),a(m.dim(" \u2713 next-intl package installed")),a(""),a(m.cyan("Next steps:")),a(m.dim(" 1. Add more locales in src/lib/config/app-locales.ts")),a(m.dim(" 2. Add translations in src/i18n/translations/<locale>.json")),a(m.dim(" 3. Use translations: import { useTranslations } from 'next-intl';")),a(m.dim(" 4. Use navigation: import { Link, useRouter } from '@/i18n/navigation';")),a(m.dim(" 5. Update SupportedLocale type in src/types/i18n.ts")),a("")};var bt=t=>{He(t),Rt(t),Ke(t),tt(t),st(t)};async function hr(){Oe({logger:i=>z(i)});let t=new gr;t.name("next-maker").description("Teispace Next.js Project Generator").version("1.0.0"),bt(t),t.parse()}hr().catch(t=>{let i=t&&typeof t=="object"&&"message"in t?t.message:String(t);z(`Unexpected error: ${i}`)});
|
|
319
|
+
`)),!e.httpClient&&!e.darkTheme&&!e.redux&&!e.i18n){let i=await Kt([{type:"select",name:"feature",message:"What would you like to setup?",choices:["HTTP Client (Axios/Fetch)","Dark Theme","Redux Toolkit","Internationalization (next-intl)","Cancel"]}]);if(i.feature==="Cancel"){c(O.yellow("Setup cancelled."));return}c(O.yellow(`
|
|
320
|
+
\u26A0\uFE0F ${i.feature} setup is not implemented yet.`)),c(O.dim("This feature will be available in a future update."))}else e.httpClient&&(c(O.yellow(`
|
|
321
|
+
\u26A0\uFE0F HTTP Client setup is not implemented yet.`)),c(O.dim("This feature will be available in a future update."))),e.darkTheme&&(c(O.yellow(`
|
|
322
|
+
\u26A0\uFE0F Dark Theme setup is not implemented yet.`)),c(O.dim("This feature will be available in a future update."))),e.redux&&(c(O.yellow(`
|
|
323
|
+
\u26A0\uFE0F Redux Toolkit setup is not implemented yet.`)),c(O.dim("This feature will be available in a future update."))),e.i18n&&(c(O.yellow(`
|
|
324
|
+
\u26A0\uFE0F Internationalization setup is not implemented yet.`)),c(O.dim("This feature will be available in a future update.")))}catch(i){f.fail("Setup failed"),C(`${i}`),process.exit(1)}})};var Me=t=>{Ce(t),Le(t),Ne(t),je(t),Ge(t)};async function Bt(){de({logger:e=>q(e)});let t=new Vt;t.name("next-maker").description("Teispace Next.js Project Generator").version("1.0.0"),Me(t),t.parse()}Bt().catch(t=>{let e=t&&typeof t=="object"&&"message"in t?t.message:String(t);q(`Unexpected error: ${e}`)});
|
|
398
325
|
//# sourceMappingURL=index.js.map
|