PerfectGym / ClientPortal.Embed

MIT License
1 stars 1 forks source link

Perfect Gym Client Portal Embed

npm version NPM Downloads

This library is the best way for your company to embed PerfectGym's Client Portal on your site. It provides a range of features which covers intergration needs:

jsFiddle live demo.

Demo with own navigation

Calendar embeding demo

Changelog

Embedding tips

Embedded Client Portal has transparent background, basic branding looks best on grey/blurred image background. To maintain best responsiveness it is recommended to set your Embedded Client Portal width to full page width.

The simplest way of embedding Client Portal on your site

We recommend including ClientPortal.Embed and iframe-resizer using jsDelivr CDN.

  1. Add ClientPortal.Embed styling.

At the end of <head> add:


<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@perfectgym/client-portal@latest/dist/ClientPortal.css"></link>
  1. Add iframe-resizer GitHub page and ClientPortal.Embed GitHub page libraries.

At the end of <body> tag add:


<script src="https://cdn.jsdelivr.net/npm/iframe-resizer/js/iframeResizer.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@perfectgym/client-portal@latest/dist/ClientPortal.min.js"></script>
  1. Initialize library.

After scripts form 2nd point add:


<script>
    window.onload = function () {
        var ClientPortal = window.PerfectGym.ClientPortal;

        // element to which ClientPortal will be appended
        var clientPortalElement = document.getElementById('pg-client-portal');
        var options = {
            url: "CLIENT_PORTAL_URL"
        }

        var embeddedClientPortal = new ClientPortal(clientPortalElement, options);
    }
</script>
  1. Reload your page

Click here to play with live demo.

Installation

Package can be installed via NPM.

npm install @perfectgym/client-portal

It requires iframe-resizer as dependency.

Usage


import ClientPortal from "@perfectgym/client-portal";

// element to which ClientPortal will be appended
var clientPortalElement = document.getElementById('pg-client-portal');
var options = {
    url: "CLIENT_PORTAL_URL"
}

var embeddedClientPortal = new ClientPortal(clientPortalElement, options);

API

API section covers:

  1. Constructor options Core Options
  2. Methods
  3. Data types

Options

Options object must be passed passed to new ClientPortal constructor. url parameter is required. The rest are optional.


var options = {
    url: "CLIENT_PORTAL_URL"
}

new ClientPortal(clientPortalElement, options);

Core Options

url [REQUIRED]

Client Portal application url without fragment(the part before #). If Client Portal is hosted on PerfectGym domain correct url looks like: https://CLUB_NAME.perfectgym.pl/ClientPortal2/.

 

forceUrl

Url to Client Portal application. It will be loaded regarding url, defaultState or defaultStateParams as the first page that user sees on the embedded Client Portal. It's main functionality is to give simple way of displaying calendar with predefined filters on your page. Example forceUrl value looks like: https://CLUB_NAME.perfectgym.pl/ClientPortal2/#/Classes/1/Calendar?timeTableId=12&trainerId=92. Domain from this option must match domain in url option.

defaultState

First state showed to user after load. Unauthenticated users are redirected to ClientPortal.State.Login.

defaultStateParams

State params from with which Client Portal will be loaded.

language

If language option is not set Client Portal tries to use user's browser language. If browser language is not supported by Club's Client Portal then language is set to default Client Portal language. For list of available languages in your company please contact PerfectGym support.

minHeight

Client Portal min height in pixels.

onConnect

Callback fired when iframe connects to Client Portal.

onUserLoggedIn

Callback fires when user logs in to Client Portal.

onUserLoggedOut

Callback fires when user logs out from Client Portal.

onStateChangeSuccess

Callback fires on state (view) change.

onContentScroll

This function is used to override default library scroll behaviour. scrollTop is scroll value which normally would be used to scroll parent page window.

topOffset

Used to adjust scroll behaviour. If you have floating navigation which isn't pinned when page is scrolled to top and you have a bug in which field to which page is scrolled on validation error is hidden under floating navigation. Then topOffset property should have passed navigation height (as a number).

brandingId

Used to apply a specific branding theme.


calendarPage options

hideBookingIfNotLogged

* type: boolean
* default: false

Hides "Book now" button on calendar when user is not logged. This function is useful when you want to embed only calendar on your site.

disableCourseEnrollment

* type: boolean
* default: false

Disables a possibility to enroll for a course from within an embedded ClientPortal.


loginPage options

var options = {
    url: "CLIENT_PORTAL_URL",
    loginPage: {
        navbar: true,
        logo: true
    }
}

var embeddedClientPortal = new ClientPortal(clientPortalElement, options);

Object helpful in customizing login page.

navbar

* type: boolean
* default: true

Show header.

logo

* type: boolean
* default: true

Show logo in header.


navigation options

var options = {
    url: "CLIENT_PORTAL_URL",
    navigation: {
        hide: false,
        logo: true
    }
}

var embeddedClientPortal = new ClientPortal(clientPortalElement, options);

Options responsible for customizing navigation visible after user logs in.

hide

* type: boolean
* default: false

Show navbar.

logo

* type: boolean
* default: true

registration options

var options = {
    url: "CLIENT_PORTAL_URL",
    registration: {
        logo: true
    }
}

var embeddedClientPortal = new ClientPortal(clientPortalElement, options);

Options responsible for customizing registration.

logo

* type: boolean
* default: true

loadMask options

var options = {
    url: "CLIENT_PORTAL_URL",
    loadMask: {
        disable: true,
        onShow: () => { console.log('show my load mask')},
        onHide: () => { console.log('hide my load mask')}
    }
}

var embeddedClientPortal = new ClientPortal(clientPortalElement, options);

Options responsible for customizing load mask.

disable

Decides whether to show default Client Portal load mask. Load mask shows when Client Portal is requesting server data or on view change. If changed to true you should use onShow() and onHide() options to show load mask on your site preventing user from making actions in ClientPortal.

disableOnInit

Decides whether to hide load mask on initializing iframe.

onShow

Callback fired when Client Portal normally shows load mask.

onHide

Callback fired when Client Portal normally hides load mask.


modal options

var options = {
    url: "CLIENT_PORTAL_URL",
    modal: {
        disableOverlay: false
    }
}

var embeddedClientPortal = new ClientPortal(clientPortalElement, options);

disableOverlay

Decides whether to show modal overlay layer on top and bottom of the iframe.

Overlay covers elements outside of iframe on parent element to focus user attention on popups and other elements opened in Client Portal.

If set to false dark overlay will be used only on elements inside modal. If you would like to use your own overlay use onShow() and onHide() callback options.

onShow

Callback when Client Portal shows modal (popup).

onHide

Callback fires when Client Portal hides modal (popup).

onMobileOpen

Some dropdowns opens only on mobile mode. This callback fires when fullscreen dropdown opens on mobile mode.

onMobileClose

Callback fires when dropdown opened only on mobile mode closes.


Methods

Methods can be used on embedded Client Portal object. All methods returns promise which is resolved on response from server.

goTo

Navigates through ClientPortal. States are held in ClientPortal.State object.

Usage:

var CP = new ClientPortal(element, options)

CP.goTo(ClientPortal.State.Login)

logout

Logouts user.

changeLanguage

Changes client portal language.

Language code is a two letters string standardized by ISO 639-1.

isUserLoggedIn

Returns info if user is authenticated.

getElement

Returns iframe element.

Client Portal types

Types listed below are used as return types or parameters in options and methods.

ClientPortal.State

Can be used in implementing own navigation, using goTo() method.


CP.goTo(ClientPortal.State.<STATE_FROM_LIST_BELOW>)

ClientPortalAuthInfo

{
    isAuthenticated: boolean,
    user: ClientPortalUserInfo
}

ClientPortalUserInfo

{
    FirstName: string,
    LastName: string,
    Email: string,
    HomeClubId: number,
    PhotoUrl: string,
    Type: string
}

ClientPortalChangeStateInfo

{
    fromState: ClientPortalStateInfo,
    toState: ClientPortalStateInfo,
    isVirtual: boolean
}

ClientPortalStateInfo

{
    auth: boolean,
    name: string,
    params: Object //depends on current view
}

Release notes