all files / src/ postscribe.js

85.87% Statements 79/92
82.35% Branches 28/34
81.25% Functions 13/16
83.33% Lines 55/66
7 statements, 7 branches Ignored     
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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200                                                                                             600×             177×                                         153× 153× 84×   84× 84× 84×       84×     84× 84× 84×     84×   84×             177× 177× 177×     84×     219×         84×       84×       84×   84×     84×   84× 84× 84×     84×     84×   84×             84×     84×     84×     84×   84×                   84× 84×   84× 69×     84×                      
import WriteStream from './write-stream';
import * as utils from './utils';
 
/**
 * A function that intentionally does nothing.
 */
function doNothing() {
}
 
/**
 * Available options and defaults.
 *
 * @type {Object}
 */
const OPTIONS = {
  /**
   * Called when an async script has loaded.
   */
  afterAsync: doNothing,
 
  /**
   * Called immediately before removing from the write queue.
   */
  afterDequeue: doNothing,
 
  /**
   * Called sync after a stream's first thread release.
   */
  afterStreamStart: doNothing,
 
  /**
   * Called after writing buffered document.write calls.
   */
  afterWrite: doNothing,
 
  /**
   * Allows disabling the autoFix feature of prescribe
   */
  autoFix: true,
 
  /**
   * Called immediately before adding to the write queue.
   */
  beforeEnqueue: doNothing,
 
  /**
   * Called before writing a token.
   *
   * @param {Object} tok The token
   */
  beforeWriteToken: tok => tok,
 
  /**
   * Called before writing buffered document.write calls.
   *
   * @param {String} str The string
   */
  beforeWrite: str => str,
 
  /**
   * Called when evaluation is finished.
   */
  done: doNothing,
 
  /**
   * Called when a write results in an error.
   *
   * @param {Error} e The error
   */
  error(e) { throw e; },
 
  /**
   * Whether to let scripts w/ async attribute set fall out of the queue.
   */
  releaseAsync: false
};
 
let nextId = 0;
let queue = [];
let active = null;
 
function nextStream() {
  const args = queue.shift();
  if (args) {
    const options = utils.last(args);
 
    options.afterDequeue();
    args.stream = runStream(...args);
    options.afterStreamStart();
  }
}
 
function runStream(el, html, options) {
  active = new WriteStream(el, options);
 
  // Identify this stream.
  active.id = nextId++;
  active.name = options.name || active.id;
  postscribe.streams[active.name] = active;
 
  // Override document.write.
  const doc = el.ownerDocument;
 
  const stash = {
    close: doc.close,
    open: doc.open,
    write: doc.write,
    writeln: doc.writeln
  };
 
  function write(str) {
    str = options.beforeWrite(str);
    active.write(str);
    options.afterWrite(str);
  }
 
  Object.assign(doc, {
    close: doNothing,
    open: doNothing,
    write: (...str) => write(str.join('')),
    writeln: (...str) => write(str.join('') + '\n')
  });
 
  // Override window.onerror
  const oldOnError = active.win.onerror || doNothing;
 
  // This works together with the try/catch around WriteStream::insertScript
  // In modern browsers, exceptions in tag scripts go directly to top level
  active.win.onerror = (msg, url, line) => {
    options.error({msg: `${msg} - ${url}: ${line}`});
    oldOnError.apply(active.win, [msg, url, line]);
  };
 
  // Write to the stream
  active.write(html, () => {
    // restore document.write
    Object.assign(doc, stash);
 
    // restore window.onerror
    active.win.onerror = oldOnError;
 
    options.done();
    active = null;
    nextStream();
  });
 
  return active;
}
 
export default function postscribe(el, html, options) {
  Iif (utils.isFunction(options)) {
    options = {done: options};
  } else Iif (options === 'clear') {
    queue = [];
    active = null;
    nextId = 0;
    return;
  }
 
  options = utils.defaults(options, OPTIONS);
 
  // id selector
  Iif ((/^#/).test(el)) {
    el = window.document.getElementById(el.substr(1));
  } else {
    el = el.jquery ? el[0] : el;
  }
 
  const args = [el, html, options];
 
  el.postscribe = {
    cancel: () => {
      if (args.stream) {
        args.stream.abort();
      } else {
        args[1] = doNothing;
      }
    }
  };
 
  options.beforeEnqueue(args);
  queue.push(args);
 
  if (!active) {
    nextStream();
  }
 
  return el.postscribe;
}
 
Object.assign(postscribe, {
  // Streams by name.
  streams: {},
  // Queue of streams.
  queue,
  // Expose internal classes.
  WriteStream
});