@movmo/express-checkout-button
v1.10.1
Published
React component plugin for embedding Movmo Express Checkout on airline websites.
Downloads
1,928
Maintainers
Readme
Movmo Express Checkout Button
A React component for integrating Movmo's Express Checkout functionality into airline websites.
Installation
npm install @movmo/express-checkout-buttonor
yarn add @movmo/express-checkout-buttonUsage
Basic Example with Pre-saved Offer
If you have already saved the flight offer to Movmo's system and have an offer ID:
import React from 'react';
import { MovmoCheckoutButton } from '@movmo/express-checkout-button';
// Important: Import the styles
import '@movmo/express-checkout-button/dist/index.css';
function MyBookingPage() {
return (
<div className="booking-page">
<h1>Complete your booking</h1>
<MovmoCheckoutButton
iataCode="PR"
apiKey="your-movmo-api-key"
providerID="amadeus"
flightOfferID="offer-123-456-789"
isProd={false} // Set to true for production environment
/>
</div>
);
}
export default MyBookingPage;Example with Raw Flight Offer
If you have the raw flight offer data that needs to be saved when the button is clicked:
import React from 'react';
import { MovmoCheckoutButton } from '@movmo/express-checkout-button';
// Important: Import the styles
import '@movmo/express-checkout-button/dist/index.css';
function MyBookingPage() {
// Flight offer data retrieved from your booking system (Amadeus, Sabre, etc.)
const flightOffer = {
// Your raw flight offer data from the provider
};
return (
<div className="booking-page">
<h1>Complete your booking</h1>
<MovmoCheckoutButton
iataCode="AA"
apiKey="your-movmo-api-key"
providerID="sabre"
flightOffer={flightOffer}
isProd={false} // Set to true for production environment
/>
</div>
);
}
export default MyBookingPage;Props
| Prop | Type | Required | Description |
| --------------- | ------- | -------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| iataCode | string | Yes | The IATA code for the airline |
| apiKey | string | Yes | Your Movmo API key |
| providerID | string | Yes | The provider identifier (e.g., "amadeus", "sabre", "duffel") |
| flightOffer | object | No* | The raw flight offer data object from the provider. Required if flightOfferID is not provided |
| flightOfferID | string | No* | The ID of a pre-saved flight offer. Required if flightOffer is not provided |
| isProd | boolean | No | Whether to use production endpoints (default: false). When true, uses production API and flights URLs; when false, uses e2e (testing) endpoints |
*Note: Either flightOffer or flightOfferID must be provided, but not both.
Provider Options
The providerID prop accepts provider identifiers as strings. Common providers include:
// Common provider IDs
'amadeus'; // For Amadeus flight data
'sabre'; // For Sabre flight data
'duffel'; // For Duffel flight data
// ... and other supported providersEnvironment Configuration
The isProd prop controls which Movmo endpoints are used:
When
isProd={false}(default):- API endpoint:
https://e2e.api.movmo.io - Flights UI:
https://flights.e2e.movmo.io
- API endpoint:
When
isProd={true}:- API endpoint:
https://api.movmo.io - Flights UI:
https://flights.movmo.io
- API endpoint:
Analytics (scoped)
MovmoCheckoutButton self-instruments the pre-iframe funnel — from the button rendering on
the airline page through the traveler landing inside the Movmo checkout — using
@movmo_app/analytics in scoped mode. Scoped mode disables every document-level listener
the SDK would otherwise install (click/rage-click/hover/scroll/field/section autocapture);
the button only ever attaches listeners to its own DOM node and the checkout overlay it
creates. It never observes the partner's page, reads partner form fields, or inspects
anything outside those two elements. The airline identifier passed as iataCode becomes
partner_id, and the partner page's hostname is the only page context transmitted —
never the path, full URL, referrer, page content, or DOM structure.
Ten events cover the funnel:
| Event | Fires when |
| ------------------------------ | ------------------------------------------------------------------------ |
| plugin_loaded | The button mounts and the scoped tracker initializes |
| button_viewed | The button crosses 50% viewport visibility (once per mount) |
| button_hovered | The pointer leaves the button after a ≥200ms hover |
| button_clicked | The button is clicked |
| offer_save_started | A raw flight offer begins saving (no pre-saved flightOfferID) |
| offer_save_succeeded | The offer save call returns an offer ID |
| offer_save_failed | The offer save call returns no offer ID (previously a silent no-op) |
| overlay_opened | The checkout overlay iframe is created |
| iframe_ready | The embedded flights-ui document sends its first MOVMO_READY handshake |
| overlay_abandoned_pre_iframe | The overlay is torn down before MOVMO_READY was ever seen |
iframe_ready and overlay_abandoned_pre_iframe are mutually exclusive per overlay open —
whichever happens first wins, and neither fires again until the overlay is reopened. Both
carry a ms_since_open property so you can track how long the iframe took to load or how
quickly a traveler bounced.
Every tracking call is fail-open: analytics never throws, and a network or init failure never blocks or delays checkout.
Configuration:
- The analytics ingest endpoint defaults to
https://api.movmo.io/v1/t(prod) /https://e2e.api.movmo.io/v1/t(e2e), selected by the sameisProdprop as the checkout URL. Override it withREACT_APP_MOVMO_ANALYTICS_URL(inlined at build time), the same mechanism asREACT_APP_MOVMO_CHECKOUT_URL. - On click, the button appends an
mvs(Movmo session) query param to the checkout URL with its current analytics session id. The embedded flights-ui SDK adopts that id on load, sobutton_viewed→ … →booking_confirmedall land in one session instead of two.
CSS Integration
You must import the component's CSS for proper styling:
// Import the styles
import '@movmo/express-checkout-button/dist/index.css';Development
Running Storybook
To run the component in a local development environment with interactive documentation:
# Install dependencies
npm install
# Start Storybook
npm run storybookThis will launch Storybook at http://localhost:6006 where you can explore and interact with the component.
Building the Component
npm run buildStorybook Examples
The Storybook includes several examples:
- With Pre-saved Offer ID: Example using a pre-saved flight offer ID
- With Raw Flight Offer: Example with raw Amadeus flight offer data that will be saved on button click
- Production Environment: Example configured for production environment
- Minimal With Offer ID: Minimal configuration example with just the required props
License
MIT
