Component library
Available Scripts
In the project directory, you can run:
npm run dev
Runs the app for local development.
Open http://localhost:5173/ to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
npm run build
Builds the app to the dist
folder, ready to be published or locally tested as a library.
Local testing with Yalc
For local testing our library without the necessity to publish to npm, you can use a small local repository called yalc
You can find complete documentation here.
Instalation
Using NPM:
npm i yalc -g
Using Yarn:
yarn global add yalc
Publishing built version to local repository
First we need to publish our library in order to be able to deploy it:
npm run build
Then you can publish current built version of this library using:
yalc push --sig
It will copy all the files that should be published in remote NPM registry. We are using --sig
flag, to ensure that the dependent project knows, that something has changed. Otherwise it will keep the last imported version in cache and not propagate current changes.
Import local library
To import our published library into dependent project you can use:
yalc link @bratislava/component-library
Now you can use the imported library in your code as such:
import { Input, Button } from '@bratislava/component-library'
Remove imported library
To remove the imported library you can use:
yalc remove @bratislava/component-library
Alternatively to remove all imported libraries use:
yalc remove --all
TS config
Short explanation of tsconfig usage in this library.
tsconfig-build.json
We want to exclude /src
from building, because its use is only for local dev. Because of that we use extension of our base tsconfig.json
to exclude it for build. This extended config needs to be referenced later in build script
tsc --p ./tsconfig-build.json && vite build
Using ComponentLibraryEnvironmentContext for native Next components
For harnessing functionality of Next native components along with functionalities of components of this library, you need to import ComponentLibraryEnvironmentContext
from '@bratislava/component-library'. It exposes provider.
- create wrapper for next/link
Example:
const LinkWrapper = ({
href,
children
}: {
href: string;
children: React.ReactNode
}) => {
return <Link href={href}>{children}</Link>
}
- Wrap consuming app in this provider f.e. in
index.tsx
and pass LinkWrapper asvalue
inComponentLibraryEnvironmentContext.Provider
<ComponentLibraryEnvironmentContext.Provider value={{Link: LinkWrapper}}>
<PageLayout>
<HomepageContent />
</PageLayout>
</ComponentLibraryEnvironmentContext.Provider>
- This will provide next/link context for
AriaAnchor
component from library, when it's imported and used inside of components wrapped in Provider Go to example