@lonelyplanet/dotcom-core
Version:
53 lines (52 loc) • 2.19 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var __assign = (this && this.__assign) || Object.assign || function(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;
};
Object.defineProperty(exports, "__esModule", { value: true });
var React = require("react");
var index_1 = require("./index");
var Cookie = require("js-cookie");
var Component = React.Component;
var GlobalToastFromCookie = (function (_super) {
__extends(GlobalToastFromCookie, _super);
function GlobalToastFromCookie(props) {
var _this = _super.call(this, props) || this;
_this.state = {
message: "",
type: "success",
duration: 5000,
animationDuration: 200,
visible: false,
title: "",
};
return _this;
}
GlobalToastFromCookie.prototype.componentDidMount = function () {
var toastCookie = Cookie.get("lpToast");
if (toastCookie) {
return this.setState(__assign({}, this.state, JSON.parse(toastCookie), { visible: true }));
}
};
GlobalToastFromCookie.prototype.render = function () {
return (React.createElement(index_1.default, { message: this.state.message, type: this.state.type, duration: this.state.duration, animationDuration: this.state.animationDuration, visible: this.state.visible, title: this.state.title, onClose: function () {
Cookie.remove("lpToast", { domain: ".lonelyplanet.com" });
} }));
};
return GlobalToastFromCookie;
}(React.Component));
exports.default = GlobalToastFromCookie;