UNPKG

react-proxy

Version:

Proxies React components without unmounting or losing their state.

209 lines (172 loc) 5.68 kB
import WeakMap from 'core-js/library/es6/weak-map'; import createPrototypeProxy from './createPrototypeProxy'; import bindAutoBindMethods from './bindAutoBindMethods'; import deleteUnknownAutoBindMethods from './deleteUnknownAutoBindMethods'; import supportsProtoAssignment from './supportsProtoAssignment'; const RESERVED_STATICS = [ 'length', 'name', 'arguments', 'caller', 'prototype', 'toString' ]; function isEqualDescriptor(a, b) { if (!a && !b) { return true; } if (!a || !b) { return false; } for (let key in a) { if (a[key] !== b[key]) { return false; } } return true; } let allProxies = new WeakMap(); function proxyClass(InitialComponent) { // Prevent double wrapping. // Given a proxy class, return the existing proxy managing it. if (allProxies.has(InitialComponent)) { return allProxies.get(InitialComponent); } let CurrentComponent; let ProxyComponent; let staticDescriptors = {}; function wasStaticModifiedByUser(key) { // Compare the descriptor with the one we previously set ourselves. const currentDescriptor = Object.getOwnPropertyDescriptor(ProxyComponent, key); return !isEqualDescriptor(staticDescriptors[key], currentDescriptor); } function instantiate(factory, context, params) { const component = factory(); try { return component.apply(context, params); } catch (err) { // Native ES6 class instantiation const instance = new component(...params); Object.keys(instance).forEach(key => { if (RESERVED_STATICS.indexOf(key) > -1) { return; } context[key] = instance[key]; }) } } try { // Create a proxy constructor with matching name ProxyComponent = new Function('factory', 'instantiate', `return function ${InitialComponent.name || 'ProxyComponent'}() { return instantiate(factory, this, arguments); }` )(() => CurrentComponent, instantiate); } catch (err) { // Some environments may forbid dynamic evaluation ProxyComponent = function () { return instantiate(() => CurrentComponent, this, arguments); }; } // Proxy toString() to the current constructor ProxyComponent.toString = function toString() { return CurrentComponent.toString(); }; let prototypeProxy; if (InitialComponent.prototype && InitialComponent.prototype.isReactComponent) { // Point proxy constructor to the proxy prototype prototypeProxy = createPrototypeProxy(); ProxyComponent.prototype = prototypeProxy.get(); } function update(NextComponent) { if (typeof NextComponent !== 'function') { throw new Error('Expected a constructor.'); } // Prevent proxy cycles if (allProxies.has(NextComponent)) { return update(allProxies.get(NextComponent).__getCurrent()); } // Save the next constructor so we call it CurrentComponent = NextComponent; // Try to infer displayName ProxyComponent.displayName = NextComponent.displayName || NextComponent.name; // Set up the same prototype for inherited statics ProxyComponent.__proto__ = NextComponent.__proto__; // Copy static methods and properties Object.getOwnPropertyNames(NextComponent).forEach(key => { if (RESERVED_STATICS.indexOf(key) > -1) { return; } const staticDescriptor = { ...Object.getOwnPropertyDescriptor(NextComponent, key), configurable: true }; // Copy static unless user has redefined it at runtime if (!wasStaticModifiedByUser(key)) { Object.defineProperty(ProxyComponent, key, staticDescriptor); staticDescriptors[key] = staticDescriptor; } }); // Remove old static methods and properties Object.getOwnPropertyNames(ProxyComponent).forEach(key => { if (RESERVED_STATICS.indexOf(key) > -1) { return; } // Skip statics that exist on the next class if (NextComponent.hasOwnProperty(key)) { return; } // Skip non-configurable statics const descriptor = Object.getOwnPropertyDescriptor(ProxyComponent, key); if (descriptor && !descriptor.configurable) { return; } // Delete static unless user has redefined it at runtime if (!wasStaticModifiedByUser(key)) { delete ProxyComponent[key]; delete staticDescriptors[key]; } }); if (prototypeProxy) { // Update the prototype proxy with new methods const mountedInstances = prototypeProxy.update(NextComponent.prototype); // Set up the constructor property so accessing the statics work ProxyComponent.prototype.constructor = ProxyComponent; // We might have added new methods that need to be auto-bound mountedInstances.forEach(bindAutoBindMethods); mountedInstances.forEach(deleteUnknownAutoBindMethods); } }; function get() { return ProxyComponent; } function getCurrent() { return CurrentComponent; } update(InitialComponent); const proxy = { get, update }; allProxies.set(ProxyComponent, proxy); Object.defineProperty(proxy, '__getCurrent', { configurable: false, writable: false, enumerable: false, value: getCurrent }); return proxy; } function createFallback(Component) { let CurrentComponent = Component; return { get() { return CurrentComponent; }, update(NextComponent) { CurrentComponent = NextComponent; } }; } export default function createClassProxy(Component) { return Component.__proto__ && supportsProtoAssignment() ? proxyClass(Component) : createFallback(Component); }