forked from facebook/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLegacyImmutableObject.js
193 lines (175 loc) · 6.09 KB
/
LegacyImmutableObject.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/**
* Copyright 2013-2014 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @providesModule LegacyImmutableObject
* @typechecks
*/
"use strict";
var invariant = require('invariant');
var isNode = require('isNode');
var merge = require('merge');
var mergeInto = require('mergeInto');
var mergeHelpers = require('mergeHelpers');
var checkMergeObjectArgs = mergeHelpers.checkMergeObjectArgs;
var isTerminal = mergeHelpers.isTerminal;
/**
* Wrapper around JavaScript objects that provide a guarantee of immutability at
* developer time when strict mode is used. The extra computations required to
* enforce immutability is stripped out in production for performance reasons.
*/
var LegacyImmutableObject;
function assertLegacyImmutableObject(immutableObject) {
invariant(
immutableObject instanceof LegacyImmutableObject,
'LegacyImmutableObject: Attempted to set fields on an object that is not ' +
'an instance of LegacyImmutableObject.'
);
}
if (__DEV__) {
/**
* Constructs an instance of `LegacyImmutableObject`.
*
* @param {?object} initialProperties The initial set of properties.
* @constructor
*/
LegacyImmutableObject = function LegacyImmutableObject(initialProperties) {
mergeInto(this, initialProperties);
deepFreeze(this);
};
/**
* Checks if an object should be deep frozen. Instances of
* `LegacyImmutableObject` are assumed to have already been deep frozen.
*
* @param {*} object The object to check.
* @return {boolean} Whether or not deep freeze is needed.
*/
var shouldRecurseFreeze = function(object) {
return (
typeof object === 'object' &&
!(object instanceof LegacyImmutableObject) &&
object !== null
);
};
/**
* Freezes the supplied object deeply.
*
* @param {*} object The object to freeze.
*/
var deepFreeze = function(object) {
if (isNode(object)) {
return; // Don't try to freeze DOM nodes.
}
Object.freeze(object); // First freeze the object.
for (var prop in object) {
var field = object[prop];
if (object.hasOwnProperty(prop) && shouldRecurseFreeze(field)) {
deepFreeze(field);
}
}
};
/**
* Returns a new LegacyImmutableObject that is identical to the supplied
* object but with the supplied changes, `put`.
*
* @param {LegacyImmutableObject} immutableObject Starting object.
* @param {?object} put Fields to merge into the object.
* @return {LegacyImmutableObject} The result of merging in `put` fields.
*/
LegacyImmutableObject.set = function(immutableObject, put) {
assertLegacyImmutableObject(immutableObject);
var totalNewFields = merge(immutableObject, put);
return new LegacyImmutableObject(totalNewFields);
};
} else {
/**
* Constructs an instance of `LegacyImmutableObject`.
*
* @param {?object} initialProperties The initial set of properties.
* @constructor
*/
LegacyImmutableObject = function LegacyImmutableObject(initialProperties) {
mergeInto(this, initialProperties);
};
/**
* Returns a new LegacyImmutableObject that is identical to the supplied
* object but with the supplied changes, `put`.
*
* @param {LegacyImmutableObject} immutableObject Starting object.
* @param {?object} put Fields to merge into the object.
* @return {LegacyImmutableObject} The result of merging in `put` fields.
*/
LegacyImmutableObject.set = function(immutableObject, put) {
assertLegacyImmutableObject(immutableObject);
var newMap = new LegacyImmutableObject(immutableObject);
mergeInto(newMap, put);
return newMap;
};
}
/**
* Sugar for:
* `LegacyImmutableObject.set(LegacyImmutableObject, {fieldName: putField})`.
*
* @param {LegacyImmutableObject} immutableObject Object on which to set field.
* @param {string} fieldName Name of the field to set.
* @param {*} putField Value of the field to set.
* @return {LegacyImmutableObject} [description]
*/
LegacyImmutableObject.setField = function(immutableObject, fieldName, putField) {
var put = {};
put[fieldName] = putField;
return LegacyImmutableObject.set(immutableObject, put);
};
/**
* Returns a new LegacyImmutableObject that is identical to the supplied object
* but with the supplied changes recursively applied.
*
* @param {LegacyImmutableObject} immutableObject Object on which to set fields.
* @param {object} put Fields to merge into the object.
* @return {LegacyImmutableObject} The result of merging in `put` fields.
*/
LegacyImmutableObject.setDeep = function(immutableObject, put) {
assertLegacyImmutableObject(immutableObject);
return _setDeep(immutableObject, put);
};
function _setDeep(object, put) {
checkMergeObjectArgs(object, put);
var totalNewFields = {};
// To maintain the order of the keys, copy the base object's entries first.
var keys = Object.keys(object);
for (var ii = 0; ii < keys.length; ii++) {
var key = keys[ii];
if (!put.hasOwnProperty(key)) {
totalNewFields[key] = object[key];
} else if (isTerminal(object[key]) || isTerminal(put[key])) {
totalNewFields[key] = put[key];
} else {
totalNewFields[key] = _setDeep(object[key], put[key]);
}
}
// Apply any new keys that the base object didn't have.
var newKeys = Object.keys(put);
for (ii = 0; ii < newKeys.length; ii++) {
var newKey = newKeys[ii];
if (object.hasOwnProperty(newKey)) {
continue;
}
totalNewFields[newKey] = put[newKey];
}
return (object instanceof LegacyImmutableObject ||
put instanceof LegacyImmutableObject) ?
new LegacyImmutableObject(totalNewFields) :
totalNewFields;
}
module.exports = LegacyImmutableObject;