atom-nuclide
Version:
A unified developer experience for web and mobile development, built as a suite of features on top of Atom to provide hackability and the support of an active community.
50 lines (40 loc) • 2.08 kB
JavaScript
Object.defineProperty(exports, '__esModule', {
value: true
});
/*
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the license found in the LICENSE file in
* the root directory of this source tree.
*/
var _slicedToArray = (function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i['return']) _i['return'](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError('Invalid attempt to destructure non-iterable instance'); } }; })();
exports.serialize = serialize;
exports.deserialize = deserialize;
var _commonsNodeCollection2;
function _commonsNodeCollection() {
return _commonsNodeCollection2 = require('../../commons-node/collection');
}
function serialize(state) {
return {
serializedLocationStates: (0, (_commonsNodeCollection2 || _commonsNodeCollection()).objectFromMap)(new Map(Array.from(state.locations.entries()).map(function (_ref) {
var _ref2 = _slicedToArray(_ref, 2);
var id = _ref2[0];
var location = _ref2[1];
var serialized = typeof location.serialize === 'function' ? location.serialize() : null;
return [id, serialized];
}).filter(function (_ref3) {
var _ref32 = _slicedToArray(_ref3, 2);
var serialized = _ref32[1];
return serialized != null;
})))
};
}
function deserialize(rawState) {
return {
// Viewables and locations will re-register using the service.
locations: new Map(),
viewableFactories: new Map(),
serializedLocationStates: new Map((0, (_commonsNodeCollection2 || _commonsNodeCollection()).objectEntries)(rawState.serializedLocationStates || {}))
};
}