Sha256: 19429110d4e1dd8f7ca6a3bb39438515f3dfa3f08f1e1dcdda525229efa02f12

Contents?: true

Size: 1.1 KB

Versions: 124

Compression:

Stored size: 1.1 KB

Contents

/*
// Custom JS | written by https://github.com/wdzajicek for,
// © 2020 Kankakee Community College
// =================================================== */
// Modules' default function stores our Google Sheet response in sessionStorage to be retrieved later
// Each key gets set to a column in our data
// Each key's value gets set to the corresponding cell in the row below
// ====================================================================
function cacheResponse(response) { // response from Google API's spreadsheet.values.get() method
  const VALUES = response.result.values; // This is where the table's data is in a Sheets response in Sheets API V4
  const TABLE_HEADER_ROW = VALUES[1]; // 2nd row in the sheet (first row is instructions to the user)
  const TABLE_BODY_ROW = VALUES[2]; // The only row of data in our table
  
  for (let i = 0, len = TABLE_BODY_ROW.length; i < len; i++ ) {
    const cell = TABLE_BODY_ROW[i];
    const column = TABLE_HEADER_ROW[i];

    window.sessionStorage.setItem(column.replace(/\s/g, '-'), cell);
  }
  //window.sessionStorage.clear();
}

export default cacheResponse;

Version data entries

124 entries across 124 versions & 2 rubygems

Version Path
kcc-gem-theme-2.19.4 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.19.3 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.19.2 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.19.1 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.19.0 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.18.0 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.17.0 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.16.3 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.16.2 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.16.1 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.16.0 assets/js/alerts/cacheResponse.js
kcc-gem-theme-core-0.0.3 assets/js/alerts/cacheResponse.js
kcc-gem-theme-core-0.0.2 assets/js/alerts/cacheResponse.js
kcc-gem-theme-core-0.0.1 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.15.0 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.14.4 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.14.3 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.14.2 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.14.1 assets/js/alerts/cacheResponse.js
kcc-gem-theme-2.14.0 assets/js/alerts/cacheResponse.js