@justeat/f-takeawaypay-activation
v3.6.1
Published
Fozzie TakeawayPay Activation - Handles Takeaway Pay activation for users
Downloads
101
Maintainers
Keywords
Readme
f-takeawaypay-activation
Handles Takeaway Pay activation for users
Usage
Installation
Install the module using npm or Yarn:
yarn add @justeat/f-takeawaypay-activation
npm install @justeat/f-takeawaypay-activation
Vue Applications
You can import it in your Vue SFC like this (please note that styles have to be imported separately):
import TakeawaypayActivation from '@justeat/f-takeawaypay-activation';
import '@justeat/f-takeawaypay-activation/dist/f-takeawaypay-activation.css';
export default {
components: {
TakeawaypayActivation
}
}
If you are using Webpack, you can import the component dynamically to separate the takeawaypay-activation
bundle from the main bundle.client.js
:
import '@justeat/f-takeawaypay-activation/dist/f-takeawaypay-activation.css';
export default {
components: {
// …
TakeawaypayActivation: () => import(/* webpackChunkName: "takeawaypay-activation" */ '@justeat/f-takeawaypay-activation')
}
}
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-takeawaypay-activation
package:
$ cd packages/components/pages/f-takeawaypay-activation
Testing
Unit, Integration and Contract
To test all components, run from root directory.
To test only f-takeawaypay-activation
, run from the ./fozzie-components/packages/components/pages/f-takeawaypay-activation
directory.
yarn test
Component Tests
# Run Component tests for all components
# Note: Ensure Storybook is not running when running the following commands
cd ./fozzie-components
yarn storybook:build
yarn storybook:serve-static
yarn test-component:chrome
OR
# Run Component tests for f-takeawaypay-activation
# Note: Ensure Storybook is not running when running the following commands
cd ./fozzie-components/packages/components/pages/f-takeawaypay-activation
yarn test-component:chrome