@ongov/ontario-search
v1.9.11
Published
React components containing search bar and autosuggest to be used for search on ontario government websites
Keywords
Readme
Ontario.ca Search Components Package
This package contains the ontario.ca search bar and the associated autosuggest dropdown for it.
Development
To make development of the NPM package simpler, we have added a hot reload local server workflow to the project. It's very simple.
- Install all the required NPM packages by issuing
npm installfrom this folder - Run
npm run startto build the development bundle and serve it with hot reload
Note that in order to make this work as expected, we have created separate Webpack files to handle the two scenarios.
Packaging & Deployment
NPM Package Deployment (Automated)
NPM publishing is now fully automated via GitLab CI.
To publish a new version of the package:
- Ensure your changes are merged into the
mainbranch - Use Conventional Commits with the
(npm-components)scope, for example:feat(npm-components): add autocompletefix(npm-components): fix crash
What happens automatically
Once changes are merged into main, the CI pipeline will:
- Analyze commits since the last release
- Determine the version bump:
feat→ minorfix→ patchBREAKING CHANGE→ major
- Update the version in
package.json - Generate/update the
CHANGELOG.md - Create and push a git tag in the format:
npm-vX.X.X
- Trigger a new pipeline for packaging and publishing
Publishing to NPM
- The pipeline will prepare the package automatically
- If CI is set to manual deploy, you will need to click the publish job in GitLab
- Once completed, the package will be available on NPM
Important Notes
- Only commits with
(npm-components)scope trigger a release - No release will occur if there are no relevant commits
- Do not manually run
npm run npm-publish - Do not manually create
npm-vtags
Manual Override (Optional)
If needed, a release can still be triggered manually:
git tag npm-v1.2.3
git push origin npm-v1.2.3
## Package Use In Projects
To use the NPM package in your own project, you need to do the following:
1. Import the package into your project
2. Add server configuration as a `script` tag on the page like this:
3. Import the JS from the NPM package into the page via a script tag
4. Create an element on the page for the NPM package to hook into. This element
should have id of `ontario-search-autosuggest`
Example:
Tips and other things to consider when using this package
- Please recieve the proper
apiConfigfrom the Ontario.ca Search team. - The package must be imported/loaded after the DOM is loaded.
- Add the design system classes to the anchor element.
- We have implemented this package into our own
Ontario.ca Search Autosuggestrepository, it may be helpful to take a look! - There may be some minor CSS changes needed.
- Make sure the mobile searchOpen/searchClose buttons work as expected with the package imported. This includes focus being moved to the input on button click.
- It is recommended to nest a simple search bar in the element as a backup
in-case this package does not load. You would just need to make the submission
send the user to
https://www.ontario.ca/search/search-results/?query=QUERYandhttps://www.ontario.ca/fr/recherche/resultats-de-recherche/?query=QUERYHere is an example from the Ontario Design System of a simple search bar: https://designsystem.ontario.ca/components/detail/search-box.html
