A library of UI components to be used in Bluesquare apps.
If you make additions or changes to the library, run npm run clean && npm run build
and commit the updated /dist
folder before pushing.
Some components have built-in translations (Frenh and English), e.g. when hovering over an icon, that use react-intl
. You can import the json files in your project from the node_modules and merge them with your own, e.g:
import fr from 'src/myTranslations';
import en from 'src/myTranslations';
import frLibrary from '../node_modules/bluesquare-components/dist/locale/fr.json';
import enLibrary from '../node_modules/bluesquare-components/dist/locale/en.json';
const messages = {
fr: { ...fr, ...frLibrary },
en: { ...en, ...enLibrary },
};
run npm run build-local
to generate a tgz file.
In your application's package.json
, add:
"bluesquare-components":"file:/local/path/to/lib/bluesquare-components-<version>.tgz"
Note that the .tgz file should be in a /lib
folder
run npm i
, or npm update bluesquare-components
to update to the latest version if it's already installed.
In your application's package.json
, add:
"bluesquare-components":"git://github.com/BLSQ/bluesquare-components"
run npm i
to install, or npm update bluesquare-components
to update to the latest version if you already depend on the package.
Be careful as the command below will work locally but cause authetication failure when run in Docker:
"bluesquare-components":"git://github.com/BLSQ/bluesquare-components.git#<commit-ish>"
To depend on the repo, run npm run compile
and push the dist
folder, then depend on the library as mentioned above.
To depend on a local version of the library (if you need it inside the container):
- Run
npm run build-local
- Build an image from the Dockerfile:
docker build --tag <library-name> .
- Modify your
package.json
:
"bluesquare-components":"file:path/to/lib/compiled_file.tgz"
- In your project, run
npm i
- Modify your project's Dockerfile to have a multi staged build in order to be able to copy the .tgz file in your container.
- Build your projects Docker image and start the container.
To update the dependency:
- Run
npm run build-local
- Build an image from the Dockerfile:
docker build --tag <library-name> .
- In your project, run
npm update bluesquare-components
- Update your project's Docker image
- Start the container
Coming soon.
Comment
component is slightly adapted from Hatem's CodeSandbox
LazyImage
is taken from react-lazy-progressive-image, which is not maintained anymore