summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/flash.js
blob: 730104b89f9a5661fa68a9100bc7092b8a73ae26 (plain)
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
/* eslint-disable func-names, space-before-function-paren, wrap-iife, no-var, one-var, one-var-declaration-per-line, no-param-reassign, quotes, quote-props, prefer-template, comma-dangle, max-len */
(function() {
  this.Flash = (function() {
    var hideFlash;

    hideFlash = function() {
      return $(this).fadeOut();
    };

    function Flash(message, type, parent) {
      var flash, textDiv;
      if (type == null) {
        type = 'alert';
      }
      if (parent == null) {
        parent = null;
      }
      if (parent) {
        this.flashContainer = parent.find('.flash-container');
      } else {
        this.flashContainer = $('.flash-container-page');
      }
      this.flashContainer.html('');
      flash = $('<div/>', {
        "class": "flash-" + type
      });
      flash.on('click', hideFlash);
      textDiv = $('<div/>', {
        "class": 'flash-text',
        text: message
      });
      textDiv.appendTo(flash);
      if (this.flashContainer.parent().hasClass('content-wrapper')) {
        textDiv.addClass('container-fluid container-limited');
      }
      flash.appendTo(this.flashContainer);
      this.flashContainer.show();
    }

    return Flash;
  })();
}).call(window);