React component library for all iperka apps using React and TypeScript.
In order to work the GitHub package registry must be added. See docs
$ yarn add @iperka/iui@latestNote that the instructions for using your library are slightly different if you published to a private repository. Everyone (aside from your own machine) who tries to import it is going to get a 404 Not Found error if they are not authorized.
Those users also need to add a
~/.npmrcfile with the same information. To be more secure however you can provide those users with an access token that has only read privileges, not write.(From this point onward we will presume you have completed that step, or are working with a public repository.)
Since we have created a component library using React and Typescript, we are presuming that the consumers of our library will be using those tools as well. Technically all of our type files (.d.ts) are supplemental: meaning they are simply ignored if working with standard Javascript, so it's not necessary to use Typescript to use our library. The types are simply there if desired.
For our example we will use it however so that we can confirm that they are working properly. We will initialize a React app using one of the most popular and simple methods: Create React App.
Run the following command in a new directory:
(Remember we are simulating other users downloading and installing our library, so this project should be completely separate from the library itself)
$ yarn create react-app my-app --template typescript
$ cd my-appOpen the new my-app directory that is created and run:
$ yarn startConfirm that you are able to open and load the default application screen on localhost:3000 (or whatever port it opens on).
Now comes the test for our library. From the root directory of your new my-app project, run the following command:
$ yarn add @iperka/iuiPresuming your tokens and configuration are set up properly, everything will install correctly (if there are any issues, revisit the example for the ~/.npmrc config.)
Import the library into the project and start adding components.
import { Button } from "@iperka/iui";
const Example = () => {
return <Button>Hello world</Button>;
};There are several predefined scripts that allow for easy development.
- Clone this repository.
- Install all required modules with
yarn. - Start Storybook with
yarn storybook. - Create or adjust components and watch life changes in storybook.
Disclaimer! If you are using a Window computer (I don't know why). Setting the NODE_ENV value via script may fail, just run npm i -g win-node-env and try again, this should solve the issue.
This script builds the library for production and creates all files in the dist folder.
$ yarn rollupThe test script runs all tests.
$ yarn testThe storybook script starts the storybook server. This is useful for development and testing.
$ yarn storybookIn order to create a new component you can use the following command:
$ yarn hygen component new MyComponentThis will automatically create a new component with the structure described in the next section.
To prevent nasty circular dependencies every component and structure includes a index.{ts,tsx} file which exports the required parts. Every other file depending on a exported function should include the index file only!
src/
βββ components/
β βββ Button/
β β βββ Button.stories.tsx # Defines storybook stories
β β βββ Button.test.tsx # Jest tests for this component
β β βββ Button.tsx # Component file
β β βββ Button.types.ts # Exports interface with props and states
β β βββ index.ts # Exports component file
β βββ index.ts # Exports all components with name
βββ index.ts # Exports all