This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
allprojects { | |
ext { | |
buildTools = "27.0.3" | |
compileSdk = 27 | |
googlePlayServicesVersion = "11.8.0" | |
minSdk = 16 | |
targetSdk = 23 | |
} | |
configurations.all { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
import {curry} from "flow-static-land/lib/Fun"; | |
import type {ComponentType, ElementRef} from "react"; | |
type State = Object; | |
type Updater<Props: Object> = (prevState: State, props: Props) => State; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
import shallowEqual from "../shallowEqual"; | |
type OnPropsChanged<Props> = ( | |
props: Props, | |
component: React$Component<*, Props, *> | |
) => mixed; | |
const updateIfPropsChanged = <Props: Object, State: void | Object>( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const {hasOwnProperty} = Object.prototype; | |
const isObject = thing => thing !== null && typeof thing === "object"; | |
const objectContains = (object, otherObject) => { | |
const objectIsArray = Array.isArray(object); | |
const otherObjectIsArray = Array.isArray(otherObject); | |
if (objectIsArray && !otherObjectIsArray) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
import mapValues from 'lodash/fp/mapValues'; | |
type Config = { | |
allowed?: Array<string> | |
}; | |
type ListenerRelatedMethod = (eventName: string, listener: Function) => void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// API: | |
// | |
// Promise.prototype.cancel(...args): | |
// | Promise<resolved> // if promise was cancellable and no error happened | |
// | Promise<rejected> // if promise was not cancellable or some error happened | |
// | |
// type CancellationHandler = (...args) => | |
// | Promise<rejected> // can be returned manually or automatically generated by throwing an error | |
// | Promise<resolved> // can be returned manually or returning without throwing an error | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import createDeferred from "./createDeferred"; | |
const awaitTimeout = (miliseconds, onTimeout) => { | |
const deferred = createDeferred(); | |
const timeoutId = setTimeout( | |
() => onTimeout(deferred.resolve, deferred.reject), | |
miliseconds | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import compose from "lodash/fp/compose"; | |
import curry from "lodash/fp/curry"; | |
const mappableWith = curry((compose, apply) => Object.assign( | |
map => mappableWith(compose, compose(map, apply)), | |
{valueOf: () => apply()} | |
)); | |
const mappable = mappableWith(compose); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import createCancellationToken from './createCancellationToken'; | |
export default class AsyncQueue { | |
process = createCancellationToken() | |
_tasks = []; | |
enqueue(...newTasks) { | |
this._tasks.push(...newTasks); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {PropTypes} from 'react'; | |
const setValueOn = (keys, object, value) => keys.reduce( | |
(result, curKey) => Object.assign(result, {[curKey]: value}), | |
object | |
); | |
const shapeOf = (type, keys) => PropTypes.shape( | |
setValueOn(keys, {}, type) | |
); |