@justeat/f-loyalty
v3.4.1
Published
Fozzie Loyalty - provides a way for customers to collect loyalty stamps for restaurants
Downloads
113
Maintainers
Keywords
Readme
f-loyalty
provides a way for customers to collect loyalty stamps for restaurants
Usage
Installation
Install the module using npm or Yarn:
yarn add @justeat/f-loyalty
npm install @justeat/f-loyalty
Vue Applications
You can import it in your Vue SFC like this (please note that styles have to be imported separately):
import VLoyalty from '@justeat/f-loyalty';
import '@justeat/f-loyalty/dist/f-loyalty.css';
export default {
components: {
VLoyalty
}
}
If you are using Webpack, you can import the component dynamically to separate the v-loyalty
bundle from the main bundle.client.js
:
import '@justeat/f-loyalty/dist/f-loyalty.css';
export default {
components: {
// …
VLoyalty: () => import(/* webpackChunkName: "v-loyalty" */ '@justeat/f-loyalty')
}
}
Configuration
Props
There may be props that allow you to customise its functionality.
The props that can be defined are as follows (if any):
| Prop | Type | Default | Description | | ----- | ----- | ------- | ----------- |
Events
The events that can be subscribed to are as follows (if any):
| Event | Description | | ----- | ----------- |
Development
Start by cloning the repository and installing the required dependencies:
$ git clone [email protected]:justeat/fozzie-components.git
$ cd fozzie-components
$ yarn
Change directory to the f-loyalty
package:
$ cd packages/components/pages/f-loyalty
Testing
To test all components, run from root directory.
To test only f-loyalty
, run from the ./fozzie-components/packages/components/pages/f-loyalty
directory.
Unit and Integration tests
yarn test
Component and Accessibility Tests
# Note: Ensure Storybook is running when running the following commands
cd ./fozzie-components
yarn storybook:build
yarn storybook:serve-static
yarn test-component:chrome
### Accessibility tests
```bash
yarn test-a11y:chrome