@defacto/cell-js

1.1.2 • Public • Published

cell-js

Simple and lightweight solution for binding Javascript to specific templates or side server components.
We use this alongside ex_cell, an Elixir/Phoenix module for coupling Javascript, CSS, Javascript and Views.

Installation

npm install @defacto/cell-js

or

yarn add @defacto/cell-js

Usage

import { Cell, Builder } from "cells-js";

class AvatarCell extends Cell {
  initialize() {
    this.element.addEventListener("click", this.onToggleOpenClass);
  }

  onToggleOpenClass = e => this.element.classList.toggle("open");
}

Builder.register(AvatarCell, "AvatarCell");

export default AvatarCell;

For a more complete implementation see ex_cell.

Readme

Keywords

Package Sidebar

Install

npm i @defacto/cell-js

Weekly Downloads

98

Version

1.1.2

License

MIT

Unpacked Size

23.2 kB

Total Files

11

Last publish

Collaborators

  • fatboypunk
  • jessedijkstra
  • mjacobs
  • sn3p