forked from ampproject/amphtml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathembedly.js
119 lines (104 loc) · 3.07 KB
/
embedly.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/**
* Copyright 2018 The AMP HTML Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS-IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {hasOwn} from '../src/utils/object';
import {loadScript} from './3p';
import {setStyle} from '../src/style';
/**
* Embedly platform library url to create cards.
* @const {string}
*/
const EMBEDLY_SDK_URL = 'https://cdn.embedly.com/widgets/platform.js';
/**
* Event name emitted by embedly's SDK.
* @type {string}
*/
const RESIZE_EVENT_NAME = 'card.resize';
/**
* Css class expected by embedly library to style card.
* @const {string}
*/
const CARD_CSS_CLASS = 'embedly-card';
/**
* Whitelisted card options.
*
* - Key is in camel case as received in "data".
* - The value is in the format expected by embedly.
*
* @see {@link http://docs.embed.ly/docs/cards#customize}
* @const @enum {string}
*/
export const CardOptions = {
cardVia: 'card-via',
cardTheme: 'card-theme',
cardImage: 'card-image',
cardControls: 'card-controls',
cardAlign: 'card-align',
cardRecommend: 'card-recommend',
cardEmbed: 'card-embed',
cardKey: 'card-key',
};
/**
* Loads embedly card SDK that is consumed by this 3p integration.
*
* @param {!Window} global
* @param {function(!Object)} callback
* @visibleForTesting
*/
function getEmbedly(global, callback) {
loadScript(global, EMBEDLY_SDK_URL, function() {
callback(global);
});
}
/**
* Creates embedly card using sdk.
*
* @param {!Window} global
* @param {!Object} data
*/
export function embedly(global, data) {
const card = global.document.createElement('a');
card.href = data.url;
card.classList.add(CARD_CSS_CLASS);
// Add whitelisted data attributes and values to card
// when these are provided by component.
for (const key in CardOptions) {
if (
hasOwn(CardOptions, key) &&
typeof data[key] !== 'undefined'
) {
card.setAttribute(`data-${CardOptions[key]}`, data[key]);
}
}
const container = global.document.getElementById('c');
// Adds support to embedly dark theme not set by the sdk
if (data['cardTheme'] === 'dark') {
setStyle(container, 'background', 'rgba(51, 51, 51)');
}
container.appendChild(card);
getEmbedly(global, function() {
// Given by the parent frame.
delete data.width;
delete data.height;
global.window['embedly']('card', card);
// Use embedly SDK to listen to resize event from loaded card
global.window['embedly']('on', RESIZE_EVENT_NAME, function(iframe) {
context.requestResize(
iframe./*OK*/width,
parseInt(iframe./*OK*/height, 10) + /* margin */ 5
);
});
});
}