react-native/Libraries/ReactNative/ReactNativePropRegistry.js

45 lines
1.0 KiB
JavaScript
Raw Normal View History

2015-01-30 01:10:49 +00:00
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
2015-01-30 01:10:49 +00:00
*
* @providesModule ReactNativePropRegistry
2015-03-25 02:34:12 +00:00
* @flow
2015-01-30 01:10:49 +00:00
*/
'use strict';
var objects = {};
2015-01-30 01:10:49 +00:00
var uniqueID = 1;
var emptyObject = {};
2015-01-30 01:10:49 +00:00
class ReactNativePropRegistry {
static register(object: Object): number {
2015-01-30 01:10:49 +00:00
var id = ++uniqueID;
if (__DEV__) {
Object.freeze(object);
2015-01-30 01:10:49 +00:00
}
objects[id] = object;
2015-01-30 01:10:49 +00:00
return id;
}
static getByID(id: number): Object {
2015-01-30 01:10:49 +00:00
if (!id) {
// Used in the style={[condition && id]} pattern,
// we want it to be a no-op when the value is false or null
return emptyObject;
2015-01-30 01:10:49 +00:00
}
var object = objects[id];
if (!object) {
2015-01-30 01:10:49 +00:00
console.warn('Invalid style with id `' + id + '`. Skipping ...');
return emptyObject;
2015-01-30 01:10:49 +00:00
}
return object;
2015-01-30 01:10:49 +00:00
}
}
module.exports = ReactNativePropRegistry;