UNPKG

box-ui-elements-mlh

Version:
563 lines (459 loc) 19.4 kB
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } } function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; } function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } /** * * @file Helper for the box item API * @author Box */ import noop from 'lodash/noop'; import setProp from 'lodash/set'; import { getBadItemError, getBadPermissionsError } from '../utils/error'; import { fillMissingProperties } from '../utils/fields'; import Base from './Base'; import { ACCESS_NONE, CACHE_PREFIX_SEARCH, CACHE_PREFIX_FOLDER, TYPE_FOLDER, ERROR_CODE_DELETE_ITEM, ERROR_CODE_RENAME_ITEM, ERROR_CODE_SHARE_ITEM } from '../constants'; var Item = /*#__PURE__*/function (_Base) { _inherits(Item, _Base); var _super = _createSuper(Item); function Item() { var _this; _classCallCheck(this, Item); for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } _this = _super.call.apply(_super, [this].concat(args)); _defineProperty(_assertThisInitialized(_this), "deleteSuccessHandler", function () { if (_this.isDestroyed()) { return; } // When fetching the parent folder from the cache // we have no guarantees that it will be there since // search results happen across folders and we only // add those folders to cache that have been navigated to. var parentKey = _this.getParentCacheKey(_this.parentId); var folder = _this.getCache().get(parentKey); if (!folder) { _this.postDeleteCleanup(); return; } // Same logic as above but in this case we may have the parent // folders meta data in cache but not its contents. var item_collection = folder.item_collection; if (!item_collection) { _this.postDeleteCleanup(); return; } var entries = item_collection.entries, total_count = item_collection.total_count; if (!Array.isArray(entries) || typeof total_count !== 'number') { throw getBadItemError(); } var childKey = _this.getCacheKey(_this.id); var oldCount = entries.length; var newEntries = entries.filter(function (entry) { return entry !== childKey; }); var newCount = newEntries.length; var updatedObject = _this.merge(parentKey, 'item_collection', _extends(item_collection, { entries: newEntries, total_count: total_count - (oldCount - newCount) })); _this.successCallback(updatedObject); _this.postDeleteCleanup(); }); _defineProperty(_assertThisInitialized(_this), "renameSuccessHandler", function (_ref) { var data = _ref.data; if (!_this.isDestroyed()) { // Get rid of all searches _this.getCache().unsetAll(CACHE_PREFIX_SEARCH); var updatedObject = _this.merge(_this.getCacheKey(_this.id), 'name', data.name); _this.successCallback(updatedObject); } }); _defineProperty(_assertThisInitialized(_this), "shareSuccessHandler", function (data, fields) { if (!_this.isDestroyed()) { // Add fields that were requested but not returned var dataWithMissingFields = fields ? fillMissingProperties(data, fields) : data; var cache = _this.getCache(); var key = _this.getCacheKey(_this.id); if (cache.has(key)) { cache.merge(key, dataWithMissingFields); } else { cache.set(key, dataWithMissingFields); } _this.successCallback(cache.get(key)); } }); return _this; } _createClass(Item, [{ key: "getParentCacheKey", value: /** * @property {string} */ /** * @property {string} */ /** * @property {Function} */ /** * @property {Function} */ /** * Creates a key for the item's parent * This is always a folder * * @param {string} Id - folder id * @return {string} Key */ function getParentCacheKey(id) { return "".concat(CACHE_PREFIX_FOLDER).concat(id); } /** * Creates a key for the cache * * @param {string} Id - Folder id * @return {string} Key */ }, { key: "getCacheKey", value: function getCacheKey(id) { return "getCacheKey(".concat(id, ") should be overriden"); } /** * API URL for items * * @param {string} id - Item id * @protected * @return {string} Base url for files */ }, { key: "getUrl", value: function getUrl(id) { return "getUrl(".concat(id, ") should be overriden"); } /** * Merges new data with old data and returns new data * * @param {String} cacheKey - The cache key of item to merge * @param {String} key - The attribute to merge * @param {Object} value - The value to merge * @return {BoxItem} The newly updated object from the cache */ }, { key: "merge", value: function merge(cacheKey, key, value) { var cache = this.getCache(); cache.merge(cacheKey, setProp({}, key, value)); return cache.get(cacheKey); } /** * Steps to do after deletion * * @return {void} */ }, { key: "postDeleteCleanup", value: function postDeleteCleanup() { if (this.isDestroyed()) { return; } // Get rid of all searches this.getCache().unsetAll(CACHE_PREFIX_SEARCH); this.successCallback(); } /** * Handles response for deletion * * @return {void} */ }, { key: "deleteItem", value: /** * API to delete an Item * * @param {Object} item - Item to delete * @param {Function} successCallback - Success callback * @param {Function} errorCallback - Error callback * @return {void} */ function deleteItem(item, successCallback) { var _this2 = this; var errorCallback = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : noop; if (this.isDestroyed()) { return Promise.reject(); } this.errorCode = ERROR_CODE_DELETE_ITEM; var id = item.id, permissions = item.permissions, parent = item.parent, type = item.type; if (!id || !permissions || !parent || !type) { errorCallback(getBadItemError(), this.errorCode); return Promise.reject(); } var parentId = parent.id; var can_delete = permissions.can_delete; if (!can_delete || !parentId) { errorCallback(getBadPermissionsError(), this.errorCode); return Promise.reject(); } this.id = id; this.parentId = parentId; this.successCallback = successCallback; this.errorCallback = errorCallback; var url = "".concat(this.getUrl(id)).concat(type === TYPE_FOLDER ? '?recursive=true' : ''); return this.xhr.delete({ url: url }).then(this.deleteSuccessHandler).catch(function (e) { _this2.errorHandler(e); }); } /** * Handles response for rename * * @param {BoxItem} data - The updated item * @return {void} */ }, { key: "rename", value: /** * API to rename an Item * * @param {Object} item - Item to rename * @param {string} name - Item new name * @param {Function} successCallback - Success callback * @param {Function} errorCallback - Error callback * @return {void} */ function rename(item, name, successCallback) { var _this3 = this; var errorCallback = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : noop; if (this.isDestroyed()) { return Promise.reject(); } this.errorCode = ERROR_CODE_RENAME_ITEM; var id = item.id, permissions = item.permissions; if (!id || !permissions) { errorCallback(getBadItemError(), this.errorCode); return Promise.reject(); } var can_rename = permissions.can_rename; if (!can_rename) { errorCallback(getBadPermissionsError(), this.errorCode); return Promise.reject(); } this.id = id; this.successCallback = successCallback; this.errorCallback = errorCallback; return this.xhr.put({ url: "".concat(this.getUrl(id)), data: { name: name } }).then(this.renameSuccessHandler).catch(function (e) { _this3.errorHandler(e); }); } /** * Handles response for shared link * * @param {BoxItem} data - The updated item * @param {Array<string>} [fields] - Optional fields from request * @return {void} */ }, { key: "validateRequest", value: /** * Validate an item update request * * @param {string|void} itemID - ID of item to share * @param {BoxItemPermission|void} itemPermissions - Permissions for item * @throws {Error} * @return {void} */ function validateRequest(itemID, itemPermissions) { if (!itemID || !itemPermissions) { this.errorCode = ERROR_CODE_SHARE_ITEM; throw getBadItemError(); } var can_share = itemPermissions.can_share, can_set_share_access = itemPermissions.can_set_share_access; if (!can_share || !can_set_share_access) { this.errorCode = ERROR_CODE_SHARE_ITEM; throw getBadPermissionsError(); } } /** * API to create or remove a shared link * * @param {Object} item - Item to share * @param {string} access - Shared access level * @param {Function} successCallback - Success callback * @param {Function|void} errorCallback - Error callback * @param {Array<string>|void} [options.fields] - Optionally include specific fields * @return {Promise<void>} */ }, { key: "share", value: function () { var _share = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee(item, access, // if "access" is undefined, the backend will set the default access level for the shared link successCallback) { var errorCallback, options, id, permissions, fields, requestData, _yield$this$xhr$put, data, _args = arguments; return regeneratorRuntime.wrap(function _callee$(_context) { while (1) { switch (_context.prev = _context.next) { case 0: errorCallback = _args.length > 3 && _args[3] !== undefined ? _args[3] : noop; options = _args.length > 4 && _args[4] !== undefined ? _args[4] : {}; if (!this.isDestroyed()) { _context.next = 4; break; } return _context.abrupt("return", Promise.reject()); case 4: _context.prev = 4; id = item.id, permissions = item.permissions; this.id = id; this.successCallback = successCallback; this.errorCallback = errorCallback; this.validateRequest(id, permissions); fields = options.fields; requestData = { url: this.getUrl(this.id), data: { shared_link: access === ACCESS_NONE ? null : { access: access } } }; if (fields) { requestData.params = { fields: fields.toString() }; } _context.next = 15; return this.xhr.put(requestData); case 15: _yield$this$xhr$put = _context.sent; data = _yield$this$xhr$put.data; return _context.abrupt("return", this.shareSuccessHandler(data, fields)); case 20: _context.prev = 20; _context.t0 = _context["catch"](4); return _context.abrupt("return", this.errorHandler(_context.t0)); case 23: case "end": return _context.stop(); } } }, _callee, this, [[4, 20]]); })); function share(_x, _x2, _x3) { return _share.apply(this, arguments); } return share; }() /** * API to update a shared link * * @param {BoxItem} item - Item to update * @param {$Shape<SharedLink>} sharedLinkParams - New shared link parameters * @param {Function} successCallback - Success callback * @param {Function|void} errorCallback - Error callback * @param {Array<string>|void} [options.fields] - Optionally include specific fields * @return {Promise<void>} */ }, { key: "updateSharedLink", value: function () { var _updateSharedLink = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee2(item, sharedLinkParams, successCallback) { var errorCallback, options, id, permissions, fields, requestData, _yield$this$xhr$put2, data, _args2 = arguments; return regeneratorRuntime.wrap(function _callee2$(_context2) { while (1) { switch (_context2.prev = _context2.next) { case 0: errorCallback = _args2.length > 3 && _args2[3] !== undefined ? _args2[3] : noop; options = _args2.length > 4 && _args2[4] !== undefined ? _args2[4] : {}; if (!this.isDestroyed()) { _context2.next = 4; break; } return _context2.abrupt("return", Promise.reject()); case 4: _context2.prev = 4; id = item.id, permissions = item.permissions; this.id = id; this.successCallback = successCallback; this.errorCallback = errorCallback; this.validateRequest(id, permissions); fields = options.fields; requestData = { url: this.getUrl(this.id), data: { shared_link: sharedLinkParams } }; if (fields) { requestData.params = { fields: fields.toString() }; } _context2.next = 15; return this.xhr.put(requestData); case 15: _yield$this$xhr$put2 = _context2.sent; data = _yield$this$xhr$put2.data; return _context2.abrupt("return", this.shareSuccessHandler(data, fields)); case 20: _context2.prev = 20; _context2.t0 = _context2["catch"](4); return _context2.abrupt("return", this.errorHandler(_context2.t0)); case 23: case "end": return _context2.stop(); } } }, _callee2, this, [[4, 20]]); })); function updateSharedLink(_x4, _x5, _x6) { return _updateSharedLink.apply(this, arguments); } return updateSharedLink; }() }]); return Item; }(Base); export default Item; //# sourceMappingURL=Item.js.map