react-redux-toastr
Version:
react-redux-toastr is a React toastr message implemented with Redux
54 lines (53 loc) • 1.44 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.add = add;
exports.showConfirm = exports.removeByType = exports.remove = exports.hideConfirm = exports.clean = void 0;
var _constants = require("./constants");
var _utils = require("./utils");
var _reducer = require("./reducer");
var _config = _interopRequireDefault(require("./config"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
function add(toastr) {
if (_config["default"].preventDuplicates && (0, _utils.preventDuplication)(_reducer.toastrsCache, toastr)) {
return {
type: _constants.ADD_TOASTR,
payload: {
ignoreToastr: true
}
};
}
return {
type: _constants.ADD_TOASTR,
payload: toastr
};
}
var clean = exports.clean = function clean() {
return {
type: _constants.CLEAN_TOASTR
};
};
var remove = exports.remove = function remove(payload) {
return {
type: _constants.REMOVE_TOASTR,
payload: payload
};
};
var showConfirm = exports.showConfirm = function showConfirm(payload) {
return {
type: _constants.SHOW_CONFIRM,
payload: payload
};
};
var hideConfirm = exports.hideConfirm = function hideConfirm() {
return {
type: _constants.HIDE_CONFIRM
};
};
var removeByType = exports.removeByType = function removeByType(payload) {
return {
type: _constants.REMOVE_BY_TYPE,
payload: payload
};
};
;