HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<h1>In-Page Experience API Tester</h1>
<p>If you do not provide account information, a Brightcove Learning test account will be used.</p>
<div class="buttonBlock">
<p><strong>Account Information</strong></p>
<p><input id="account_id_input" type="text" size="30" value=""> Account id</p>
<p><input id="client_id_input" type="text" size="30" value=""> Client id</p>
<p><input id="client_secret_input" type="text" size="30" value=""> Client secret</p>
</div>
<div class="buttonBlock">
<p><strong>Create Experience</strong></p>
<p>
<button id="get_templates" class="bcls-button">Get Account Templates</button></p>
<p>
<select name="template_selector" id="template_selector"></select>
</p>
<p>
<button id="create_ipx" class="bcls-button">Create Experience</button>
</p>
</div>
<div class="buttonBlock">
<p><strong>Add Video/Playlist</strong></p>
<p>
<button id="get_videos" class="bcls-button" disabled="disabled">Get Videos</button>
<button id="get_playlists" class="bcls-button" disabled="disabled">Get Playlists</button>
</p>
<p>
<select id="video_selector"></select>
</p>
<p>
<button id="update_experience" class="bcls-button" disabled="disabled">Add Video/Playlist</button>
</p>
</div>
<div class="buttonBlock">
<p><strong>Publish</strong></p>
<p>
<button id="publish_experience" class="bcls-button" disabled="disabled">Publish Experience</button>
</p>
<p>
<button id="reset_app" class="bcls-reset">Reset</button>
</p>
</div>
<p><strong>API request:</strong></p>
<textarea id="apiRequest" class="bcls-code" style="height:.7rem;min-height:.7rem;"></textarea>
<p><strong>Input data for write requests:</strong></p>
<textarea id="apiData" class="bcls-code"></textarea>
<p><strong>Request method:</strong></p>
<textarea id="apiMethod" class="bcls-code" style="height:.7rem;min-height:.7rem;"></textarea>
<p><strong>Response data</strong></p>
<textarea id="apiResponse" class="bcls-code"></textarea>
/* * The body style is just for the
* background color of the codepen.
* Do not include in your code.
*/
body {
background-color: #111;
color: #f5f5f5;
font-family: sans-serif;
margin: 2em;
}
/*
* Styles essential to the sample
* are below
*/
.bcls-code {
color: #111;
font-family: 'Source Code Pro',monospace;
padding: 1em;
width: 90%;
min-height: 5em;
background-color: #cfcfcf;
font-size: 1rem;
}
.bcls-button {
padding: .5em;
background-color: #333;
border: 1px yellow solid;
border-radius: .5em;
color: yellow;
cursor: pointer;
}
fieldset {
color: #64AAB2;
border: 1px #64AAB2 solid;
border-radius: .5em;
}
.buttonBlock {
display: inline-block;
padding: 1em;
border-right: 1px white solid;
vertical-align: top;
}
var BCLS = (function(window, document) {
var ipxURL = 'https://experiences.api.brightcove.com/v1/accounts/',
cmsURL = 'https://cms.api.brightcove.com/v1/accounts/',
proxyURL = 'https://solutions.brightcove.com/bcls/bcls-proxy/bcls-proxy-v2.php',
video_id,
playlist_id,
default_account_id = '57838016001',
new_experience_id,
new_experience_name,
new_experience_template,
is_playlist_template = true;
account_id_input = document.getElementById('account_id_input'),
client_id_input = document.getElementById('client_id_input'),
client_secret_input = document.getElementById('client_secret_input'),
template_selector = document.getElementById('template_selector'),
video_selector = document.getElementById('video_selector'),
apiRequest = document.getElementById('apiRequest'),
apiData = document.getElementById('apiData'),
apiMethod = document.getElementById('apiMethod'),
apiResponse = document.getElementById('apiResponse'),
// buttons
all_buttons = document.querySelectorAll('.bcls-button'),
get_templates = document.getElementById('get_templates'),
create_ipx = document.getElementById('create_ipx'),
get_videos = document.getElementById('get_videos'),
get_videos = document.getElementById('get_videos'),
get_playlists = document.getElementById('get_playlists'),
update_experience = document.getElementById('update_experience'),
publish_experience = document.getElementById('publish_experience'),
reset_app = document.getElementById('reset_app'),
all_templates = [],
single_video_templates = [
'ee-single-video'
],
playlist_templates = [
'ee-carousel',
'ee-grid',
'ee-horizontal-playlist',
'ee-thumbnail',
'ee-vertical-playlist'
],
live_templates = [
'ee-live-event'
];
/**
* event listeners
*/
get_templates.addEventListener('click', function() {
createRequest('get_templates');
});
create_ipx.addEventListener('click', function() {
createRequest('create_ipx');
});
get_videos.addEventListener('click', function() {
createRequest('get_videos');
});
get_playlists.addEventListener('click', function() {
createRequest('get_playlists');
});
update_experience.addEventListener('click', function() {
createRequest('update_experience');
});
publish_experience.addEventListener('click', function() {
createRequest('publish_experience');
});
reset_app.addEventListener('click', function() {
reset();
});
/**
* disables all buttons so user can't submit new request until current one finishes
*/
function disableButtons() {
var i,
iMax = all_buttons.length;
for (i = 0; i < iMax; i++) {
all_buttons[i].setAttribute('disabled', 'disabled');
all_buttons[i].setAttribute('style', 'color:#999;cursor:not-allowed;border:1px #999 solid;');
}
}
/**
* enables a button element
* @param {htmlElement} button the button
*/
function enableButton(button) {
button.removeAttribute('disabled');
button.removeAttribute('style');
}
function removeChildren(el) {
while (el.firstChild) {
el.removeChild(el.firstChild);
}
}
/**
* determines whether specified item is in an array
*
* @param {array} array to check
* @param {string} item to check for
* @return {boolean} true if item is in the array, else false
*/
function arrayContains(arr, item) {
var i,
iMax = arr.length;
for (i = 0; i < iMax; i++) {
if (arr[i] === item) {
return true;
}
}
return false;
}
/**
* gets selected options values for multi-select control
* a comma-delimited string
* @param {Element} sel the selector element
* @return {String} comma-delimited string of values
*/
function getSelectedValues(sel) {
var valuesArray = [],
opt, i, len;
// loop through options in select list
for (i = 0, len = sel.options.length; i < len; i++) {
opt = sel.options[i];
// check if selected
if (opt.selected) {
// add to array of option values
valuesArray.push(opt.value);
}
}
// return string of values
return valuesArray.join(',');
}
/**
* get selected value for single select element
* @param {htmlElement} e the select element
* @return {String} the selected value
*/
function getSelectedValue(e) {
var selected = e.options[e.selectedIndex],
val = selected.value;
return val;
}
function reset() {
disableButtons();
enableButton(get_templates);
}
/**
* sets up the data for the API request
* @param {String} id the id of the button that was clicked
*/
function createRequest(id) {
var endPoint = '',
options = {},
requestBody = {};
// disable buttons to prevent a new request before current one finishes
disableButtons();
options.account_id = (account_id_input.value.length > 0) ? account_id_input.value : '57838016001';
if (client_id_input.value.length > 0 && client_secret_input.value.length > 0) {
options.client_id = client_id_input.value;
options.client_secret = client_secret_input.value;
}
options.proxyURL = proxyURL;
switch (id) {
case 'get_templates':
endPoint = options.account_id + '/templates';
options.url = ipxURL + endPoint;
options.requestType = 'GET';
apiRequest.textContent = options.url;
apiMethod.textContent = options.requestType;
makeRequest(options, function(response) {
var parsedData,
i,
iMax,
option,
frag = document.createDocumentFragment();
parsedData = JSON.parse(response);
apiResponse.textContent = JSON.stringify(parsedData, null, 2);
all_templates = parsedData.items
i = all_templates.length;
// remove live templates
while (i > 0) {
i--;
if (arrayContains(live_templates, all_templates[i].id)) {
all_templates.splice(i, 1);
}
}
// populate template selector
iMax = all_templates.length;
for (i = 0; i < iMax; i++) {
option = document.createElement('option');
option.setAttribute('value', all_templates[i].id);
if (i === 0) {
option.setAttribute('selected', 'selected');
}
if (all_templates[i].metadata.hasOwnProperty('name')) {
option.textContent = all_templates[i].metadata.name;
} else {
option.textContent = all_templates[i].id.replace('ee-', '');
}
frag.appendChild(option);
}
template_selector.appendChild(frag);
apiResponse.textContent = JSON.stringify(parsedData, null, ' ');
// enable the create experience button
disableButtons();
enableButton(create_ipx);
});
break;
case 'create_ipx':
var now = new Date().toISOString();
new_experience_template = getSelectedValue(template_selector);
is_playlist_template = arrayContains(playlist_templates, new_experience_template);
new_experience_name = 'Experience from Quick Start ' + now;
endPoint = options.account_id + '/experiences';
options.url = ipxURL + endPoint;
options.requestType = 'POST';
requestBody.name = new_experience_name;
requestBody.template = new_experience_template;
requestBody.description = 'A simple new experience created from the In-Page Experience API Quick Start';
options.requestBody = JSON.stringify(requestBody);
apiRequest.textContent = options.url;
apiData.textContent = JSON.stringify(requestBody, null, ' ');
apiMethod.textContent = options.requestType;
makeRequest(options, function(response) {
var parsedData;
parsedData = JSON.parse(response);
new_experience_id = parsedData.id;
apiResponse.textContent = JSON.stringify(parsedData, null, ' ');
// enable video/playlist selection
disableButtons();
if (is_playlist_template) {
enableButton(get_videos);
enableButton(get_playlists);
} else {
enableButton(get_videos);
}
});
break;
case 'get_videos':
// set select control to multiple
video_selector.setAttribute('multiple', true);
// set for videos, not playlist
is_playlist_template = false;
endPoint = options.account_id + '/videos?limit=10';
options.url = cmsURL + endPoint;
options.requestType = 'GET';
apiRequest.textContent = options.url;
apiData.textContent = '';
apiMethod.textContent = options.requestType;
makeRequest(options, function(response) {
var parsedData,
option,
i,
iMax,
frag = document.createDocumentFragment();
parsedData = JSON.parse(response);
apiResponse.textContent = JSON.stringify(parsedData, null, 2);
// add video options to selector
removeChildren(video_selector);
iMax = parsedData.length;
for (i = 0; i < iMax; i++) {
option = document.createElement('option');
option.setAttribute('value', parsedData[i].id);
if (i === 0) {
option.setAttribute('selected', 'selected');
}
option.textContent = parsedData[i].name;
frag.appendChild(option);
}
video_selector.appendChild(frag);
// enable the update button
disableButtons();
enableButton(update_experience);
});
break;
case 'get_playlists':
// set select control to single
video_selector.setAttribute('multiple', false);
endPoint = options.account_id + '/playlists?limit=10';
options.url = cmsURL + endPoint;
options.requestType = 'GET';
apiRequest.textContent = options.url;
apiData.textContent = '';
apiMethod.textContent = options.requestType;
makeRequest(options, function(response) {
var parsedData,
option,
i,
iMax,
frag = document.createDocumentFragment();
parsedData = JSON.parse(response);
apiResponse.textContent = JSON.stringify(parsedData, null, 2);
// add video options to selector
removeChildren(video_selector);
iMax = parsedData.length;
for (i = 0; i < iMax; i++) {
option = document.createElement('option');
option.setAttribute('value', parsedData[i].id);
if (i === 0) {
option.setAttribute('selected', 'selected');
}
option.textContent = parsedData[i].name;
frag.appendChild(option);
}
video_selector.appendChild(frag);
// enable the update button
disableButtons();
enableButton(update_experience);
});
break;
case 'update_experience':
endPoint = options.account_id + '/experiences/' + new_experience_id;
options.url = ipxURL + endPoint;
options.requestType = 'PUT';
requestBody.name = new_experience_name;
requestBody.template = new_experience_template;
requestBody.videos = {};
if (is_playlist_template) {
requestBody.videos.type = 'playlist';
requestBody.videos.playlistid = getSelectedValue(video_selector);
} else {
requestBody.videos.type = 'manual';
requestBody.videos.videoids = getSelectedValues(video_selector);
}
options.requestBody = JSON.stringify(requestBody);
apiRequest.textContent = options.url;
apiMethod.textContent = options.requestType;
apiData.textContent = JSON.stringify(requestBody, null, 2);
makeRequest(options, function(response) {
var parsedData;
parsedData = JSON.parse(response);
apiResponse.textContent = JSON.stringify(parsedData, null, 2);
// enable the publish ipx button
disableButtons();
enableButton(publish_experience);
});
break;
case 'publish_experience':
endPoint = options.account_id + '/experiences/' + new_experience_id + '/actions/publish';
options.url = ipxURL + endPoint;
options.requestType = 'POST';
apiRequest.textContent = options.url;
apiMethod.textContent = options.requestType;
apiData.textContent = '';
makeRequest(options, function(response) {
var parsedData;
parsedData = JSON.parse(response);
apiResponse.textContent = JSON.stringify(parsedData, null, 2);
// reset
reset();
});
break;
}
}
/**
* send API request to the proxy
* @param {Object} options for the request
* @param {String} options.url the full API request URL
* @param {String="GET","POST","PATCH","PUT","DELETE"} requestData [options.requestType="GET"] HTTP type for the request
* @param {String} options.proxyURL proxyURL to send the request to
* @param {String} options.client_id client id for the account (default is in the proxy)
* @param {String} options.client_secret client secret for the account (default is in the proxy)
* @param {JSON} [options.requestBody] Data to be sent in the request body in the form of a JSON string
* @param {Function} [callback] callback function that will process the response
*/
function makeRequest(options, callback) {
var httpRequest = new XMLHttpRequest(),
response,
proxyURL = options.proxyURL,
// response handler
getResponse = function() {
try {
if (httpRequest.readyState === 4) {
if (httpRequest.status >= 200 && httpRequest.status < 300) {
response = httpRequest.responseText;
// some API requests return '{null}' for empty responses - breaks JSON.parse
if (response === '{null}') {
response = null;
}
// return the response
callback(response);
} else {
alert('There was a problem with the request. Request returned ' + httpRequest.status);
}
}
} catch (e) {
alert('Caught Exception: ' + e);
}
};
/**
* set up request data
* the proxy used here takes the following request body:
* JSON.stringify(options)
*/
// set response handler
httpRequest.onreadystatechange = getResponse;
// open the request
httpRequest.open('POST', proxyURL);
// set headers if there is a set header line, remove it
// open and send request
httpRequest.send(JSON.stringify(options));
}
// set initial state
reset();
})(window, document);
Also see: Tab Triggers