|
1234567891011121314151617181920212223242526 |
- /**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- *
- * @format
- *
- * @emails oncall+draft_js
- */
- 'use strict';
-
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty(target, key, source[key]); }); } return target; }
-
- 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; }
-
- function updateEntityDataInContentState(contentState, key, data, merge) {
- var instance = contentState.getEntity(key);
- var entityData = instance.getData();
- var newData = merge ? _objectSpread({}, entityData, data) : data;
- var newInstance = instance.set('data', newData);
- var newEntityMap = contentState.getEntityMap().set(key, newInstance);
- return contentState.set('entityMap', newEntityMap);
- }
-
- module.exports = updateEntityDataInContentState;
|