1.0.3 • Published 3 years ago

@martinmilo/react-modulox v1.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

React ModuloX is a tiny, unopinionated UI library whose primary goal is to provide core building blocks for your React application. These blocks give you very intuitive API to handle complex theming and styling for various screen sizes.

Why?

Because working with styles is always a pain. As your application grows, it's tough not to lose your mind, even harder when the project has to work perfectly on all kinds of screen sizes. Instead of manually handling media queries, and repeat yourself gazillion times with media queries syntax, you can pass down the simple string via props, and specify values for each breakpoint.

On top of that, you can leverage the power of theming and set your variables in a single place. Instead of hardcoding hex codes, font sizes, and other variables all over the place, you can reference a variable from the theme and make your life much more comfortable.

Installation

npm install @martinmilo/react-modulox --save-dev
yarn add @martinmilo/react-modulox --dev

Although React ModuloX has styled-components listed in peerDependencies, you don't have to install them for your project. I highly recommend doing that since it gives you tremendous flexibility when creating your own styled-components. Other than that, you should be using react and react-dom, which is obvious for this library. 😀

There's one catch, though. You have to make sure that you're using only one instance of React. If you're using CRA (Create React App), you're good to go (under the hood, they are already aliasing react); if you have some custom setup and using webpack, you have to add alias like so:

const path = require('path');

// This is your webpack configuration - look for webpack.config.js
module.exports = {
  // ...
  resolve: {
    alias: {
      react: path.resolve('./node_modules/react'), // If your webpack.config.js is in different folder than node_modules, you have to adjust this path accordingly
    }
  }
  // ...
}

I'll look at other configurations, but if you have a problem making this running with some specific setup, please let me know, and I'll see what I can do. Also guys, if anyone knows a better way to handle this issue more elegantly, I'm all ears! 🙌

Prerequisites

React ModuloX does not need any setup, but to use all features (especially breakpoint style syntax), you have to wrap your App in ThemeProvider.

import React from 'react'
import ReactDOM from 'react-dom'
import App from './App'
import { ThemeProvider } from '@martinmilo/react-modulox'

ReactDOM.render(
  <React.StrictMode>
    <ThemeProvider>
      <App />
    </ThemeProvider>
  </React.StrictMode>,
  document.getElementById('root')
)

You don't have to pass down your own theme to ThemeProvider; if you don't specify the theme, the default one will be used implicitly. Check out the Theming section to learn more about theme generation and customization.

With this setup, you're basically good to go! 🚀

Getting started

Core building blocks, called Fragments, are the backbone of React ModuloX. Under the hood, React ModuloX uses a powerful library styled-components, which I definitely recommend to check out, and give it a shot. The fragments are nothing more than just styled-components with a simple config called blueprints - these serve as middleware between passed props and the styled-component, and transform certain props to more sophisticated styles.

Let's look at a very basic example to give you an overview of how it looks. I'm importing a Div and trying to make it with fixed-width on desktop devices (breakpoints are adjustable in theme), but I also want it to have 100% width on mobile devices. I want this Div to be slightly grey-ish, and use the variable I specified in my theme. Finally, I want this to use flexbox layout as a column because later on, I'll add more children components to this.

import { Div } from '@martinmilo/react-modulox'

const App = () => (
	<Div width="s:|100%| d:|875px|" background="greyLight" display="flex" direction="column">
		I'm inside the Fragment!
	</Div>
)

The thing you are probably most interested (or confused about 🤯) in is this property:

s:|100%| d:|875px|

This is called breakpoint style syntax, and it allows you to pass simple string describing styles for multiple screen sizes. Behind these keys, s and d are values representing min-widths. You can override them in the theme file, and use your own keys describing the screen size with whatever name you prefer.

By default, you don't have to set up your own theme if you don't want to, but I highly recommend you do so. You can check out below in the Theming section how to quickly generate your theme file from a terminal, so you don't have to copy & paste the whole theme file from here manually.

This is how the part of the theme with breakpoints config looks like:

breakpoints: {
  s: 0,
  m: 576,
  t: 768,
  d: 992,
  l: 1200,
},

It's a super simple object that consists of min-width as a value and custom-named key. You can leave it out if you're satisfied with these breakpoints, you can add more breakpoints, or you can also replace both keys and values of existing ones. Remember that you have to specify the zeroth breakpoint, i.e., breakpoint with value of 0.

If you have a value that you use on all screen sizes, you can omit breakpoint style syntax and pass a simple string or number.

<Div width="100%" height={100} />

One important thing to remember here is that if you pass down the value as a number, for specific keys (such as height), the px unit will be appended. The above example then outputs a height of 100px. You can check out the API reference to learn more about the configuration, and how specific keys are transformed.

Theming

Let's generate a theme file for your awesome project. React ModuloX provides CLI utility to generate it by running this command.

npx modulox init
yarn modulox init

The output will be a modulox.theme.js file that is just a copy of the default theme. Feel free to adjust variables as you need.

import React from 'react'
import ReactDOM from 'react-dom'
import App from './App'
import { ThemeProvider } from '@martinmilo/react-modulox'
import myAwesomeTheme from '<rootDir>/modulox.theme.js'

ReactDOM.render(
  <React.StrictMode>
    <ThemeProvider theme={myAwesomeTheme}>
      <App />
    </ThemeProvider>
  </React.StrictMode>,
  document.getElementById('root')
)

Be careful to replace the path for theme \<\rootDir>/modulox.theme.js. This is just an illustrative example, and the path and name of your theme depend on your settings.

API reference

All Fragments, i.e., Div, Text, Button, List, share the same core API. Some of them have extended functionality or can receive another set of props, but let's look at the core API that is common across all of them.

Core API - Any Fragment can accept all these props

PropCSS keyAppend unitTheme value pathDefault value pathFallback value
displaydisplay----
directionflex-direction----
alignalign-items----
justifyjustify-content----
marginmarginpx---
paddingpaddingpx---
widthwidthpx---
heightheightpx---
maxWidthmax-widthpx---
maxHeightmax-heightpx---
minWidthmin-widthpx---
minHeightmin-heightpx---
backgroundbackground-colors--
colorcolor-colors--
positionposition----
cursorcursor----
gapVertical*margin-bottompxgaps.vertical--
gapHorizontal*margin-rightpxgaps.horizontal--

As you can see, most of the prop keys reflect the CSS keys. Some of them omitted the unnecessary parts, so we can keep the props short and clean. You can check the CSS key to be sure what will be the output of passed prop.

There's an extra prop you can pass down called styles, which takes a raw CSS string and generates styles out of it. Beware that if you, for example, specify width with prop and then specify a width in styles prop as well, the latter one will be used.

Example usage:

<Div width={200} background="greyDark" position="relative">
	<Div width={15} height={15} position="absolute" styles="top: 5px; left: 5px;" background="red" />
	<Div width="100%" maxWidth={500} display="m:|none| d:|block|" />
</Div>

So what is appendUnit, themePath, and defaultValue? These are just extra information used internally to generate more sophisticated styles and fallback to the theme or default values. For instance, the background prop mirrors the CSS background property, and since we always expect the string to be passed, we don't need to append px to the end. We don't want to fall back to any defaultValue, but we want to select a variable from the theme if present. In this case, if you pass down the prop like this - background="red" we will first check the colors in theme, and if the red is not specified there, we use it directly. If you specified the red in theme to be #d41111, that value would be used instead.

TLDR; the only relevant thing for you is to know which prop mirrors the specific CSS property. Extra information there is just for you to know what's going on internally. There's no way to change this setup at this moment, but you can customize your theme as you please.

There are also two extra properties called gapHorizontal and gapVertical, which may confuse you since you probably haven't used anything like that in CSS. These are a bit special ones - they don't apply the style directly on the Fragment to which you've passed these props, rather on all children except the last one. For instance, if you have a row with three children and have consistent gaps between them, you can pass down the gapHorizontal="10px" and see that each child except the last one has now margin-right: 10px;. Pretty cool, isn't it? Bonus - you can set variables for gaps in theme, so all the gaps across your app are consistent, and you don't hardcode values.

Now, the Core API also makes use of shorthand props, which are just booleans. You can pass these props to any Fragment:

PropCSS output
rowdisplay: flex; flex-direction: row;
columndisplay: flex; flex-direction: column;
hiddendisplay: none;

As you can see, I only specified the prop key and the CSS output. Since they are just booleans, you can pass them like this:

<Div row>
	<Div>Now I</Div>
	<Div>will be in a row with me.</Div>
</Div>

To put it simply, both display and flex-direction properties will be generated. The purpose of these shorthands is to reduce the props that are repeated over and over.

Div

Div Fragment is the purest of all Fragments since it doesn't do anything except what you tell it. It doesn't have any default values, so if you render a Div without any prop, it will be as if you rendered the raw HTML div.

This Fragment does not extend the Core API, so only the props specified in the reference above will be transformed into CSS styles.

List

List Fragment is a tiny non-style extension to the Div. It requires these two props:

  • data as either Array or Object
  • children as a Function

The example usage of the List is following:

<List data={[
	{ id: '1', name: 'Martin' },
	{ id: '2', name: 'Frank' },
	{ id: '3', name: 'Ema' }
]}>
	{person => (
		<Div key={person.id}>{person.name}</Div>
	)}
</List>

As you can see, it's just a tiny helper for you to map things, and make it a bit cleaner. If you pass down the Object, the param in the callback would be the key.

Text

Text Fragment is an extension of Core API and comes with another set of props you can pass down on top of what you can pass to Div.

PropCSS keyAppend unitTheme value pathDefault value pathFallback value
fontfont-family-typography.fontFamiliestypography.defaultFontFamilyinherit
sizefont-sizepxtypography.fontSizestypography.defaultFontSize100%
weightfont-weight----
spacewhite-space----
letterSpacingletter-spacingpx---
lineHeightline-height----

The default values for font-family and font-size fallbacks to the theme, and if these are not specified, they fallback to inherit and 100% respectively. You can also specify a variety of fonts and sizes to pass down a variable representing a specific font family or font size. Stay consistent.

PropCSS output
uppercasetext-transform: uppercase;
underlinetext-decoration: underline;
centertext-align: center;
blockdisplay: block;

Button

Button Fragment is an extension of Core API in the same way as Text Fragment. On top of that, it comes with some default styles to make the button look like from the 21st century, and not like the button your grandad used to click on back in the 90s. The default styles are the following:

margin: 0;
padding: 8px 14px;
border: none;
border-radius: 4px;

If the font-family and font-size are not specified, the fallback values for both are the same as in the case of Text Fragment.

TODO

  • Add fields (Input, Select, Checkbox...)
  • Add components for quick scaffolding
  • Add animations properties

License

MIT