@kite-tech/photobook-sdk
TypeScript icon, indicating that this package has built-in type declarations

3.0.3 • Public • Published

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
 {
recipient_first_name: string,
recipient_last_name: string,
address_line_1: string,
address_line_2: string,
city: string,
county_state: 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

Package Sidebar

Install

npm i @kite-tech/photobook-sdk

Weekly Downloads

10

Version

3.0.3

License

ISC

Unpacked Size

27.5 kB

Total Files

20

Last publish

Collaborators

  • kite-machine-user
  • dbotha
  • tomgallard
  • sylwester.smolen
  • mattkay
  • a7xsv