From 35603cadaf94cce74e3a5ef735c717f2b2ff0d83 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 17:40:28 +0900 Subject: [PATCH] refactor(react): update installation guide Update the installation guide in React docs, transforming it into a tabbed interface separating CLI and Manual Installation methods for better readability and ease of understanding. --- packages/react/src/docs/installation.mdx | 112 +++++++---------------- 1 file changed, 34 insertions(+), 78 deletions(-) diff --git a/packages/react/src/docs/installation.mdx b/packages/react/src/docs/installation.mdx index 0939f43..d31e2e1 100644 --- a/packages/react/src/docs/installation.mdx +++ b/packages/react/src/docs/installation.mdx @@ -1,80 +1,36 @@ +import {TabProvider, TabContent, TabList, TabTrigger} from "@components/Tabs"; +import {Code} from "@/components/LoadedCode"; + # Installation -## Main Dependency - -you have to install [TailwindCSS](https://tailwindcss.com/docs/installation) and [tailwind-merge](https://github.com/dhiwise/tailwind-merge) and configure it yourself. - -## Configuration - -Every PSWUI component uses `shared.tsx` core utility file. So, you have to care about import of `shared.tsx`. - -All component file uses `../shared.tsx` to import `shared.tsx`. -You can simply put `shared.tsx` at the same level as component folder, but you can also change import path to yours. - -## CLI - -Now, we have our [CLI](https://www.npmjs.com/package/@psw-ui/cli) to automatically install component and shared core utility. - -You can simply type this: - -```shell -$ [packageManager] install @psw-ui/cli - -$ pswui [COMMAND] ... -``` - -### `pswui list` - -`List` command prints the component registry, so you can check available or installed components. - -### `pswui add` - -`Add` command install component provided to your project. - -It adds: -* `shared.tsx` core utility -* `[component].tsx` component file - -You can configure the installation path and import path by configuration file. - -### Configuration - -#### Naming - -Basically, name of config file can be one of this: -* `pswui.config.js` -* `pswui.config.mjs` -* `pswui.config.cjs` - -CLI takes default export, so you should make it export as default. - -If you want to make CLi to take different config file, you can provide the configuration file name via flag: - -```shell -$ pswui [COMMAND] -p pswui-config.js -$ pswui [COMMAND] --config=pswui-config.js -``` - -#### Type - -There is export of `Config` type and `buildConfig` function in `@psw-ui/cli`. - -You can leverage your IDE's intellisense with those. - -```ts -import { Config } from "@psw-ui/cli" - -const config: Config = { - /* ... */ -} - -export default config -``` - -```ts -import { buildConfig } from "@psw-ui/cli" - -export default buildConfig({ - /* ... */ -}) -``` + + + Using CLI + Manual Install + + + 1. Install [TailwindCSS](https://tailwindcss.com/docs/installation) and [tailwind-merge](https://github.com/dhiwise/tailwind-merge) and configure it yourself. + 2. Add import alias for `@pswui-lib` in your `tsconfig.json` file. + + {`{\n "compilerOptions": {\n "paths": {\n "@pswui-lib": ["./pswui/lib.tsx"]\n }\n }\n}`} + + 3. Install [@psw-ui/cli](https://www.npmjs.com/package/@psw-ui/cli). + + {`$ npm install \@psw-ui/cli\n$ yarn add @psw-ui/cli\n$ pnpm add @psw-ui/cli`} + + 4. Run CLI to add components + + {`$ npx pswui add \n$ yarn pswui add \n$ pnpm pswui add `} + + 5. Import component, and use it. + + + 1. Install [TailwindCSS](https://tailwindcss.com/docs/installation) and [tailwind-merge](https://github.com/dhiwise/tailwind-merge) and configure it yourself. + 2. Add import alias for `@pswui-lib` in your `tsconfig.json` file. + + {`{\n "compilerOptions": {\n "paths": {\n "@pswui-lib": [""]\n }\n }\n}`} + + 3. Grab the library file from [here](https://raw.githubusercontent.com/pswui/ui/main/packages/react/lib.tsx) and put it in the library file path in the tsconfig. + 4. Now you can copy & paste your component in your project. + +