Skip to content

Instantly share code, notes, and snippets.

View gmmorris's full-sized avatar

Gidi Meir Morris gmmorris

View GitHub Profile
@gmmorris
gmmorris / HelperFunctionsForSafeProxyAccess.js
Last active February 7, 2016 21:29
Helper functions for the Safe Access Proxy article
const isObject = obj => obj && typeof obj === 'object';
const hasKey = (obj, key) => key in obj;
const Undefined = new Proxy({}, {
get: function(target, name){
return Undefined;
}
});
const either = (val,fallback) => (val === Undefined? fallback : val);
@gmmorris
gmmorris / DarthVaderUncaughtTypeError.js
Last active February 7, 2016 21:57
Code example for causing an undefined property access error
const DarthVader = {
name : 'Anakin',
mother : {
name : 'Shmi'
}
}
function getFatherName(person) {
return person.father.name
}
@gmmorris
gmmorris / destructured arguments
Created February 3, 2016 14:56
A small example of using destructuring for named function arguments and orderless optional arguments. This allows you to create a single function with different argument options without having to maintain complex argument ordering
const isFunction = fn => typeof fn === 'function'
const isNumber = n => typeof n === 'number' && !isNaN(n)
function createFunctionPipe({ interval, fn, args = [] } = {}) {
if(!isFunction(fn)){
throw Error('Invalid callback (fn) argument');
}
if(isNumber(interval)) {
return setTimeout(() => fn(...args), interval);
@gmmorris
gmmorris / functional_higher_order_class.js
Created November 1, 2015 20:22
An example of a Constructor Prototype Composer in a more functional syntax for my How to Grok a Higher Order Class article
/*
* A Higher Order Function which takes a Class definition and returns a new function.
*
* @param {Function} ClassToCompose The class definition we wish to analyze
* @return {Function} A function which takes a property name and return a boolean specifying whether
* the class has a method with that name which is composable
*/
function isComposablePropertyOf(ClassToCompose) {
const proto = ClassToCompose.prototype;
return propertyName => {
@gmmorris
gmmorris / extend_all_method_composer.js
Created November 1, 2015 16:46
An example of a All Method Constructor Composer for my How to Grok a Higher Order Class article
export default function(methodComposer) {
return ClassToCompose => {
class ComposedClass extends ClassToCompose {
constructor() {
super(...arguments);
}
}
const baseProto = ClassToCompose.prototype;
@gmmorris
gmmorris / extend_constructor_composer.js
Last active November 1, 2015 16:46
An example of a Constructor Composer for my How to Grok a Higher Order Class article
export default function(methodComposer) {
return ClassToCompose => {
const proto = ClassToCompose.prototype;
return class extends ClassToCompose {
constructor() {
super(...arguments);
for (const prop of Object.getOwnPropertyNames(proto)) {
const method = proto[prop];
const {configurable, writable} = Object.getOwnPropertyDescriptor(proto, prop);
@gmmorris
gmmorris / constructor_function_syntax.js
Created November 1, 2015 16:18
An example of a misuse of a Constructor Function for my How to Grok a Higher Order Class article
function MyConstructor() {
}
// meant to be called this way:
var myInstance = new MyConstructor();
// but could also be called, usually incorrectly, this way
var myInstance = MyConstructor();
@gmmorris
gmmorris / composers_factory.js
Last active November 1, 2015 16:47
An example of a composer factory for my How to Grok a Higher Order Class article
const FactorySentinal = Symbol('ClassFactory');
export function isFactory(SupposedFactory) {
return SupposedFactory && SupposedFactory[FactorySentinal];
}
export default function(methodComposer) {
return ClassToCompose => {
const proto = ClassToCompose.prototype;
function factory() {
const instance = new ClassToCompose(...arguments);
@gmmorris
gmmorris / chof.js
Created November 1, 2015 15:17
An example of a composer higher order function for my How to Grok a Higher Order Class article
// Our higher order function which logs all returned values to the function properties on an object
function attachLogger(objectOrFunction) {
if(typeof objectOrFunction === 'function'){
return function() {
let ret = objectOrFunction.apply(this, arguments);
console.log(ret);
return ret;
}
}
@gmmorris
gmmorris / hof.js
Last active November 1, 2015 15:17
An example of a higher order function for my How to Grok a Higher Order Class article
// Our higher order function which converts pennies to pounds (£) (or cents to dollars, for that matter)
function convertPenniesToPounds(priceFunction) {
return function() {
return priceFunction.apply(this, arguments)/100;
}
}
// we have component which fetches a price in pennies
const PriceFetcher = {
getPriceInPence : function(productId) {