@kite-tech/photobook-sdk

Prodigi photobook maker SDK

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
@kite-tech/photobook-sdk
3.0.33 years ago6 years agoMinified + gzip package size for @kite-tech/photobook-sdk in KB

Readme

Prodigi Photobook Maker SDK
Prodigi offers white label print on demand portals so that you can sell to your users under your brand.
This SDK is compatible with the Prodigi Photobook Maker. Get your own branded instance at Prodigi Apps Dashboard.
With the Photobook Maker SDK, you can integrate your Photobook maker app into your own website, launching it with pre-configured data, such as images, at run-time.

Table of Contents

Demo and examples

For a list of common use-cases and a demo sandbox, visit: https://sdk.prodigi.com/photobook-maker

Installation

Install using NPM:
npm install @kite-tech/photobook-sdk

Usage

Import the package:
import { KitePhotobook } from '@kite-tech/photobook-sdk';
Launch your Photobook Maker app using the launchPhotobook function and pass in your desired configuration:
const photobookMakerConfig = {
    baseUrl: 'https://photobook.prodigi.com/prodigi',
    images: []
};

KitePhotobook.launchPhotobook(photobookMakerConfig);

API

| Property | Type | Required | Description | |--------------------|-------------------------------------------------|----------|--------------------------------------------------------------------------------------------------------------------------------| | baseUrl | string | YES | The complete URL of your Photobook Maker | | addNewImagesToBook | boolean | NO | If true, any images passed in are automatically added to the Photobook. Default is false | | bookSpineText | string | NO | Optional text to print on the spine of the Photobook | | clearBook | boolean | NO | Clear the Photobook and image library on launch. Default is false | | config |
{
startInNewTab: boolean
}
| NO | If true, the app opens in a new tab/window. Default is false | | checkoutFields | CheckoutFieldsObject | NO | Populate the user's details on the checkout | | images | ImagesArray | YES | Pass in images to use in the Photobook | | variantTemplateId | string | NO | Launch into a specific Photobook variant. Template IDs can be found inside the Prodigi apps dashboard. |

CheckoutFieldsObject

| Property | Type | Required | Description | |-----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------|------------------------------------------------------------------------| | shippingAddress |
 {
recipientfirstname: string,
recipientlastname: string,
addressline1: string,
addressline2: string,
city: string,
countystate: string,
postcode: string,
country: string,
} | NO | Populates the user's shipping address at the checkout. All values are optional | | customerEmail | string | NO | Sets the user's email address when they reach the checkout | | termsOfService | boolean | NO | Sets whether to automatically agree to terms of service on checkout |

ImagesArray

An array of objects having the following properties:
| Property | Type | Required | Description | |--------------|-----------------------------------------------------|----------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | dimensions |
{
width: number,
height: number
} | NO | The dimensions of the image URL specified. If not set, the dimensions for all images are calculated before launch.

If you cannot specify image dimensions and have a large number of images, it is recommended to display a loading spinner until the app is launched. | | thumbnailUrl | string | YES | Lower resolution image URL, used for rendering previews in the browser | | url | string | YES | Full resolution image URL, used for printing |