GithubHelp home page GithubHelp logo

ejwalker / emarsys-integration-js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from felin-arch/emarsys-integration-js

0.0 0.0 0.0 674 KB

Emarsys B2CMC side JavaScript integration library

License: MIT License

JavaScript 100.00%

emarsys-integration-js's Introduction

Build status

Branch Status
master Codeship Status for emartech/emarsys-integration-js
production Codeship Status for emartech/emarsys-integration-js

emarsys-integration-js

Emarsys Integration JS (SIJS) is an API providing methods of communication between Emarsys and integrated services running in an iframe. One can send post messages out of the iframe and SIJS will handle those requests if there is a handler for.

General message format

{
  "event": "handler",
  "data": {
    "some_key": "data"
   },
  "source": {
    "integration_id": "some_integration",
    "integration_instance_id": "iframe's random id"
  }
}

Fields

Field Role Mandatory
event Name of the handler to pass the message to. YES
some_key Arbitrary data the handler needs to work properly.
source This is a signature marking where the message came from. Every integration has an ID (eg. content-editor) and every integration iframe instance has an instance ID (a sufficiently large random number, actually). Though not all message handlers do rely on source, it is best to always include it in your message. MIXED

Message handlers available

Alert

This handler will render a sticky e-alert box on top of the page and remove it after a timeout has elapsed.

Message format

{
  "event": "alert",
  "data": {
    "text": "Error saving content",
    "icon": "circle-exclamation",
    "className": "e-alert-danger",
    "timeout": 3000
  }
}

Fields

Field Role Mandatory Default
text Alert message. YES
icon Icon class of the icon to be rendered on the left side of the alert. Eg. 'check' for a check mark or 'exclamation-circle' for an exclamation mark in a circle. NO
className Alert sub-class to use when rendering the alert. Eg. 'e-alert-success' for a green bar, 'e-alert-danger' for a red one. NO
timeout Amount of time after the alert will fade out and get removed from the DOM, in milliseconds. NO 5000

Confirm

This handler will open a confirm dialog with the content given.

Message format

{
  "event": "enable_button",
  "data": {
    "title": "Are you sure you want to navigate away?",
    "body": "You have unsaved changes you will lose if navigating away.",
    "ok": "Yes I am",
    "cancel": "No, I'm not"
  }
}

Options

Field Role Mandatory Default
title: String Title of the confirm dialog. YES
body: String Body text of the confirm dialog. NO
cancel: String Text of Cancel button. YES
ok: String Text of OK button. YES

EnableButton

This handler will remove the class e-btn-disabled from a selection of DOM elements.

Message format

{
  "event": "enable_button",
  "data": {
    "selector": "#foo-id"
  }
}

Fields

Field Role Mandatory
selector jQuery selector. YES

GetUrl

This handler will respond with a prespecified URL. Target URLs are built using data passed in the message. Session ID is provided by the handler if needed. See Navigate for the targets that can be used.

Message format

{
  "event": "get_url",
  "data": {
    "eventId": 111,
    "target": "some/prespecified/path",
    "params": {
      "foo": "foo_indeed"
    }
  }
}

Response format

{
  "id": 111,
  "success": true,
  "url": "path.php?session_id=SESSIONID&action=foo_indeed"
}

Response format in case of error

{
  "id": 111,
  "success": false,
  "error": "something went terribly wrong"
}

Fields

Field Role Mandatory
target The prespecified target you would like to have a link to. YES
params.foo The general param the actual target needs. MIXED
eventId The unique identifier of the message, it will be returned in the response. YES

Modal

This handler will open a modal dialog with content provided by either Emarsys or your service rendered in an iframe inside the modal. It will generate a new integration instance ID for the iframe and glue integration_id, integration_instance_id and opener_integration_instance_id to the iframe URL.

Message format

{
  "event": "modal",
  "data": {
    "src": "some-url-in-your-service",
    "width": 500,
    "height": 200,
  },
  "source": {
    "integration_id": "some_integration",
    "integration_instance_id": "12345"
  }
}

Fields

Field Role Mandatory Default
src An URL where the markup of the modal content can be found. YES
width Width of the iframe we'll include in the modal. NO 650
height Height of the iframe we'll include in the modal. NO 500
source.integration_id ID of the integration the message is coming from. NO
source.integration_instance_id Random instance ID of the integration the message is coming from. YES

Iframe URL query params auto-added

Param name Role
integration_id Integration ID.
integration_instance_id The new auto-generated instance ID.
opener_integration_instance_id Instance ID of the integration the modal was opened by.

Modal:close

This handler will remove any e-modal elements from the DOM.

Message format

{
  "event": "modal:close"
}

Navigate

This handler will navigate the browser's main window to a prespecified URL. Target URLs are built using data passed in the message. Session ID is provided by the handler if needed.

Message format

{
  "event": "navigate",
  "data": {
    "target": "some/prespecified/path",
    "params": {
      "foo": "foo_indeed"
    }
  }
}

Fields

Field Role Mandatory
target The prespecified target you would like to head to. YES
params.foo The general param the actual target needs. MIXED

Targets available

Target Action Params
email_campaigns/list Will head to the campaign list.
email_campaigns/create Will open the editor with a new campaign. use_template, mailstream
email_campaigns/edit Will open the editor with the campaign set. campaign_id
email_campaigns/preview Will open the preview of the campaign set. campaign_id
email_campaigns/copy Will open the editor with a new copied campaign. campaign_id
email_campaigns/blocks/create Will open the content blocks template selector. mailstream
email_analysis/list Will head to reporting.
email_analysis/details Will head to reporting details of a campaign. campaign_id, launch_id
bounce_management/list Will head to Bounce management page only_mailstreams
administrators/profile Administrator profile page admin_id
administrators/list Administrator list page
administrators/security-settings Security settings page
administrators/locked_out Login page with locked out error message
segments/combine Combine a segment segment_id
segments/edit Edit a segment segment_id
combined_segments/list List combined segments
trendsreporting/trends Trend reporting page
trendsreporting/trends/campaign Trend reporting page for specific campaign campaign_id
me_push/edit Mobile Engage push campaign editor id
me_push/report Mobile Engage push campaign report (push internal campaign id) id
me_push/campaigns Mobile Engage push campaigns list
me_push/inapp-campaigns Mobile Engage inapp campaigns list
me_push/inapp-campaigns/report Mobile Engage inapp campaign report id
me_push/inapp-campaigns/edit Mobile Engage inapp campaign edit id
sms/dashboard SMS Dashboard
sms/settings SMS Settings
program/list AC program overview
program/new Create an AC program
program/edit AC program editor id
program/summary AC program report id
rti/edit RTI program editor id
rti/report RTI program report id
revenue_attribution/settings Revenue Attribution settings
revenue_attributor/settings New Revenue Attribution settings
homepage Homepage
forms/edit Will open the form editor page form_id

Proxy

This handler will forward a message to another integration iframe.

Message format

{
  "event": "proxy",
  "data": {
    "event": "service-event",
    "envelope": {
      "some_key": "data"
    },
    "integrationInstanceId": "9876"
  }
}

Fields

Field Role Mandatory
envelope The message passed to the recipient iframe. NO
integrationInstanceId The random ID of the integration you would like to send the message to. YES

Refresh

This handler will reload the actual browser window.

Message format

{
  "event": "refresh"
}

Resize

This handler will resize the iframe the message came from.

Message format

{
  "event": "resize",
  "data": {
    "height": 100,
  },
  "source": {
    "integration_id": "some_integration",
    "integration_instance_id": "12345"
  }
}

Fields

Field Role Mandatory
height The iframe's desired height. YES
source.integration_id ID of the integration the message is coming from. NO
source.integration_instance_id Random instance ID of the integration the message is coming from. YES

Track

This handler will call Google Analytics API if available with the given options.

Message format

{
  "event": "track",
  "data": {
    "eventCategory": "some_category",
    "eventAction": "some_action",
    "eventLabel": "some_label",
    "hitType": "event"
  }
}

Unload:init

This handler will set up click handler for <a> elements, popping a navigation confirm dialog when clicked. It makes sense to call send this event right after your content gets dirty.

Message format

{
  "event": "unload:init",
  "data": {
    "selector": "#menu",
    "confirm": {
      "title": "Are you sure you want to navigate away?",
      "body": "You have unsaved changes you will lose if navigating away.",
      "ok": "Yes I am",
      "cancel": "No, I'm not"
    }
  }
}

Fields

Field Role Mandatory Default
selector: String Selector for ancestor elements of <a> elements. YES
confirm: Object Options for confirm dialog. See dialog.confirm(). NO Options for a general unload confirm dialog.

Unload:reset

Stopping to watch click events of elements selected by selector. It makes sense to call this method right after your content gets clean (ie. saved).

Message format

{
  "event": "unload:reset",
  "data": {
    "selector": "#menu"
  }
}

Fields

Field Role Mandatory
selector: String Selector for ancestor elements of <a> elements. YES

Functions available

getFullUrlByTarget

Get URL by target (same targets available as in navigate message handler), useful for links.

window.Emarsys.integration.getFullUrlByTarget({
  target: 'me_push/edit',
  params: {
    id: 318
  }
})

navigate

Redirect to target (same targets available as in navigate message handler).

window.Emarsys.integration.navigate({
  target: 'me_push/edit',
  params: {
    id: 318
  }
})

Development

If you would like to make local changes, you need to run gulp start. You can reach the resulting code on this local URL then.

Running tests

If you want to run the tests on your machine you can do by executing one of the following commands:

gulp test
npm test

If you don't have gulp on your machine you can install by executing the following command:

npm i -g gulp

Deployment

Code is automatically built and deployed whenever there is a new changeset in following branches:

Changes to branch Go live on environment
master staging
production production

So you can push your changes into the master branch, and Codeship will deploy it to the staging environment. Also you can merge your changes to the master branch, and it will be deployed to production by Codeship:

git checkout production
git pull --rebase
git merge origin master
git push

emarsys-integration-js's People

Contributors

akapa avatar bankyadam avatar barna-emarsys avatar blasiusvonszerencsi avatar boogie avatar czeildi avatar dbodis avatar dkocsis-emarsys avatar ejwalker avatar eszterkaloz avatar felin-arch avatar fentosi avatar gergaczd avatar halaz-lazlo avatar hawser86 avatar iszeleiemarsys avatar judge avatar jzsfkzm avatar knagy avatar lillavirag avatar lveraszto avatar m4w4q7 avatar mkls avatar rudywaltz avatar sandorfodor avatar shyro avatar sonicoder86 avatar szeist avatar szenti avatar valetudox avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.