@filerobot/approvals
Version:
Asset approvals package for Filerobot
115 lines (109 loc) • 7.48 kB
JavaScript
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
function _possibleConstructorReturn(t, e) { if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return _assertThisInitialized(t); }
function _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
function _getPrototypeOf(t) { return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, _getPrototypeOf(t); }
function _inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && _setPrototypeOf(t, e); }
function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); }
import { Plugin } from '@filerobot/core';
import { selectPermissionModel } from '@filerobot/explorer/lib/slices/common.slice';
import { selectIsM0LegacyMeta } from '@filerobot/explorer/lib/slices/metadata.slice';
import { GALLERY_ROLES_KEYS, PERMISSION_MODELS, PLUGINS_IDS } from '@filerobot/utils/lib/constants';
import Translator from '@filerobot/utils/lib/Translator';
import approvalsReducer, { activateApproval as _activateApproval, approvalsCommonStateUpdated } from './common.slice';
import defaultLocale from './defaultLocale';
import ApprovalsTab from './components/ApprovalsTab';
import ApprovalInfoPopup from './components/ApprovalInfoPopup';
/**
* Class to encapsulate asset approvals implementation from main Explorer package
*/
var Approvals = /*#__PURE__*/function (_Plugin) {
// static VERSION = packageInfo.version
/**
* @param {object} filerobot instance of the plugin
* @param {object} opts
*/
function Approvals(filerobot, opts) {
var _this$opts;
var _this;
_classCallCheck(this, Approvals);
_this = _callSuper(this, Approvals, [filerobot, opts]);
_this.id = ((_this$opts = _this.opts) === null || _this$opts === void 0 ? void 0 : _this$opts.id) || PLUGINS_IDS.APPROVALS;
_this.filerobot = filerobot;
_this.type = 'modifier';
// set default options
var defaultOptions = {
manageApprovalsGalleryRoles: [GALLERY_ROLES_KEYS.MANAGER, GALLERY_ROLES_KEYS.MODERATOR],
visibleApproversLimit: 6
};
_this.defaultLocale = {
strings: defaultLocale
};
_this.i18nInit();
// merge default options with the ones set by user
_this.opts = _objectSpread(_objectSpread({}, defaultOptions), opts);
_this.isEnabled = _this.isEnabled.bind(_this);
return _this;
}
_inherits(Approvals, _Plugin);
return _createClass(Approvals, [{
key: "isEnabled",
value: function isEnabled() {
var _explorerPlugin$opts;
var state = this.filerobot.getGlobalState();
var permissionModel = selectPermissionModel(state);
var explorerPlugin = this.filerobot.getPlugin(PLUGINS_IDS.EXPLORER);
// console.log({ permissionModel, isM0: selectIsM0LegacyMeta(state), floaty: this.filerobot?.opts?.floaty })
// Approval flows to be disabled entirely from PT_FAST & M0_LEGACY tokens and for non Hub case
return !selectIsM0LegacyMeta(state) && permissionModel !== PERMISSION_MODELS.PT_FAST && (explorerPlugin === null || explorerPlugin === void 0 ? void 0 : (_explorerPlugin$opts = explorerPlugin.opts) === null || _explorerPlugin$opts === void 0 ? void 0 : _explorerPlugin$opts.floaty);
}
}, {
key: "i18nInit",
value: function i18nInit() {
this.translator = new Translator([this.defaultLocale, this.filerobot.locale, this.opts.locale]);
this.i18n = this.translator.translate.bind(this.translator);
this.i18nArray = this.translator.translateArray.bind(this.translator);
}
}, {
key: "render",
value: function render() {
return ApprovalsTab;
}
}, {
key: "activateApproval",
value: function activateApproval(approvalUuid) {
return this.dispatch(_activateApproval(approvalUuid));
}
}, {
key: "renderApprovalInfoPopup",
value: function renderApprovalInfoPopup() {
return ApprovalInfoPopup;
}
}, {
key: "setPluginCommonState",
value: function setPluginCommonState(update) {
return this.dispatch(approvalsCommonStateUpdated(update));
}
}, {
key: "getPluginReducer",
value: function getPluginReducer() {
return approvalsReducer;
}
}, {
key: "install",
value: function install() {}
}, {
key: "uninstall",
value: function uninstall() {}
}]);
}(Plugin);
export { Approvals as default };