0.7.1 • Published 4 years ago

monastery-monads v0.7.1

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

️️️️⛪️️ Monastery ⛪️

Safe Monadic Types for Javascript (and TypeScript)

Premise

This module allows you to create a monad of any of the primatives (plus Array and a Maybe type), or build your own. This can allow you to build truly immutable values (including Object and Array) and comes runtime type enforcement without adding a type system such as TypeScript or Flow.

Status

This is in an experimental stage! When this has proven usable it will be promoted as a version 1.0.

So far I am not aware of any technical flaws other than some TypeScript @ts-ignore markers that need to be fixed and removed. However, I feel that a project of this kind requires extensive proof through testing and examples before making claims of stability.

Documentation

There are four types of monads in Monastery: Primatives, Data Structures, Maybe, and custom Types.

This is a work in progress, and thus documentation is incomplete.

Primative Monads & Data Structure Monads

Each primative is the name of the Javascript primative or data structure, prepended with $:

  • $Number
  • $String
  • $Boolean
  • $Array
  • $Object
  • $Symbol
  • $Null
  • $NaN
  • $Undefined

$Number

const thermometerReadingF = 12; // source data is in Fahrenheit
const fahrenheitToCelsius = $n => $n.subtract(32).multiply(0.5556);
const fahrenheitToKelvin = $n => fahrenheitToCelsius($n).add(273.15);
const fahrenheitToRankine = $n => $n.add(459.67);

const temperature = $Number.of(thermometerReadingF);

const celsius = fahrenheitToCelsius(temperature).unwrap();
const kelvin = fahrenheitToKelvin(temperature).unwrap();
const rankine = fahrenheitToRankine(temperature).unwrap();

// Note: .toFixed(1) converts to string
// > "-11.1"
console.log(celsius.toFixed(1));

// > "262.0"
console.log(kelvin.toFixed(1));

// > "471.7"
console.log(rankine.toFixed(1));

$String

const logString = 'Value was over the threshold ';
const tag = 'log';

const formatForConsole = $str => $str.prepend(`[${tag}] `);
const formatForDb = $str => $str.trim();

const logEntry = $String.of(logString);
const logConsole = formatForConsole(logEntry).unwrap();
const logDb = formatForDb(logEntry).unwrap();

// > "[log] Value was over the threshold "
console.log(logConsole);

// > "Value was over the threshold"
console.log(logDb);

Maybe Monad

$Maybe

This is a typical Maybe monad with some extra capabilities to enforce type. Generally a Maybe involves checking when a value "may be something or may be nothing", in this implementation it also can be interpreted that a value "may be of a certain type".

const status1 = null;
const status2 = 'Away';
const statusText = $str =>
    $Maybe
        .of($str)
        .as($String)
        .defaultTo('None');

// > "None"
console.log(statusText(status1).unwrap());

// > "Away"
console.log(statusText(status2).unwrap());

// Extend further with $String
const logStatusText = statusText(status2).prepend(`[user-status] `);

// > "[user-status] Away"
console.log(logStatusText.unwrap());

Development

Source is written in TypeScript. Run tests via npm run test.

MIT License

Copyright 2019 Robert Gerald Porter rob@weeverapps.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0.7.1

4 years ago

0.7.0

4 years ago

0.6.0

5 years ago

0.5.1

5 years ago

0.5.0

5 years ago

0.4.0

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.0

5 years ago