Skip to main content

Siri animation using ESM module

Building Javascript

Here we will use .esm cell types to bundle NPM package into the output cell and execute it right in the notebook.

credits to npm library

Download original notebook

Install NPM package

Run this cell

.sh
npm i siriwave --prefix .

Bundling

Now Javascript code

.esm
import SiriWave from "siriwave";

const dom = document.createElement('div');
this.return(dom);

let siriWave;

siriWave = new SiriWave({
	container: dom,
	height:300,
    style: "ios9",
	width:600
});

siriWave.start();

this.ondestroy = () => {
  siriWave.dispose();
  console.warn('removed');
}
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __commonJS = (cb, mod) => function __require() {
  return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
};
var __copyProps = (to, from, except, desc) => {
  if (from && typeof from === "object" || typeof from === "function") {
    for (let key of __getOwnPropNames(from))
      if (!__hasOwnProp.call(to, key) && key !== except)
        __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
  }
  return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
  // If the importer is in node compatibility mode or this is not an ESM
  // file that has been converted to a CommonJS file using a Babel-
  // compatible transform (i.e. "__esModule" has not been set), then set
  // "default" to the CommonJS "module.exports" for node compatibility.
  isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
  mod
));

// node_modules/siriwave/dist/siriwave.umd.js
var require_siriwave_umd = __commonJS({
  "node_modules/siriwave/dist/siriwave.umd.js"(exports, module) {
    (function(global, factory) {
      typeof exports === "object" && typeof module !== "undefined" ? module.exports = factory() : typeof define === "function" && define.amd ? define(factory) : (global = typeof globalThis !== "undefined" ? globalThis : global || self, global.SiriWave = factory());
    })(g0this, function() {
      "use strict";
      var __assign = function() {
        __assign = Object.assign || function __assign2(t) {
          for (var s, i = 1, n = arguments.length; i < n; i++) {
            s = arguments[i];
            for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
          }
          return t;
        };
        return __assign.apply(this, arguments);
      };
      function __rest(s, e) {
        var t = {};
        for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
          t[p] = s[p];
        if (s != null && typeof Object.getOwnPropertySymbols === "function")
          for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
              t[p[i]] = s[p[i]];
          }
        return t;
      }
      var ClassicCurve = (
        /** @class */
        function() {
          function ClassicCurve2(ctrl, definition) {
            this.ATT_FACTOR = 4;
            this.GRAPH_X = 2;
            this.AMPLITUDE_FACTOR = 0.6;
            this.ctrl = ctrl;
            this.definition = definition;
          }
          ClassicCurve2.prototype.globalAttFn = function(x) {
            return Math.pow(this.ATT_FACTOR / (this.ATT_FACTOR + Math.pow(x, this.ATT_FACTOR)), this.ATT_FACTOR);
          };
          ClassicCurve2.prototype.xPos = function(i) {
            return this.ctrl.width * ((i + this.GRAPH_X) / (this.GRAPH_X * 2));
          };
          ClassicCurve2.prototype.yPos = function(i) {
            return this.AMPLITUDE_FACTOR * (this.globalAttFn(i) * (this.ctrl.heightMax * this.ctrl.amplitude) * (1 / this.definition.attenuation) * Math.sin(this.ctrl.opt.frequency * i - this.ctrl.phase));
          };
          ClassicCurve2.prototype.draw = function() {
            var ctx = this.ctrl.ctx;
            ctx.moveTo(0, 0);
            ctx.beginPath();
            var finalColor = this.definition.color || this.ctrl.color;
            var colorHex = finalColor.replace(/rgb\(/g, "").replace(/\)/g, "");
            ctx.strokeStyle = "rgba(".concat(colorHex, ",").concat(this.definition.opacity, ")");
            ctx.lineWidth = this.definition.lineWidth;
            for (var i = -this.GRAPH_X; i <= this.GRAPH_X; i += this.ctrl.opt.pixelDepth) {
              ctx.lineTo(this.xPos(i), this.ctrl.heightMax + this.yPos(i));
            }
            ctx.stroke();
          };
          ClassicCurve2.getDefinition = function() {
            return [
              {
                attenuation: -2,
                lineWidth: 1,
                opacity: 0.1
              },
              {
                attenuation: -6,
                lineWidth: 1,
                opacity: 0.2
              },
              {
                attenuation: 4,
                lineWidth: 1,
                opacity: 0.4
              },
              {
                attenuation: 2,
                lineWidth: 1,
                opacity: 0.6
              },
              {
                attenuation: 1,
                lineWidth: 1.5,
                opacity: 1
              }
            ];
          };
          return ClassicCurve2;
        }()
      );
      var iOS9Curve = (
        /** @class */
        function() {
          function iOS9Curve2(ctrl, definition) {
            this.GRAPH_X = 25;
            this.AMPLITUDE_FACTOR = 0.8;
            this.SPEED_FACTOR = 1;
            this.DEAD_PX = 2;
            this.ATT_FACTOR = 4;
            this.DESPAWN_FACTOR = 0.02;
            this.DEFAULT_NOOFCURVES_RANGES = [2, 5];
            this.DEFAULT_AMPLITUDE_RANGES = [0.3, 1];
            this.DEFAULT_OFFSET_RANGES = [-3, 3];
            this.DEFAULT_WIDTH_RANGES = [1, 3];
            this.DEFAULT_SPEED_RANGES = [0.5, 1];
            this.DEFAULT_DESPAWN_TIMEOUT_RANGES = [500, 2e3];
            this.ctrl = ctrl;
            this.definition = definition;
            this.noOfCurves = 0;
            this.spawnAt = 0;
            this.prevMaxY = 0;
            this.phases = [];
            this.offsets = [];
            this.speeds = [];
            this.finalAmplitudes = [];
            this.widths = [];
            this.amplitudes = [];
            this.despawnTimeouts = [];
            this.verses = [];
          }
          iOS9Curve2.prototype.getRandomRange = function(e) {
            return e[0] + Math.random() * (e[1] - e[0]);
          };
          iOS9Curve2.prototype.spawnSingle = function(ci) {
            var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
            this.phases[ci] = 0;
            this.amplitudes[ci] = 0;
            this.despawnTimeouts[ci] = this.getRandomRange((_b = (_a = this.ctrl.opt.ranges) === null || _a === void 0 ? void 0 : _a.despawnTimeout) !== null && _b !== void 0 ? _b : this.DEFAULT_DESPAWN_TIMEOUT_RANGES);
            this.offsets[ci] = this.getRandomRange((_d = (_c = this.ctrl.opt.ranges) === null || _c === void 0 ? void 0 : _c.offset) !== null && _d !== void 0 ? _d : this.DEFAULT_OFFSET_RANGES);
            this.speeds[ci] = this.getRandomRange((_f = (_e = this.ctrl.opt.ranges) === null || _e === void 0 ? void 0 : _e.speed) !== null && _f !== void 0 ? _f : this.DEFAULT_SPEED_RANGES);
            this.finalAmplitudes[ci] = this.getRandomRange((_h = (_g = this.ctrl.opt.ranges) === null || _g === void 0 ? void 0 : _g.amplitude) !== null && _h !== void 0 ? _h : this.DEFAULT_AMPLITUDE_RANGES);
            this.widths[ci] = this.getRandomRange((_k = (_j = this.ctrl.opt.ranges) === null || _j === void 0 ? void 0 : _j.width) !== null && _k !== void 0 ? _k : this.DEFAULT_WIDTH_RANGES);
            this.verses[ci] = this.getRandomRange([-1, 1]);
          };
          iOS9Curve2.prototype.getEmptyArray = function(count) {
            return new Array(count);
          };
          iOS9Curve2.prototype.spawn = function() {
            var _a, _b;
            this.spawnAt = Date.now();
            this.noOfCurves = Math.floor(this.getRandomRange((_b = (_a = this.ctrl.opt.ranges) === null || _a === void 0 ? void 0 : _a.noOfCurves) !== null && _b !== void 0 ? _b : this.DEFAULT_NOOFCURVES_RANGES));
            this.phases = this.getEmptyArray(this.noOfCurves);
            this.offsets = this.getEmptyArray(this.noOfCurves);
            this.speeds = this.getEmptyArray(this.noOfCurves);
            this.finalAmplitudes = this.getEmptyArray(this.noOfCurves);
            this.widths = this.getEmptyArray(this.noOfCurves);
            this.amplitudes = this.getEmptyArray(this.noOfCurves);
            this.despawnTimeouts = this.getEmptyArray(this.noOfCurves);
            this.verses = this.getEmptyArray(this.noOfCurves);
            for (var ci = 0; ci < this.noOfCurves; ci++) {
              this.spawnSingle(ci);
            }
          };
          iOS9Curve2.prototype.globalAttFn = function(x) {
            return Math.pow(this.ATT_FACTOR / (this.ATT_FACTOR + Math.pow(x, 2)), this.ATT_FACTOR);
          };
          iOS9Curve2.prototype.sin = function(x, phase) {
            return Math.sin(x - phase);
          };
          iOS9Curve2.prototype.yRelativePos = function(i) {
            var y = 0;
            for (var ci = 0; ci < this.noOfCurves; ci++) {
              var t = 4 * (-1 + ci / (this.noOfCurves - 1) * 2);
              t += this.offsets[ci];
              var k = 1 / this.widths[ci];
              var x = i * k - t;
              y += Math.abs(this.amplitudes[ci] * this.sin(this.verses[ci] * x, this.phases[ci]) * this.globalAttFn(x));
            }
            return y / this.noOfCurves;
          };
          iOS9Curve2.prototype.yPos = function(i) {
            return this.AMPLITUDE_FACTOR * this.ctrl.heightMax * this.ctrl.amplitude * this.yRelativePos(i) * this.globalAttFn(i / this.GRAPH_X * 2);
          };
          iOS9Curve2.prototype.xPos = function(i) {
            return this.ctrl.width * ((i + this.GRAPH_X) / (this.GRAPH_X * 2));
          };
          iOS9Curve2.prototype.drawSupportLine = function() {
            var ctx = this.ctrl.ctx;
            var coo = [0, this.ctrl.heightMax, this.ctrl.width, 1];
            var gradient = ctx.createLinearGradient.apply(ctx, coo);
            gradient.addColorStop(0, "transparent");
            gradient.addColorStop(0.1, "rgba(255,255,255,.5)");
            gradient.addColorStop(1 - 0.1 - 0.1, "rgba(255,255,255,.5)");
            gradient.addColorStop(1, "transparent");
            ctx.fillStyle = gradient;
            ctx.fillRect.apply(ctx, coo);
          };
          iOS9Curve2.prototype.draw = function() {
            var ctx = this.ctrl.ctx;
            ctx.globalAlpha = 0.7;
            ctx.globalCompositeOperation = this.ctrl.opt.globalCompositeOperation;
            if (this.spawnAt === 0) {
              this.spawn();
            }
            if (this.definition.supportLine) {
              return this.drawSupportLine();
            }
            for (var ci = 0; ci < this.noOfCurves; ci++) {
              if (this.spawnAt + this.despawnTimeouts[ci] <= Date.now()) {
                this.amplitudes[ci] -= this.DESPAWN_FACTOR;
              } else {
                this.amplitudes[ci] += this.DESPAWN_FACTOR;
              }
              this.amplitudes[ci] = Math.min(Math.max(this.amplitudes[ci], 0), this.finalAmplitudes[ci]);
              this.phases[ci] = (this.phases[ci] + this.ctrl.speed * this.speeds[ci] * this.SPEED_FACTOR) % (2 * Math.PI);
            }
            var maxY = -Infinity;
            for (var _i = 0, _a = [1, -1]; _i < _a.length; _i++) {
              var sign = _a[_i];
              ctx.beginPath();
              for (var i = -this.GRAPH_X; i <= this.GRAPH_X; i += this.ctrl.opt.pixelDepth) {
                var x = this.xPos(i);
                var y = this.yPos(i);
                ctx.lineTo(x, this.ctrl.heightMax - sign * y);
                maxY = Math.max(maxY, y);
              }
              ctx.closePath();
              ctx.fillStyle = "rgba(".concat(this.definition.color, ", 1)");
              ctx.strokeStyle = "rgba(".concat(this.definition.color, ", 1)");
              ctx.fill();
            }
            if (maxY < this.DEAD_PX && this.prevMaxY > maxY) {
              this.spawnAt = 0;
            }
            this.prevMaxY = maxY;
            return null;
          };
          iOS9Curve2.getDefinition = function() {
            return [
              {
                color: "255,255,255",
                supportLine: true
              },
              {
                // blue
                color: "15, 82, 169"
              },
              {
                // red
                color: "173, 57, 76"
              },
              {
                // green
                color: "48, 220, 155"
              }
            ];
          };
          return iOS9Curve2;
        }()
      );
      var SiriWave2 = (
        /** @class */
        function() {
          function SiriWave3(_a) {
            var _this = this;
            var container = _a.container, rest = __rest(_a, ["container"]);
            this.phase = 0;
            this.run = false;
            this.curves = [];
            var csStyle = window.getComputedStyle(container);
            this.opt = __assign({ container, style: "ios", ratio: window.devicePixelRatio || 1, speed: 0.2, amplitude: 1, frequency: 6, color: "#fff", cover: false, width: parseInt(csStyle.width.replace("px", ""), 10), height: parseInt(csStyle.height.replace("px", ""), 10), autostart: true, pixelDepth: 0.02, lerpSpeed: 0.1, globalCompositeOperation: "lighter" }, rest);
            this.speed = Number(this.opt.speed);
            this.amplitude = Number(this.opt.amplitude);
            this.width = Number(this.opt.ratio * this.opt.width);
            this.height = Number(this.opt.ratio * this.opt.height);
            this.heightMax = Number(this.height / 2) - 6;
            this.color = "rgb(".concat(this.hex2rgb(this.opt.color), ")");
            this.interpolation = {
              speed: this.speed,
              amplitude: this.amplitude
            };
            this.canvas = document.createElement("canvas");
            var ctx = this.canvas.getContext("2d");
            if (ctx === null) {
              throw new Error("Unable to create 2D Context");
            }
            this.ctx = ctx;
            this.canvas.width = this.width;
            this.canvas.height = this.height;
            if (this.opt.cover === true) {
              this.canvas.style.width = this.canvas.style.height = "100%";
            } else {
              this.canvas.style.width = "".concat(this.width / this.opt.ratio, "px");
              this.canvas.style.height = "".concat(this.height / this.opt.ratio, "px");
            }
            switch (this.opt.style) {
              case "ios9":
                this.curves = (this.opt.curveDefinition || iOS9Curve.getDefinition()).map(function(def) {
                  return new iOS9Curve(_this, def);
                });
                break;
              case "ios":
              default:
                this.curves = (this.opt.curveDefinition || ClassicCurve.getDefinition()).map(function(def) {
                  return new ClassicCurve(_this, def);
                });
                break;
            }
            this.opt.container.appendChild(this.canvas);
            if (this.opt.autostart) {
              this.start();
            }
          }
          SiriWave3.prototype.hex2rgb = function(hex) {
            var shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i;
            hex = hex.replace(shorthandRegex, function(m, r, g, b) {
              return r + r + g + g + b + b;
            });
            var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
            return result ? "".concat(parseInt(result[1], 16).toString(), ",").concat(parseInt(result[2], 16).toString(), ",").concat(parseInt(result[3], 16).toString()) : null;
          };
          SiriWave3.prototype.intLerp = function(v0, v1, t) {
            return v0 * (1 - t) + v1 * t;
          };
          SiriWave3.prototype.lerp = function(propertyStr) {
            var prop = this.interpolation[propertyStr];
            if (prop !== null) {
              this[propertyStr] = this.intLerp(this[propertyStr], prop, this.opt.lerpSpeed);
              if (this[propertyStr] - prop === 0) {
                this.interpolation[propertyStr] = null;
              }
            }
            return this[propertyStr];
          };
          SiriWave3.prototype.clear = function() {
            this.ctx.globalCompositeOperation = "destination-out";
            this.ctx.fillRect(0, 0, this.width, this.height);
            this.ctx.globalCompositeOperation = "source-over";
          };
          SiriWave3.prototype.draw = function() {
            this.curves.forEach(function(curve) {
              return curve.draw();
            });
          };
          SiriWave3.prototype.startDrawCycle = function() {
            this.clear();
            this.lerp("amplitude");
            this.lerp("speed");
            this.draw();
            this.phase = (this.phase + Math.PI / 2 * this.speed) % (2 * Math.PI);
            if (window.requestAnimationFrame) {
              this.animationFrameId = window.requestAnimationFrame(this.startDrawCycle.bind(this));
            } else {
              this.timeoutId = setTimeout(this.startDrawCycle.bind(this), 20);
            }
          };
          SiriWave3.prototype.start = function() {
            if (!this.canvas) {
              throw new Error("This instance of SiriWave has been disposed, please create a new instance");
            }
            this.phase = 0;
            if (!this.run) {
              this.run = true;
              this.startDrawCycle();
            }
          };
          SiriWave3.prototype.stop = function() {
            this.phase = 0;
            this.run = false;
            if (this.animationFrameId) {
              window.cancelAnimationFrame(this.animationFrameId);
            }
            if (this.timeoutId) {
              clearTimeout(this.timeoutId);
            }
          };
          SiriWave3.prototype.dispose = function() {
            this.stop();
            if (this.canvas) {
              this.canvas.remove();
              this.canvas = null;
            }
          };
          SiriWave3.prototype.set = function(propertyStr, value) {
            this.interpolation[propertyStr] = value;
          };
          SiriWave3.prototype.setSpeed = function(value) {
            this.set("speed", value);
          };
          SiriWave3.prototype.setAmplitude = function(value) {
            this.set("amplitude", value);
          };
          return SiriWave3;
        }()
      );
      return SiriWave2;
    });
  }
});

// <stdin>
var import_siriwave = __toESM(require_siriwave_umd());
var dom = document.createElement("div");
g0this.return(dom);
var siriWave;
siriWave = new import_siriwave.default({
  container: dom,
  height: 300,
  style: "ios9",
  width: 600
});
siriWave.start();
g0this.ondestroy = () => {
  siriWave.dispose();
  console.warn("removed");
};
/*! Bundled license information:

siriwave/dist/siriwave.umd.js:
  (*! *****************************************************************************
      Copyright (c) Microsoft Corporation.
  
      Permission to use, copy, modify, and/or distribute this software for any
      purpose with or without fee is hereby granted.
  
      THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
      REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
      AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
      INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
      LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
      OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
      PERFORMANCE OF THIS SOFTWARE.
      ***************************************************************************** *)
*/