Skip to content

funbox/diamonds

Repository files navigation

@funboxteam/diamonds

Set of diamonds

npm

This is a set of helpers that we use in the current projects and will probably use in the future ones.

All helpers are independent of each other, which means that your project's bundle won't be bloated by useless code.

По-русски

Contents

Rationale

When developers create projects they use a lot of small functions that are not connected to the project itself. Usually such functions are stored in folders like utils or helpers.

To prevent copy-pasting between a huge amount of projects we've created this package.

These functions are not aimed to be absolutely safe to unexpected usage. They do exactly what they say they do, and nothing else.

Installation

Add the package to deps:

npm install --save @funboxteam/diamonds 

Import functions:

import { getUniqueId } from '@funboxteam/diamonds';

List of helpers

It's easier to check every helper's source code rather than reading docs. But if you want some, here they are.

Converts Base64 string to a Uint8Array.

The first function disables scroll on the current page with the possibility to save the current scrolled position, the second one enables the scroll and restores its position if it was saved.

It's useful when you want to disable scroll e.g. while opening sidebar and enable it while closing.

Converts camelCase string into kebab-case.

Change the passed strings's first letter case to upper.

Returns passed params as string with color tags inside.

It's useful when you want to colorize logs in terminal.

Converts cookie string (usually, the one you get from document.cookie) into an object.

Converts DataURI string into Blob instance.

It's useful when you need to send an image from online editor to the server.

Returns a debounced function that delays invoking callback until passed seconds have elapsed since the last time the debounced function was invoked.

It's useful when you have to handle flow of events but want to fire callback after the flow finishes.

Returns deep clone of the passed object. Does not work with circular links.

It's useful when you need to deeply clone an object. Object.assign does not work in this case, because it creates a shadow copy.

Deeply compares passed params.

Returns the value of the last element in the provided array that satisfies the provided testing function. Otherwise undefined.

Converts size in bytes to KB, MB, GB, etc.

Formats a number (or a string with a number inside) using the passed format.

It's useful when you need to format, let's say, the cost of something.

Formats a number (or a string with a number inside) by the mask of Russian MSISDNs.

Returns browser scrollbar width.

Returns displayName for React HOC.

Extracts orientation from the passed images EXIF.

Example:

getImageOrientation.call(this, image, orientation => {
  let rotate;

  switch (orientation) {
    case 8:
      rotate = 270;
      break;
    case 6:
      rotate = 90;
      break;
    case 3:
      rotate = 180;
      break;
    default:
      rotate = 0;
  }

  this.setState({ rotate });
});

Gets the value at path of object.

It's useful when you have to work with highly nested objects and don't want to write long conditionals. getObjectPath(obj, 'key1.key2.key3') and the work is done.

Picks and returns a correct unit name for the passed number (according to Russian lang rules).

It's useful when it's important to pick correct unit name. E.g. “1 day”, “2 days”, etc.

Returns pseudorandom number from the passed range.

Returns a string generated by the pattern prefix-number where prefix is the passed param, but number is unique.

It's useful when you need a unique string that can be namespaced. E.g. for generating unique IDs for DOM elements.

Converts HEX color string to RGB object.

Returns true when the passed DOM node is visible in the viewport (fully or partially depending on the params).

Returns true when the passed string is a valid email.

Checks browser support of the passed type attribute value for input tag.

It's useful when you deal with old browsers.

Returns true when UA is similar to mobile.

It is useful when you don't need a precise check (the checks that are used inside the script are quite simple).

Converts kebab-case string into camelCase.

Converts the passed object which contains primitive values or arrays of primitive values into the query string.

Returns shallow copy of the passed object but without the passed keys.

E.g. in React: omit(this.props, 'mods', 'mix').

Returns shallow copy of the passed object but with the passed keys only.

Converts query-string into object.

Transforms RBG color object into HEX string.

Shuffles the passed array and returns it.

Returns Promise which waits for the passed amount of ms before resolving.

Makes it possible to use localStorage safely.

Transforms the passed callback into the function that delays callback firing.

It's useful when you want to react on some events but no than once an N ms.

Credits

Cute picture for the project was made by Igor Garybaldi.

Sponsored by FunBox