🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

chronstruct-primitives

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chronstruct-primitives

Semantic primitives for developers that improve DX without hurting UX.

latest
npmnpm
Version
0.3.2
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

Chronstruct Primitives

Semantic primitives for developers that improve DX without hurting UX.

  • Meaningful tag names
  • Property-based styles that reduce developer friction
  • Single-purpose primitives with focussed APIs
  • Uncompromised user experience

Currently supported primitives: box, row, column, flex, space, txt

Installation | Guides | API | FAQ

Explanation

Semantic HTML is necessary for screen readers and SEO, but does little for human code readers (aka developers). These primitives are meaningful for developers and help us understand what will be rendered.

Replace unknown and assumption-based primitives:

const MySection = () => (
  <section className="unknown">
    <h1 className="assumption">You think you know, but you have no idea</h1>
    <span>Where will this text go?<span>
  </section>
)

With locally reasonable, descriptive ones:

const MySection = () => (
  <row
    tag="section"
    justify="space-between"
  >
    <txt
      tag="h1"
      size={10}
      font="Comic Sans"
      color="blue"
    >
      You think you know, and you're right!
    </txt>
    <txt>This text is in a row, so it'll appear right of the heading</txt>
  </row>
)

How

There are a couple cool things about the primitives above that you may have missed:

  • there are no imports
  • the tags are lowercase, like a normal browser primitive (e.g. <div>, <span>, <p>)

This is made possible by a babel-transform (or a webpack-loader), and some added types if you're using Typescript. At compile time, chronstruct-primitives runs through and converts

<box
  tag="main"
  height={20}
  width={300}
/>

into

<main
  className={css`
    height: 20;
    width: 300;
  `}
/>

then, linaria can work its magic to extract static styles, to become

<main className="..." />

Benefits

Tag names are meaningful for developers

<column>
  <row>
    <SomeComponent />
    <AnotherComponent />
  </row>

  <space size={32} />

  <txt>Some text</txt>
</column>
  • See that <column> tag? That means you should read it's children top-down.
  • See that <row> tag? That means you should read left-right.
  • See that <space/> tag? It is only there to take up space.

Property-based styles reduce developer friction

<txt
  tag="h1"
  font="cursive"
  size={36}
  height={40}
  spacing={0.2}
  color="red"
>
  A Heading
</txt>

Reduce reading friction by being locally reasonable. I don't need to jump anywhere else in the code to understand what this code is. It isn't definied in some styles object above/below the render(), and it isn't defined in some external file (like .css).

Reduce writing friction by avoiding naming completely (Is this thing a "container" or "wrapper"? Is this part of the block (BEM)? Or is it a new block?). This inline approach also enables easier extraction, for when it is time to refactor. Since everything is right here in the render, I can extract it easily. I won't need to remember to move its styles from elsewhere.

Single-purpose primitives, with a focussed APIs to support their intent

A <div /> can do and be anything, which is really cool, but doesn't help us understand or write maintainable code.

<div className="anything you can imagine" />

<txt />, on the other hand, has first-class props (size, height, color, font, spacing) that ONLY relate to what it cares about: text. If you want to add non-text-related effects to it, like a background color, or click event, you'll have to use a second-class prop.

<txt
  // first-class props
  size={36}
  height={40}
  spacing={0.2}
  color="red"
  // second-class props are prefixed with an _
  _style={{
    background: "red",
  }}
>
  I care about text!
</txt>

<row />, <column />, and <flex /> are similar in that they only care about geometry/layout (for themselves and their children).

Uncompromising UX

These primtives were built with linaria in mind. With linaria, all static styles are extracted out to .css, which results in a faster TTI than if the styles were sent in javascript (what runtime css-in-js solutions do).

<box
  height={20}
  width={40}
  _style={{ background: "red" }}
/>

// becomes
<div className="..." />

Dynamic styles are still supported, though. When a variable is used for a value, it is added to the element's inline style.

<box
  height={20}
  width={40}
  _style={{ background: props.color }}
/>

// becomes
<div
 className="..."
 style={{background: props.color}}
/>

In the future, to use other libs, the linaria dependence may be made configurable.

Inspirations

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion by you, shall be licensed as MIT, without any additional terms or conditions.

Keywords

chronstruct

FAQs

Package last updated on 19 May 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts