Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

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.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

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.

+ add another resource

Packages

Add Packages

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.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <section class="bcls-section">
  <h2 id="request-inputs">Video Engagement Graph</h2>

  <p>Where no default value is indicated, there is none.</p>

  <div id="inputFields" class="input-fields">
    <fieldset class="bcls-fieldset">
      <legend>Basic Information</legend>

      <p>By default, you will get results from the Brightcove Training Videos account.</p>

      <p><button class="bcls-button" id="useMyAccount">Use My Account Instead</button></p>

      <div id="basicInfo" style="display:none;">
        <table class="bcls-table">
          <tbody class="bcls-table__body">
            <tr>
              <td>Video Cloud Account (Publisher ID):</td>
              <td><input id="accountID" class="aapi-request" type="text" size="55" /></td>
            </tr>
            <tr>
              <td class="align-top no-wrap">Client id:</td>
              <td><input id="client_id" class="aapi-request" type="text" size="100" value="" />
              </td>
            </tr>
            <tr>
              <td class="align-top no-wrap">Client secret:</td>
              <td><input id="client_secret" class="aapi-request" type="text" size="100" value="" />
              </td>
            </tr>
          </tbody>
        </table>

      </div>
    </fieldset>

    <fieldset class="bcls-fieldset">
      <legend>Filters</legend>

      <div id="scopeSelector">
        <table class="bcls-table">
          <tbody class="bcls-table__body">
            <tr>
              <td>Scope for the report</td>
              <td><select class="aapi-request" name="scopeSelect" id="scopeSelect"><option value="">Select the scope for the report</option><option value="account">Account</option><option value="players">Player</option><option value="videos">Video</option></select></td>
            </tr>
            <tr id="pid">
              <td>Player ID =</td>
              <td><input id="playerID" class="aapi-request" type="text" size="40" value="" /></td>
            </tr>
            <tr id="vid">
              <td>Video ID =</td>
              <td>
                <div id="directVideoInput"><input id="videoID" class="aapi-request" type="text" size="40" value="" /></div>
              </td>
            </tr>
          </tbody>
        </table>
      </div>
    </fieldset>
  </div>
</section>

<section class="bcls-section">
  <h2 id="requestSection">The API Request</h2>

  <div id="requestSubmitter">
    <fieldset class="bcls-fieldset">
      <legend>Generated Request</legend>

      <p>API Request</p>
      <textarea id="request" name="request" class="bcls-code">API request will appear here...</textarea></fieldset>

    <p><button class="bcls-button" id="submitButton">Submit Request</button></p>
  </div>
</section>
<section class="bcls-section">
  <h2 id="graph">Engagement Graph</h2>

  <p>Average views at % of video length</p>
  <canvas id="chartEngagement" style="width:600px !important;height:400px !important;"></canvas>

  <div id="chartEngagementLegend" style="padding:10px 20px;">&nbsp;</div>
</section>
<section class="bcls-section">
  <h2 id="response">API Response</h2>

  <pre class="line-numbers language-json code-toolbar">
<code class="language-json" id="responseFrame">Response will appear here...</code></pre>
</section>
              
            
!

CSS

              
                /* * 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: 0.5em;
  background-color: #333;
  border: 1px yellow solid;
  border-radius: 0.5em;
  color: yellow;
  cursor: pointer;
}
fieldset {
  color: #64aab2;
  border: 1px #64aab2 solid;
  border-radius: 0.5em;
}
code {
  color: #E4B842;
  font-family: 'Source Code Pro',monospace;
}
              
            
!

JS

              
                var BCLS = (function(window, document) {
  'use strict';
  var // aapi stuff
    useMyAccount = document.getElementById('useMyAccount'),
    basicInfo = document.getElementById('basicInfo'),
    proxyURL = 'https://solutions.brightcove.com/bcls/bcls-proxy/bcls-proxy-v2.php',
    $accountID = document.getElementById('accountID'),
    account_id = '1752604059001',
    $client_id = document.getElementById('client_id'),
    client_id = null,
    $client_secret = document.getElementById('client_secret'),
    client_secret = null,
    $scopeSelect = document.getElementById('scopeSelect'),
    scope = 'account',
    $playerID = document.getElementById('playerID'),
    player_id = '2fc88f47-3e0f-45bc-9a11-97d9d2f22392_default',
    $videoID = document.getElementById('videoID'),
    video_id = '4093643993001',
    $pid = document.getElementById('pid'),
    $vid = document.getElementById('vid'),
    $requestButton = document.getElementById('requestButton'),
    $request = document.getElementById('request'),
    $submitButton = document.getElementById('submitButton'),
    $requestInputs = document.getElementsByClassName('.aapi-request'),
    responseFrame = document.getElementById('responseFrame'),
    options = {},
    requestURL = '',
    chartEngagement = '#chartEngagement',
    responseData,
    i,
    iMax;

  /**
   * Logging function - safe for IE
   * @param  {string} context description of the data
   * @param  {*} message the data to be logged by the console
   * @return {}
   */
  function bclslog(context, message) {
    if (window['console'] && console['log']) {
      console.log(context, message);
    }
    return;
  }

  // more robust test for strings 'not defined'
  function isDefined(v) {
    if (v !== '' && v !== null && v !== 'undefined') {
      return true;
    } else {
      return false;
    }
  }

  // create graph
  function makeEngagementGraph(jsonObject) {
    var options = {
        pointDot: false
      },
      chartData = {},
      labels = [],
      data = [],
      video_engagement = jsonObject.timeline.values,
      video_duration = 100,
      series = {},
      video_name = jsonObject.video_name,
      ctx,
      myNewChart;
    // process response data
    video_engagement.forEach(function(element, index, video_engagement) {
      if ((index) % 10 === 0) {
        labels[index] = index + '%';
      } else {
        labels[index] = '';
      }

      data[index] = element;
    });
    // chartData
    chartData = {
      labels: labels,
      datasets: [{
        fillColor: 'rgba(151,187,205,0.5)',
        strokeColor: 'rgba(151,187,205,1)',
        pointColor: 'rgba(151,187,205,1)',
        pointStrokeColor: '#fff',
        data: data
      }]
    };
    //Get the context of the canvas element we want to select
    ctx = document.getElementById('chartEngagement').getContext('2d');
    myNewChart = new Chart(ctx).Line(chartData, options);
  }

  function buildRequest() {
    player_id = (isDefined($playerID.value)) ? $playerID.value : player_id;
    video_id = (isDefined($videoID.value)) ? $videoID.value : video_id;
    account_id = (isDefined($accountID.value)) ? $accountID.value : account_id;
    // add client credentials if any
    if (isDefined($client_id.value)) {
      options.client_id = $client_id.value;
    }
    if (isDefined($client_secret.value)) {
      options.client_secret = $client_secret.value;
    }
    options.account_id = account_id;
    options.proxyURL = proxyURL;

    // build the request
    options.url = 'https://analytics.api.brightcove.com/v1';
    options.url += '/engagement/accounts/' + account_id;
    if (scope === 'players') {
      options.url += '/players/' + player_id;
    } else if (scope === 'videos') {
      options.url += '/videos/' + video_id;
    }
    $request.textContent = options.url;
    $request.setAttribute('value', options.url);
  }

  /**
   * 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 event listeners
  useMyAccount.addEventListener('click', function() {
    if (basicInfo.getAttribute('style') === 'display:none;') {
      basicInfo.setAttribute('style', 'display:block;');
      useMyAccount.innerHTML = 'Use Sample Account';
    } else {
      basicInfo.setAttribute('style', 'display:none;');
      useMyAccount.innerHTML = 'Use My Account Instead';
    }
  });
  // listener for videos request
  iMax = $requestInputs.length;
  for (i = 0; i < iMax; i++) {
    $requestInputs[i].addEventListener('change', buildRequest);
  }
  // rebuild request when scope selector changes
  $scopeSelect.addEventListener('change', function(evt) {
    scope = $scopeSelect.value;
    if (scope === 'account') {
      $vid.setAttribute('style', 'display:none;');
      $pid.setAttribute('style', 'display:none;');
    } else if (scope === 'players') {
      $pid.setAttribute('style', 'display:block;');
      $vid.setAttribute('style', 'display:none;');
    } else if (scope === 'videos') {
      $pid.setAttribute('style', 'display:none;');
      $vid.setAttribute('style', 'display:block;');
    }
    buildRequest();
  });
  // submit request
  $submitButton.addEventListener('click', function() {
    makeRequest(options, function(response) {
      response = JSON.parse(response);
      responseFrame.textContent = JSON.stringify(response, null, '  ');
      makeEngagementGraph(response);
    });
  });

  // generate initial request
  buildRequest();
})(window, document);

              
            
!
999px

Console