2017-09-23 17:25:48 +00:00
|
|
|
// @flow
|
|
|
|
import { Platform } from 'react-native';
|
2017-05-25 22:39:06 +00:00
|
|
|
|
2017-06-29 16:24:34 +00:00
|
|
|
// todo cleanup unused utilities from legacy code
|
2017-09-23 17:25:48 +00:00
|
|
|
|
2017-02-14 15:56:28 +00:00
|
|
|
// modeled after base64 web-safe chars, but ordered by ASCII
|
|
|
|
const PUSH_CHARS = '-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz';
|
2017-09-26 13:57:25 +00:00
|
|
|
const AUTO_ID_CHARS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|
2017-02-14 15:56:28 +00:00
|
|
|
const hasOwnProperty = Object.hasOwnProperty;
|
2017-09-25 22:19:13 +00:00
|
|
|
|
|
|
|
// const DEFAULT_CHUNK_SIZE = 50;
|
2017-02-14 15:56:28 +00:00
|
|
|
|
2017-09-27 11:57:53 +00:00
|
|
|
// Source: https://cloud.google.com/bigquery/docs/reference/standard-sql/lexical
|
|
|
|
const REGEXP_FIELD_NAME = new RegExp(
|
|
|
|
`^(?:\\.?((?:(?:[A-Za-z_][A-Za-z_0-9]*)|(?:[A-Za-z_][A-Za-z_0-9]*))+))$`
|
|
|
|
);
|
|
|
|
const REGEXP_FIELD_PATH = new RegExp(
|
|
|
|
`^((?:(?:[A-Za-z_][A-Za-z_0-9]*)|(?:[A-Za-z_][A-Za-z_0-9]*))+)(?:\\.((?:(?:[A-Za-z_][A-Za-z_0-9]*)|(?:[A-Za-z_][A-Za-z_0-9]*))+))*$`
|
|
|
|
);
|
|
|
|
|
2017-02-14 15:56:28 +00:00
|
|
|
/**
|
|
|
|
* Deep get a value from an object.
|
|
|
|
* @website https://github.com/Salakar/deeps
|
|
|
|
* @param object
|
|
|
|
* @param path
|
|
|
|
* @param joiner
|
|
|
|
* @returns {*}
|
|
|
|
*/
|
2017-09-23 17:16:43 +00:00
|
|
|
export function deepGet(object: Object,
|
|
|
|
path: string,
|
|
|
|
joiner?: string = '/'): any {
|
2017-02-14 15:56:28 +00:00
|
|
|
const keys = path.split(joiner);
|
|
|
|
|
|
|
|
let i = 0;
|
|
|
|
let tmp = object;
|
|
|
|
const len = keys.length;
|
|
|
|
|
|
|
|
while (i < len) {
|
2017-03-02 13:09:41 +00:00
|
|
|
const key = keys[i++];
|
2017-02-14 15:56:28 +00:00
|
|
|
if (!tmp || !hasOwnProperty.call(tmp, key)) return null;
|
|
|
|
tmp = tmp[key];
|
|
|
|
}
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deep check if a key exists.
|
|
|
|
* @website https://github.com/Salakar/deeps
|
|
|
|
* @param object
|
|
|
|
* @param path
|
|
|
|
* @param joiner
|
|
|
|
* @returns {*}
|
|
|
|
*/
|
2017-09-23 17:16:43 +00:00
|
|
|
export function deepExists(object: Object,
|
|
|
|
path: string,
|
|
|
|
joiner?: string = '/'): boolean {
|
2017-02-14 15:56:28 +00:00
|
|
|
const keys = path.split(joiner);
|
|
|
|
|
|
|
|
let i = 0;
|
|
|
|
let tmp = object;
|
|
|
|
const len = keys.length;
|
|
|
|
|
|
|
|
while (i < len) {
|
2017-03-02 13:09:41 +00:00
|
|
|
const key = keys[i++];
|
2017-02-14 15:56:28 +00:00
|
|
|
if (!tmp || !hasOwnProperty.call(tmp, key)) return false;
|
|
|
|
tmp = tmp[key];
|
|
|
|
}
|
|
|
|
|
|
|
|
return tmp !== undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Simple is object check.
|
|
|
|
* @param item
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2017-04-04 16:58:20 +00:00
|
|
|
export function isObject(item: any): boolean {
|
2017-02-14 15:56:28 +00:00
|
|
|
return (item && typeof item === 'object' && !Array.isArray(item) && item !== null);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Simple is function check
|
|
|
|
* @param item
|
|
|
|
* @returns {*|boolean}
|
|
|
|
*/
|
2017-04-04 16:58:20 +00:00
|
|
|
export function isFunction(item?: any): boolean {
|
|
|
|
return Boolean(item && typeof item === 'function');
|
2017-02-14 15:56:28 +00:00
|
|
|
}
|
|
|
|
|
2017-06-29 16:24:34 +00:00
|
|
|
/**
|
|
|
|
* Simple is string check
|
|
|
|
* @param value
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
2017-09-25 22:05:07 +00:00
|
|
|
export function isString(value: any): boolean {
|
2017-06-29 16:24:34 +00:00
|
|
|
return typeof value === 'string';
|
|
|
|
}
|
|
|
|
|
2017-09-27 11:57:53 +00:00
|
|
|
/**
|
|
|
|
* Firestore field name/path validator.
|
|
|
|
* @param field
|
|
|
|
* @param paths
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
|
|
|
export function isValidFirestoreField(field, paths) {
|
|
|
|
return (paths ? REGEXP_FIELD_PATH : REGEXP_FIELD_NAME).test(field);
|
|
|
|
}
|
|
|
|
|
2017-09-24 12:19:24 +00:00
|
|
|
// platform checks
|
|
|
|
export const isIOS = Platform.OS === 'ios';
|
|
|
|
export const isAndroid = Platform.OS === 'android';
|
2017-09-23 17:16:43 +00:00
|
|
|
|
|
|
|
|
2017-02-14 15:56:28 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param string
|
|
|
|
* @returns {*}
|
|
|
|
*/
|
2017-04-04 16:58:47 +00:00
|
|
|
export function tryJSONParse(string: string | null): any {
|
2017-02-14 15:56:28 +00:00
|
|
|
try {
|
2017-04-04 16:58:47 +00:00
|
|
|
return string && JSON.parse(string);
|
2017-02-14 15:56:28 +00:00
|
|
|
} catch (jsonError) {
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param data
|
|
|
|
* @returns {*}
|
|
|
|
*/
|
2017-04-04 16:58:20 +00:00
|
|
|
export function tryJSONStringify(data: any): string | null {
|
2017-02-14 15:56:28 +00:00
|
|
|
try {
|
|
|
|
return JSON.stringify(data);
|
|
|
|
} catch (jsonError) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// noinspection Eslint
|
|
|
|
export const windowOrGlobal = (typeof self === 'object' && self.self === self && self) || (typeof global === 'object' && global.global === global && global) || this;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* No operation func
|
|
|
|
*/
|
|
|
|
export function noop(): void {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-25 22:19:13 +00:00
|
|
|
// /**
|
|
|
|
// * Delays chunks based on sizes per event loop.
|
|
|
|
// * @param collection
|
|
|
|
// * @param chunkSize
|
|
|
|
// * @param operation
|
|
|
|
// * @param callback
|
|
|
|
// * @private
|
|
|
|
// */
|
|
|
|
// function _delayChunk(collection: Array<*>,
|
|
|
|
// chunkSize: number,
|
|
|
|
// operation: Function,
|
|
|
|
// callback: Function): void {
|
|
|
|
// const length = collection.length;
|
|
|
|
// const iterations = Math.ceil(length / chunkSize);
|
|
|
|
//
|
|
|
|
// // noinspection ES6ConvertVarToLetConst
|
|
|
|
// let thisIteration = 0;
|
|
|
|
//
|
|
|
|
// setImmediate(function next() {
|
|
|
|
// const start = thisIteration * chunkSize;
|
|
|
|
// const _end = start + chunkSize;
|
|
|
|
// const end = _end >= length ? length : _end;
|
|
|
|
// const result = operation(collection.slice(start, end), start, end);
|
|
|
|
//
|
|
|
|
// if (thisIteration++ > iterations) {
|
|
|
|
// callback(null, result);
|
|
|
|
// } else {
|
|
|
|
// setImmediate(next);
|
|
|
|
// }
|
|
|
|
// });
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// /**
|
|
|
|
// * Async each with optional chunk size limit
|
|
|
|
// * @param array
|
|
|
|
// * @param chunkSize
|
|
|
|
// * @param iterator
|
|
|
|
// * @param cb
|
|
|
|
// */
|
|
|
|
// export function each(array: Array<*>,
|
|
|
|
// chunkSize: number | Function,
|
|
|
|
// iterator: Function,
|
|
|
|
// cb?: Function): void {
|
|
|
|
// if (typeof chunkSize === 'function') {
|
|
|
|
// cb = iterator;
|
|
|
|
// iterator = chunkSize;
|
|
|
|
// chunkSize = DEFAULT_CHUNK_SIZE;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// if (cb) {
|
|
|
|
// _delayChunk(array, chunkSize, (slice, start) => {
|
|
|
|
// for (let ii = 0, jj = slice.length; ii < jj; ii += 1) {
|
|
|
|
// iterator(slice[ii], start + ii);
|
|
|
|
// }
|
|
|
|
// }, cb);
|
|
|
|
// }
|
|
|
|
// }
|
2017-02-14 15:56:28 +00:00
|
|
|
|
2017-07-30 06:34:41 +00:00
|
|
|
/**
|
|
|
|
* Returns a string typeof that's valid for Firebase usage
|
|
|
|
* @param value
|
|
|
|
* @return {*}
|
|
|
|
*/
|
2017-04-04 16:58:20 +00:00
|
|
|
export function typeOf(value: any): string {
|
2017-03-02 13:09:41 +00:00
|
|
|
if (value === null) return 'null';
|
2017-02-14 15:56:28 +00:00
|
|
|
if (Array.isArray(value)) return 'array';
|
2017-03-02 13:09:41 +00:00
|
|
|
return typeof value;
|
2017-02-14 15:56:28 +00:00
|
|
|
}
|
|
|
|
|
2017-09-25 22:19:13 +00:00
|
|
|
// /**
|
|
|
|
// * Async map with optional chunk size limit
|
|
|
|
// * @param array
|
|
|
|
// * @param chunkSize
|
|
|
|
// * @param iterator
|
|
|
|
// * @param cb
|
|
|
|
// * @returns {*}
|
|
|
|
// */
|
|
|
|
// export function map(array: Array<*>,
|
|
|
|
// chunkSize: number | Function,
|
|
|
|
// iterator: Function,
|
|
|
|
// cb?: Function): void {
|
|
|
|
// if (typeof chunkSize === 'function') {
|
|
|
|
// cb = iterator;
|
|
|
|
// iterator = chunkSize;
|
|
|
|
// chunkSize = DEFAULT_CHUNK_SIZE;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// const result = [];
|
|
|
|
// _delayChunk(array, chunkSize, (slice, start) => {
|
|
|
|
// for (let ii = 0, jj = slice.length; ii < jj; ii += 1) {
|
|
|
|
// result.push(iterator(slice[ii], start + ii, array));
|
|
|
|
// }
|
|
|
|
// return result;
|
|
|
|
// }, () => cb && cb(result));
|
|
|
|
// }
|
|
|
|
|
|
|
|
// /**
|
|
|
|
// *
|
|
|
|
// * @param string
|
|
|
|
// * @return {string}
|
|
|
|
// */
|
|
|
|
// export function capitalizeFirstLetter(string: String) {
|
|
|
|
// return `${string.charAt(0).toUpperCase()}${string.slice(1)}`;
|
|
|
|
// }
|
2017-02-14 15:56:28 +00:00
|
|
|
|
|
|
|
// timestamp of last push, used to prevent local collisions if you push twice in one ms.
|
|
|
|
let lastPushTime = 0;
|
|
|
|
|
|
|
|
// we generate 72-bits of randomness which get turned into 12 characters and appended to the
|
|
|
|
// timestamp to prevent collisions with other clients. We store the last characters we
|
|
|
|
// generated because in the event of a collision, we'll use those same characters except
|
|
|
|
// "incremented" by one.
|
|
|
|
const lastRandChars = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a firebase id - for use with ref().push(val, cb) - e.g. -KXMr7k2tXUFQqiaZRY4'
|
|
|
|
* @param serverTimeOffset - pass in server time offset from native side
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
export function generatePushID(serverTimeOffset?: number = 0): string {
|
|
|
|
const timeStampChars = new Array(8);
|
|
|
|
let now = new Date().getTime() + serverTimeOffset;
|
|
|
|
const duplicateTime = (now === lastPushTime);
|
|
|
|
|
|
|
|
lastPushTime = now;
|
|
|
|
|
|
|
|
for (let i = 7; i >= 0; i -= 1) {
|
|
|
|
timeStampChars[i] = PUSH_CHARS.charAt(now % 64);
|
|
|
|
now = Math.floor(now / 64);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (now !== 0) throw new Error('We should have converted the entire timestamp.');
|
|
|
|
|
|
|
|
let id = timeStampChars.join('');
|
|
|
|
|
|
|
|
if (!duplicateTime) {
|
|
|
|
for (let i = 0; i < 12; i += 1) {
|
|
|
|
lastRandChars[i] = Math.floor(Math.random() * 64);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// if the timestamp hasn't changed since last push,
|
|
|
|
// use the same random number, but increment it by 1.
|
|
|
|
let i;
|
|
|
|
for (i = 11; i >= 0 && lastRandChars[i] === 63; i -= 1) {
|
|
|
|
lastRandChars[i] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
lastRandChars[i] += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 0; i < 12; i++) {
|
|
|
|
id += PUSH_CHARS.charAt(lastRandChars[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (id.length !== 20) throw new Error('Length should be 20.');
|
|
|
|
|
|
|
|
return id;
|
|
|
|
}
|
2017-05-26 16:56:04 +00:00
|
|
|
|
2017-05-27 16:31:00 +00:00
|
|
|
/**
|
|
|
|
* Converts a code and message from a native event to a JS Error
|
|
|
|
* @param code
|
|
|
|
* @param message
|
2017-08-14 17:43:21 +00:00
|
|
|
* @param additionalProps
|
2017-05-27 16:31:00 +00:00
|
|
|
* @returns {Error}
|
|
|
|
*/
|
2017-08-14 17:43:21 +00:00
|
|
|
export function nativeToJSError(code: string, message: string, additionalProps?: Object = {}) {
|
2017-09-25 22:19:13 +00:00
|
|
|
const error: Object = new Error(message);
|
2017-05-26 16:56:04 +00:00
|
|
|
error.code = code;
|
2017-08-14 17:43:21 +00:00
|
|
|
Object.assign(error, additionalProps);
|
2017-08-19 04:18:34 +00:00
|
|
|
// exclude this function from the stack
|
|
|
|
const _stackArray = error.stack.split('\n');
|
|
|
|
error.stack = _stackArray.splice(1, _stackArray.length).join('\n');
|
2017-05-26 16:56:04 +00:00
|
|
|
return error;
|
|
|
|
}
|
2017-06-29 16:24:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepends appName arg to all native method calls
|
|
|
|
* @param appName
|
|
|
|
* @param NativeModule
|
|
|
|
*/
|
2017-09-25 22:19:13 +00:00
|
|
|
export function nativeWithApp(appName: string, NativeModule: Object) {
|
2017-06-29 16:24:34 +00:00
|
|
|
const native = {};
|
|
|
|
const methods = Object.keys(NativeModule);
|
|
|
|
|
|
|
|
for (let i = 0, len = methods.length; i < len; i++) {
|
|
|
|
const method = methods[i];
|
|
|
|
native[method] = (...args) => {
|
|
|
|
return NativeModule[method](...[appName, ...args]);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return native;
|
|
|
|
}
|
|
|
|
|
2017-08-15 20:29:50 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param object
|
|
|
|
* @return {string}
|
|
|
|
*/
|
2017-09-25 22:19:13 +00:00
|
|
|
export function objectToUniqueId(object: Object): string {
|
2017-08-14 10:05:49 +00:00
|
|
|
if (!isObject(object) || object === null) return JSON.stringify(object);
|
|
|
|
|
|
|
|
const keys = Object.keys(object).sort();
|
|
|
|
|
|
|
|
let key = '{';
|
|
|
|
for (let i = 0; i < keys.length; i++) {
|
|
|
|
if (i !== 0) key += ',';
|
|
|
|
key += JSON.stringify(keys[i]);
|
|
|
|
key += ':';
|
|
|
|
key += objectToUniqueId(object[keys[i]]);
|
|
|
|
}
|
|
|
|
|
|
|
|
key += '}';
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-08-05 20:49:28 +00:00
|
|
|
/**
|
|
|
|
* Return the existing promise if no callback provided or
|
|
|
|
* exec the promise and callback if optionalCallback is valid.
|
|
|
|
*
|
|
|
|
* @param promise
|
|
|
|
* @param optionalCallback
|
|
|
|
* @return {Promise}
|
|
|
|
*/
|
2017-09-25 22:19:13 +00:00
|
|
|
export function promiseOrCallback(promise: Promise<*>, optionalCallback?: Function) {
|
2017-08-05 20:49:28 +00:00
|
|
|
if (!isFunction(optionalCallback)) return promise;
|
|
|
|
|
|
|
|
return promise.then((result) => {
|
|
|
|
// some of firebase internal tests & methods only check/return one arg
|
|
|
|
// see https://github.com/firebase/firebase-js-sdk/blob/master/src/utils/promise.ts#L62
|
|
|
|
if (optionalCallback.length === 1) {
|
|
|
|
optionalCallback(null);
|
|
|
|
} else {
|
|
|
|
optionalCallback(null, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.resolve(result);
|
|
|
|
}).catch((error) => {
|
|
|
|
optionalCallback(error);
|
|
|
|
return Promise.reject(error);
|
|
|
|
});
|
|
|
|
}
|
2017-09-26 13:57:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a firestore auto id for use with collection/document .add()
|
|
|
|
* @return {string}
|
|
|
|
*/
|
|
|
|
export function firestoreAutoId(): string {
|
|
|
|
let autoId = '';
|
|
|
|
|
|
|
|
for (let i = 0; i < 20; i++) {
|
|
|
|
autoId += AUTO_ID_CHARS.charAt(Math.floor(Math.random() * AUTO_ID_CHARS.length));
|
|
|
|
}
|
|
|
|
return autoId;
|
|
|
|
}
|