/* @flow */
type Props = { foo: string };
const View = ({ foo }: Props) => <div>{ foo }</div>;
// Consumer renders View
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
// https://medium.com/@gcanti/higher-kinded-types-in-typescript-static-and-fantasy-land-d41c361d0dbe | |
import { | |
TypeConstructors, | |
TypeConstructors2, | |
Kind, | |
Kind2, | |
} from "./higherKindedTypes"; | |
export interface Functor<F extends TypeConstructors, A> { |
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 runPromisesInSeries = ps => ps.reduce((p, next) => p.then(next), Promise.resolve()); |
Some(x) | None | |
---|---|---|
map | map<V>(f: (value: U) => V): Some<V> |
map | flatMap | fold | |
---|---|---|---|
Some(x) |
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 getBedrooms = data => { | |
const bedrooms = data.listing && data.listing.features && data.listing.features.bedrooms; | |
if (bedrooms) { | |
return bedrooms.value; | |
} | |
return 0; | |
}; |
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 getUserFromLocalStorage = keyName => { | |
const str = localStorage.getItem(keyName); | |
try { | |
return Right(Option(JSON.parse(str))); | |
} catch (e) { | |
return Left("Invalid or Corrupted User Data"); | |
} | |
}; |
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
/* Option types */ | |
const Option = x => (x === undefined || x === null) ? None : Some(x); | |
const Some = x => ({ | |
filter: f => f(x) ? Some(x) : None, | |
map: f => Some(f(x)), | |
fold: (ifEmpty, f) => f(x), | |
getOrElse: defaultValue => x | |
}); |
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 getFeatures = data => { | |
if (data && data.listing && data.listing.features) { | |
const { bedrooms, bathrooms } = data.listing.features; | |
const beds = bedrooms && bedrooms.value || 0; | |
const baths = bathrooms && bathrooms.value || 0; | |
if (beds === 0 && baths === 0) return null; | |
return { | |
bedrooms: beds, | |
bathrooms: baths | |
}; |
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 transformCage = () => { /* ... */ }; | |
const handleError = e => "failed to parse Cage"; | |
const handleSuccess = data => "Success"; | |
const ifEmpty = () => "Cage does not exist!"; | |
const doSomethingWithUserData = () => | |
getUserFromLocalStorage('nickCage') | |
.fold(handleError, | |
data => | |
data.map(transformCage) |
NewerOlder