16.0.2 • Published 10 months ago

@bicycle-codes/tonic v16.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

tests module semantic versioning dependencies license

Tonic is a low profile component framework for the web. It's one file, less than 3kb gzipped and has no dependencies. It's designed to be used with modern Javascript and is compatible with all modern browsers and built on top of Web Components.

See the API docs

The tl;dr is that this allows you to pass full JS objects between components, not just strings as in HTML.

Install

npm i -S @bicycle-codes/tonic

Use

import Tonic from '@bicycle-codes/tonic'

You can use functions as components. They can be async or even an async generator function.

async function MyGreeting () {
  const data = await (await fetch('https://example.com/data')).text()
  return this.html`<h1>Hello, ${data}</h1>`
}

Or you can use classes. Every class must have a render method.

class MyGreeting extends Tonic {
  async * render () {
    yield this.html`<div>Loading...</div>`

    const data = await (await fetch('https://example.com/data')).text()
    return this.html`<div>Hello, ${data}.</div>`
  }
}
Tonic.add(MyGreeting, 'my-greeting')

After adding your Javascript to your HTML, you can use your component anywhere.

<html>
  <head>
    <script src="my-greeting.js"></script>
  </head>
  <body>
    <my-greeting></my-greeting>
  </body>
</html>

fork

This is a fork of @socketsupply/tonic

See API docs

additions

Things added to the forked version:


types


See src/index.d.ts.


tag


Get the HTML tag name given a Tonic class.

static get tag():string;
class ExampleTwo extends Tonic {
    render () {
        return this.html`<div>example two</div>`
    }
}

ExampleTwo.tag
// => 'example-two'

emit


Emit namespaced events, following a naming convention. The return value is the call to element.dispatchEvent()

Given an event name, the dispatched event will be prefixed with the element name, for example, my-element:event-name.

emit (type:string, detail:string|object|any[] = {}, opts:Partial<{
    bubbles:boolean;
    cancelable:boolean
}> = {}):boolean
example
class EventsExample extends Tonic {
  // ...
}

// EventsExample.event('name') will return the namespace event name
const evName = EventsExample.event('testing')

document.body.addEventListener(evName, ev => {
  // events bubble by default
  console.log(ev.type)  // => 'events-example:testing'
  console.log(ev.detail)  // => 'some data'
})

const el = document.querySelector('events-example')
el.emit('testing', 'some data')

// override default values
el.emit('more testing', 'some data', {
  bubbles: false
  cancelable: false
})

static event


Return the namespaced event name given a string.

class {
  static event (type:string):string {
      return `${this.tag}:${type}`
  }
}
example
class EventsExample extends Tonic {
  // ...
}

EventsExample.event('testing')
//  => 'events-example:testing'

dispatch


Emit a regular, non-namespaced event.

{
  dispatch (eventName:string, detail = null):void
}
example
class EventsExample extends Tonic {
  // ...
}

document.body.addEventListener('testing', ev => {
  // events bubble by default
  console.log(ev.type)  // => 'testing'
  console.log(ev.detail)  // => 'some data'
})

const el = document.querySelector('events-example')
el.dispatch('testing', 'some data')

// override default values
el.dispatch('more testing', 'some data', {
  bubbles: false
  cancelable: false
})

Useful links

MIT License

15.5.6

10 months ago

15.5.5

10 months ago

15.5.8

10 months ago

15.5.7

10 months ago

16.0.2

10 months ago

16.0.0

10 months ago

15.5.0

1 year ago

15.5.2

12 months ago

15.5.1

12 months ago

15.5.3

12 months ago

15.4.17

1 year ago

15.4.16

1 year ago

15.4.15

1 year ago

15.4.12

1 year ago

15.4.14

1 year ago

15.4.13

1 year ago

15.4.7

1 year ago

15.4.6

1 year ago

15.4.9

1 year ago

15.4.8

1 year ago

15.4.11

1 year ago

15.4.10

1 year ago

15.4.5

1 year ago

15.4.3

1 year ago

15.4.1

1 year ago

15.4.0

1 year ago

15.4.2

1 year ago

15.3.4

1 year ago