[RN] Extract a function
This commit is contained in:
parent
8cdd73b987
commit
9833965a27
|
@ -40,20 +40,7 @@ MiddlewareRegistry.register(store => next => action => {
|
||||||
|
|
||||||
// The (externa API) event's name is the string representation of the
|
// The (externa API) event's name is the string representation of the
|
||||||
// (redux) action's type.
|
// (redux) action's type.
|
||||||
let name = type.toString();
|
const name = _getSymbolDescription(type);
|
||||||
|
|
||||||
// XXX We are using Symbol for (redux) action types at the time of this
|
|
||||||
// writing so the Symbol's description should be used.
|
|
||||||
if (name.startsWith('Symbol(') && name.endsWith(')')) {
|
|
||||||
name = name.slice(7, -1);
|
|
||||||
}
|
|
||||||
|
|
||||||
// The polyfill es6-symbol that we use does not appear to comply with
|
|
||||||
// the Symbol standard and, merely, adds @@ at the beginning of the
|
|
||||||
// description.
|
|
||||||
if (name.startsWith('@@')) {
|
|
||||||
name = name.slice(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
_sendEvent(store, name, data);
|
_sendEvent(store, name, data);
|
||||||
break;
|
break;
|
||||||
|
@ -63,6 +50,29 @@ MiddlewareRegistry.register(store => next => action => {
|
||||||
return result;
|
return result;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the description of a specific <tt>Symbol</tt>.
|
||||||
|
*
|
||||||
|
* @param {Symbol} symbol - The <tt>Symbol</tt> to retrieve the description of.
|
||||||
|
* @private
|
||||||
|
* @returns {string} The description of <tt>symbol</tt>.
|
||||||
|
*/
|
||||||
|
function _getSymbolDescription(symbol: Symbol) {
|
||||||
|
let description = symbol.toString();
|
||||||
|
|
||||||
|
if (description.startsWith('Symbol(') && description.endsWith(')')) {
|
||||||
|
description = description.slice(7, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// The polyfill es6-symbol that we use does not appear to comply with the
|
||||||
|
// Symbol standard and, merely, adds @@ at the beginning of the description.
|
||||||
|
if (description.startsWith('@@')) {
|
||||||
|
description = description.slice(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
return description;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sends a specific event to the native counterpart of the External API. Native
|
* Sends a specific event to the native counterpart of the External API. Native
|
||||||
* apps may listen to such events via the mechanisms provided by the (native)
|
* apps may listen to such events via the mechanisms provided by the (native)
|
||||||
|
|
Loading…
Reference in New Issue