2.8.15 • Published 7 months ago

creaton-js v2.8.15

Weekly downloads
-
License
MIT
Repository
-
Last release
7 months ago

EN / RU

creaton

GitHub | GitFlic | NpmJS | Creaton⤵️

Creaton is a JavaScript plugin for quickly creating Web Components. The plugin supports all technologies, methods and properties such as slots and Shadow DOM that are provided by standard Web Components.

- Added example Webpack build for routes.

- Added example Webpack build for events.

- Updating the build for Webpack.

- In version 2.8.0, a bug in accessing special properties in static methods of closed components was fixed.

- Since version 2.4.0, the security of closed components has increased significantly. Getting/changing the state and HTML content of a component is possible only from static methods.

- Since version 2.5.0, support for rendering on the Node.js server has been added to the plugin.

- Added build system based on Webpack.

Below is an example of a simple component:

<!-- mount the MyComponent component -->
<my-component color="red"></my-component>
// create component class MyComponent
class MyComponent {
  // initializing the state object in the constructor
  constructor(props) {
    this.message = 'Creaton'
    this.color = props.color
  }

  static mode = 'open' // add Shadow DOM

  static render() {
    return `
      <h1>Hello, ${ this.message }!</h1>
      
      <style>
        h1 {
          color: ${ this.color };
        }
      </style>
    `
  }
}
  1. Quick start
  2. Component class
  3. Special properties
  4. General methods
  5. Cycles
  6. Styles
  7. Slots
  8. Events
  9. Routes
  10. SSR

Classes are used to create components. Classes can be either built into the main script or imported from an external module. Create a new working directory, for example named app, and download the creaton.min.js file into this directory.

Add an index.html file to the directory with the following content:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Creaton</title>
</head>
<body>
  <!-- mount the MyComponent component -->
  <my-component></my-component>

  <!-- include Creaton plugin -->
  <script src="creaton.min.js"></script>

  <script>
    // create component class MyComponent
    class MyComponent {
      message = 'Creaton'
      color = 'red'

      static render() {
        return `
          <h1>Hello, ${ this.message }!</h1>
          
          <style>
            h1 {
              color: ${ this.color };
            }
          </style>
        `
      }
    }

    // pass component class MyComponent to Creaton plugin
    Creaton(MyComponent)
  </script>
</body>
</html>

To ensure there are no naming conflicts between standard and custom HTML elements, the component name must contain a dash «-», for example, my-element and super-button are valid names, but myelement is not.

When you open the index.html file in the browser, the screen will display the message created in the MyComponent component:

In this example, a simple component has been created that is embedded in a common script. Let's now move this component into a separate module.

Create a MyComponent.js file in the app directory with the following content:

// export the MyComponent component class
export default class MyComponent {
  message = 'Creaton'
  color = 'red'

  static render() {
    return `
      <h1>Hello, ${ this.message }!</h1>
      
      <style>
        h1 {
          color: ${ this.color };
        }
      </style>
    `
  }
}

Make changes to the index.html file, as shown below:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Creaton</title>
</head>
<body>
  <!-- mount the MyComponent component -->
  <my-component></my-component>

  <!-- include Creaton plugin -->
  <script src="creaton.min.js"></script>

  <script type="module">
    // import the MyComponent component class
    import MyComponent from './MyComponent.js'

    // pass component class MyComponent to Creaton plugin
    Creaton(MyComponent)
  </script>
</body>
</html>

To work with external components, we need any development server, such as, for example, lite-server.

Install this server using the command in the terminal:

npm install --global lite-server

Now navigate to the app directory using a terminal or open a terminal in that directory and in the terminal enter the command:

lite-server

This will open a default browser window displaying the welcome message shown above.

To work with modular components, it is convenient to use various systems for assembling modules. You can customize your own or download a ready-made build system based on Webpack.

To quickly access a component in the browser console, add the identifier "mycomp" to its mount element, as shown below:

<!-- mount the MyComponent component -->
<my-component id="mycomp"></my-component>

Now open the browser console and enter the command:

mycomp.$update({ message: 'Web Components', color: 'green' })

The title color and message will change immediately:

The name of the component class defines the name of the component in the DOM. For example, the class MyComponent or myComponent will match the name my-component in the DOM. Each component class may contain an optional static property name that defines the name of this class.

This property must be specified, for example, when passing an anonymous class directly to a plugin:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Creaton</title>
</head>
<body>
  <!-- mount the MyComponent component -->
  <my-component id="mycomp"></my-component>

  <!-- include Creaton plugin -->
  <script src="creaton.min.js"></script>

  <script>
    // pass anonymous class to Creaton plugin
    Creaton(class {
      message = 'Creaton'
      color = 'red'

      static name = 'MyComponent' // component name

      static render() {
        return `
          <h1>Hello, ${ this.message }!</h1>
          
          <style>
            h1 {
              color: ${ this.color };
            }
          </style>
        `
      }
    })
  </script>
</body>
</html>

The class name can be specified in camel case, as in the example above, or kebab notation:

static name = 'my-component'

The state of a component is defined as properties of an instance of the component's class. In the example above, there are two states:

message = 'Creaton'
color = 'red'

This is a new way of defining properties for objects. You can also use the old way, by specifying a constructor:

constructor() {
  this.message = 'Creaton'
  this.color = 'red'
}

In addition to state, class objects can also have methods, for example:

class MyComponent {
  message = 'Creaton'
  color = 'red'

  // class object method
  printHello() {
    return `Hello, ${ this.message }!`
  }

  static render() {
    return `
      <h1>${ this.printHello() }</h1>
      
      <style>
        h1 {
          color: ${ this.color };
        }
      </style>
    `
  }
}

In this example, the printHello() method of the MyComponent class object has been defined, which simply prints out a hello message.

To render the component's HTML content, the class must have a static render() method that returns a string. From this line, the HTML markup of the future component will be created.

This method is executed in the context of the component's state object, which allows you to refer to the properties of this object using the this keyword and using template literals, for example:

static render() {
  return `
    <h1>Hello, ${ this.message }!</h1>
    
    <style>
      h1 {
        color: ${ this.color };
      }
    </style>
  `
}

Inside template literals, you can use substitutions to expose any expressions:

${ 5 + 6 }

The render() method, like all the static methods of the component class discussed below, can be asynchronous. The example below simulates downloading data from the server:

static async render() {
  // get data one second after method call
  const message = await new Promise(ok => setTimeout(() => ok('Web components'), 1000))

  return `
    <h1>Hello, ${ message }!</h1>
    
    <style>
      h1 {
        color: ${ this.color };
      }
    </style>
  `
}

By default, all components are created without Shadow DOM. This means that the styles they use affect the DOM of the entire document, not a specific component.

The static mode property determines the level of encapsulation for the component to use local styles and can be either "open" or "closed":

static mode = 'open'

The example below creates a component with a closed Shadow DOM:

class MyComponent {
  message = 'Creaton'
  color = 'red'

  static mode = 'closed' // add closed Shadow DOM

  static render() {
    return `
      <h1>Hello, ${ this.message }!</h1>
      
      <style>
        h1 {
          color: ${ this.color };
        }
      </style>
    `
  }
}

This type of component is the most secure, since access to the state and DOM of such a component is possible only from static methods of the class.

The extends static property allows mount the component into a standard HTML element, for example:

static extends = 'header'

The element into which the component is mounted must contain the is attribute with a value corresponding to the name of the component that is mounted into it:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Creaton</title>
</head>
<body>
  <!-- mount the MyComponent component to the Header element -->
  <header is="my-component"></header>

  <!-- include Creaton plugin -->
  <script src="creaton.min.js"></script>

  <script>
    // create component class MyComponent
    class MyComponent {
      message = 'Creaton'
      color = 'red'

      static extends = 'header' // mount the component to the Header element

      static render() {
        return `
          <h1>Hello, ${ this.message }!</h1>
          
          <style>
            h1 {
              color: ${ this.color };
            }
          </style>
        `
      }
    }

    // pass component class MyComponent to Creaton plugin
    Creaton(MyComponent)
  </script>
</body>
</html>

The static property attributes contains an array with the names of attributes, when changing which, the static method changed() will be called, for example:

static attributes = ['title'] // tracked attributes

// called when the tracked attribute changes
static changed(name, oldValue, newValue) {
  console.log(name, oldValue, newValue)
}

Tracked attributes are a Web Component technology, and the changed() method is a shorthand for the attributeChangedCallback() method.

Add the id and title attributes to the MyComponent component's mount element in the index.html file as shown below:

<!-- mount the MyComponent component -->
<my-component id="mycomp" title="Creaton"></my-component>

The id attribute is used for quick access to the component in the browser console. Now open this console and enter the command:

mycomp.title = 'Web Components'

After pressing the Enter key, the changed() method will print the following line to the console:

title Creaton Web Components

Tracked attributes can be used to determine the state in a component, without having to define the state in a class, for example:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Creaton</title>
</head>
<body>
  <!-- mount the MyComponent component -->
  <my-component id="mycomp" message="Creaton" color="red"></my-component>

  <!-- include Creaton plugin -->
  <script src="creaton.min.js"></script>

  <script>
    // create component class MyComponent
    class MyComponent {
      static attributes = ['message', 'color'] // tracked attributes

      // called when the tracked attribute changes
      static changed(name, oldValue, newValue) {
        // update the HTML content of the component based on the new state
        this.$update( { [name]: newValue } )
      }

      static render() {
        return `
          <h1>Hello, ${ this.message }!</h1>
          
          <style>
            h1 {
              color: ${ this.color };
            }
          </style>
        `
      }
    }

    // pass component class MyComponent to Creaton plugin
    Creaton(MyComponent)
  </script>
</body>
</html>

As you can see from this example, there is no state definition in the class:

message = 'Creaton'
color = 'red'

The initial state values are defined in the tracked attributes message and color as shown below:

<!-- mount the MyComponent component -->
<my-component id="mycomp" message="Creaton" color="red"></my-component>

The assignment of these values to properties of the state object occurs in the changed() method, which is called every time values are Assigned/Changed to tracked attributes:

// called when the tracked attribute changes
static changed(name, oldValue, newValue) {
  // update the HTML content of the component based on the new state
  this.$update( { [name]: newValue } )
}

Inside this method, the special method $update() is called, which takes an object in its first argument and combines all its properties with the properties of the state object:

// update the HTML content of the component based on the new state
this.$update( { [name]: newValue } )

Now open the browser console and enter the command:

mycomp.$update({ message: 'Web Components', color: 'green' })

The title color and message will change immediately:

The second way to update the component's HTML content based on the new state value is to use the $props special property, which is used to quickly access all of the component's attributes.

Enter the command in the browser console:

mycomp.$props.color = 'blue'

The title color will change immediately:

Special methods and properties will be discussed in the next section. They all begin with a dollar sign and are defined internally by the component.

The static methods connected(), disconnected() and adopted() are shorthand analogs of the connectedCallback(), disconnectedCallback() and adoptedCallback() methods.

They are called when a component is added to the document - the connected() method; removing a component from a document - the disconnected() method; and when moving the component to a new document - the adopted() method.

The most commonly used methods include the connected() method, which allows you to access the HTML content of the component after it has been added to the DOM, for example , add an event to the element:

// called when the component is added to the document
static connected() {
  // output the element that generated the event to the console
  this.$('h1').addEventListener('click', event => console.log(event.target))
}

The static methods before() and after() are called Before and After updating the component's DOM, using the special $update() method, for example:

static before() {
  console.time('Update')
}

static after() {
  console.timeEnd('Update')
}

This example shows how long it takes for a component's DOM to update.

Another good example is using the before() method to check the type of a new state value:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Creaton</title>
</head>
<body>
  <!-- mount the MyComponent component -->
  <my-component id="mycomp"></my-component>

  <!-- include Creaton plugin -->
  <script src="creaton.min.js"></script>

  <script>
    // create component class MyComponent
    class MyComponent {
      name = 'John'
      age = 32

      // called before updating the component's DOM
      static before() {
        // if the value is not a number, then generate an error
        if (typeof this.age !== 'number') {
          throw new Error('Value must be a number...')
        }
      }

      static render() {
        return `
          <p>Name: ${this.name}</p>
          <p>Age: ${this.age}</p>
        `
      }
    }

    // pass component class MyComponent to Creaton plugin
    Creaton(MyComponent)
  </script>
</body>
</html>

If you enter the command in the browser console:

mycomp.$update({ age: 'thirty five' })

then you will receive an error message:

Error: Value must be a number...

Unlike methods and properties defined by the user in the component class, special methods and properties are defined at the internal level of the component and always start with a dollar sign. It is not recommended to give states names that are the same as special property names. This may lead to errors.

The $shadow property returns the Shadow DOM of the component, which is created if the mode static property was defined in the component class:

static mode = 'open' // add Shadow DOM

However, if the component has a closed Shadow DOM:

static mode = 'closed' // add closed Shadow DOM

then the $shadow property returns «null», as shown below:

mycomp.$shadow
null

The $light property returns True if the component does not contain a Shadow DOM, otherwise it returns False, for example:

mycomp.$light
true

The $host property returns a reference to the component itself if the component has an open Shadow DOM. If the component has a closed Shadow DOM or is created without one, then this property returns «undefined», as shown below:

mycomp.$host
undefined

The $props property allows you to quickly set and get component attribute values. For closed components, calling this property from outside of static methods returns «undefined».

Add the title attribute to the component, as shown below:

<!-- mount the MyComponent component -->
<my-component id="mycomp" title="Creaton"></my-component>

To get the value of the title attribute, enter the command in the browser console:

mycomp.$props.title

To set a new value for this attribute, enter the command:

mycomp.$props.title = 'Web Components'

To initialize the state of a component using attributes passed to its mount element, the component's constructor uses the props parameter, as shown below:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Creaton</title>
</head>
<body>
  <!-- mount the MyComponent component -->
  <my-component color="red"></my-component>

  <!-- include Creaton plugin -->
  <script src="creaton.min.js"></script>

  <script>
    // create component class MyComponent
    class MyComponent {
      // initializing the state object in the constructor
      constructor(props) {
        this.message = 'Creaton'
        this.color = props.color
      }

      static render() {
        return `
          <h1>Hello, ${ this.message }!</h1>
          
          <style>
            h1 {
              color: ${ this.color };
            }
          </style>
        `
      }
    }

    // pass component class MyComponent to Creaton plugin
    Creaton(MyComponent)
  </script>
</body>
</html>

The $state property allows you to Get/Set the value of any state property. For closed components, calling this property from outside of static methods returns «undefined».

To get the state value of message, enter the command in the browser console:

mycomp.$state.message

To change this state, issue the command:

mycomp.$state.message = 'Web Components'

Updating the state does not automatically update the component's DOM. To update the DOM, you will need to call the special $update() method with no arguments:

mycomp.$update()

All of the custom and static methods of the bean class discussed earlier are executed in the context of the state object referenced by the $state property. This object is a proxy. This means that if the requested state does not exist in the given object, then the requested property is searched for in the component itself. However, writing a new value always occurs in the state object.

Thanks to this, any property of the component can be accessed from the state object, such as the attributes property:

mycomp.$state.attributes['id'].value

This applies to all methods that are executed in the context of a state object, such as the static render() method, as shown below:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Creaton</title>
</head>
<body>
  <!-- mount the MyComponent component -->
  <my-component id="mycomp"></my-component>

  <!-- include Creaton plugin -->
  <script src="creaton.min.js"></script>

  <script>
    // create component class MyComponent
    class MyComponent {
      message = 'Creaton'
      color = 'red'

      static render() {
        return `
          <h1>Hello, ${ this.message } 
            from the ${this.attributes['id'].value.toUpperCase()} component!</h1>
          
          <style>
            h1 {
              color: ${ this.color };
            }
          </style>
        `
      }
    }

    // pass component class MyComponent to Creaton plugin
    Creaton(MyComponent)
  </script>
</body>
</html>

The $update() method is used to update the DOM based on the new state values of the component. It can take one argument as an object. For closed components, calling this method from outside of static methods returns «undefined».

The property values of the passed object become the new property values of the state object, for example:

mycomp.$update({ message: 'Web Components', color: 'green' })

When this method is called with no arguments, the state object is not changed and the component's DOM is simply redrawn:

mycomp.$update()

In addition, the $update() method is asynchronous and returns promise, the value of which will be a string showing the number of milliseconds for which a complete update of the component's DOM occurred, for example:

await mycomp.$update({ message: 'Web Components', color: 'green' })
'1 ms'

In the first version of the plugin, a simple replacement of the old DOM with a new one was used. The second version of Creaton uses a matching principle based on comparing the old DOM with the new one. If a mismatch is found, then the value in the old DOM is replaced by the new node.

This avoids losing events assigned to elements using the addEventListener() method and does not overload the browser with unnecessary redrawing of the entire HTML content of the component.

The $() method is a shorthand analog of the querySelector() method and is used for quick access to a component's DOM element. For closed components, calling this method from outside of static methods returns «undefined».

The method is used, for example, to assign an event listener:

// called when the component is added to the document
static connected() {
  // output the element that generated the event to the console
  this.$('h1').addEventListener('click', event => console.log(event.target))
}

The $$() method is a shorthand analog of the querySelectorAll() method and is used for quick access to a component's DOM element. For closed components, calling this method from outside of static methods returns «undefined».

This method is used, for example, to iterate over a collection of elements:

// called when the component is added to the document
static connected() {
  // output all paragraph elements to the console
  this.$$('p').forEach(elem => console.log(elem))
}

The $entities() method allows you to render harmless data received from unreliable sources:

static async render() {
  // render harmless data received from an unreliable source
  const message = this.$entities(await new Promise(ok => setTimeout(() => ok('<em>unsafe code</em>'), 1000)))

  return `
    <h1>Hello, ${ message }!</h1>
    
    <style>
      h1 {
        color: ${ this.color };
      }
    </style>
  `
}

The $tag method is a tagged function that automatically adds a join() method to arrays to remove commas between elements, and all other calculated values are displayed as is:

class MyComponent {
  colors = ['red', 'green', 'blue']

  static render() {
    return this.$tag`
      <ul>
        ${ this.colors.map(col => `<li>${ col }</li>`) }
      </ul>
    `
  }
}

The $event() method is used to create custom events that allow different components to interact with each other, and the \$route() method is used to build routing. They will be considered later, since they require separate chapters for their explanation.

In addition to state, class objects can also have methods, for example:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Creaton</title>
</head>
<body>
  <!-- mount the MyComponent component -->
  <my-component id="mycomp1"></my-component>

  <!-- mount the MyComponent component -->
  <my-component id="mycomp2"></my-component>

  <!-- include Creaton plugin -->
  <script src="creaton.min.js"></script>

  <script>
    // create component class MyComponent
    class MyComponent {
      message = 'Creaton'
      color = 'red'

      // class object method
      printHello() {
        return `Hello, ${ this.message }!`
      }

      static render() {
        return `
          <h1>${ this.printHello() }</h1>
          
          <style>
            h1 {
              color: ${ this.color };
            }
          </style>
        `
      }
    }

    // pass component class MyComponent to Creaton plugin
    Creaton(MyComponent)
  </script>
</body>
</html>

In this example, the printHello() method of the MyComponent class object has been defined, which simply prints out a hello message for all components of this type.

In order not to create the same methods for different types of components, you can create a separate class for common methods, and then, inherit component classes from this method class, as shown below:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Creaton</title>
</head>
<body>
  <!-- mount the MyComponent component -->
  <my-component id="mycomp"></my-component>

  <!-- mount the NewComponent component -->
  <new-component id="newcomp"></new-component>

  <!-- include Creaton plugin -->
  <script src="creaton.min.js"></script>

  <script>
    // create a Methods class to store common methods
    class Methods {
      printHello() {
        return `Hello, ${ this.message }!`
      }
    }

    // inherit the MyComponent class from the Methods class
    class MyComponent extends Methods {
      message = 'Creaton'
      color = 'red'

      static render() {
        return `
          <h1>${ this.printHello() }</h1>
          
          <style>
            h1 {
              color: ${ this.color };
            }
          </style>
        `
      }
    }

    // inherit the NewComponent class from the Methods class
    class NewComponent extends Methods {
      message = 'NewComponent'

      static render() {
        return `
          <h2>${ this.printHello() }</h2>
        `
      }
    }

    // pass component classes to Creaton plugin
    Creaton(MyComponent, NewComponent)
  </script>
</body>
</html>

To output arrays in template literals, use the map() and join() methods, as shown below:

class MyComponent {
  colors = ['red', 'green', 'blue']

  static render() {
    return `
      <ul>
        ${ this.colors.map(col => `<li>${ col }</li>`).join('') }
      </ul>
    `
  }
}

The join() method is passed an empty string to remove commas between the elements of the array to be displayed.

To output arrays without using the join() method in component content markup, a template literal can be passed to a special tagged function $tag, which automatically adds the join() method to arrays, and all other calculated values are displayed as is:

class MyComponent {
  colors = ['red', 'green', 'blue']

  static render() {
    return this.$tag`
      <ul>
        ${ this.colors.map(col => `<li>${ col }</li>`) }
      </ul>
    `
  }
}

Similarly, you can display objects using the Object.keys() method, for example:

class MyComponent {
  user = {
    name: 'John',
    age: 32
  }

  static render() {
    return this.$tag`
      <ul>
        ${ Object.keys(this.user).map(key => `<li>${ key }: ${ this.user[key] }</li>`) }
      </ul>
    `
  }
}

To create local styles, the component needs to add a Shadow DOM using the static property mode, as shown below:

class MyComponent {
  message = 'Creaton'
  color = 'red'

  static mode = 'open' // add Shadow DOM

  static render() {
    return `
      <h1>Hello, ${ this.message }!</h1>
      
      <style>
        h1 {
          color: ${ this.color };
        }
      </style>
    `
  }
}

To work with slots, the component needs to add a Shadow DOM using the static property mode, as shown below:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Creaton</title>
</head>
<body>
  <!-- mount the MyComponent component -->
  <my-component>
    <span slot="username">John</span>
    <span slot="age">32</span>
    <span>Hardworking</span>
  </my-component>

  <!-- include Creaton plugin -->
  <script src="creaton.min.js"></script>

  <script>
    // create component class MyComponent
    class MyComponent {
      static mode = 'open' // add Shadow DOM

      static render() {
        return `
          <div>
            Name: <slot name="username"></slot>
          </div>
          
          <div>
            Age: <slot name="age"></slot>
          </div>

          <div>
            Character: <slot><slot>
          </div>
        `
      }
    }

    // pass component class MyComponent to Creaton plugin
    Creaton(MyComponent)
  </script>
</body>
</html>

For interaction between different components, an improved mechanism of custom events is used. This mechanism involves the use of the event() method of the Creaton plugin and the special $event() method that is available in every component.

When the Creaton plugin's event() method is called as a constructor, it returns a new document fragment that is the source and receiver of custom events. And when this method is not called as a constructor, it works similarly to the special method $event(). This allows you to link components not only to each other, but also to any external code.

Make changes to the index.html file as shown below:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Creaton</title>
</head>
<body>
  <!-- mount the MyComponent component -->
  <my-component id="mycomp"></my-component>

  <!-- mount the NewComponent component -->
  <new-component id="newcomp"></new-component>

  <!-- include Creaton plugin -->
  <script src="creaton.min.js"></script>

  <script>
    // create event element myEvent
    const myEvent = new Creaton.event()

    // create component class NewComponent
    class NewComponent {
      colors = ['red', 'green', 'blue']

      static render() {
        return `
          <ul>
            ${ this.colors.map(col => `<li>${ col }</li>`).join('') }
          </ul>
        `
      }

      static connected() {
        // add a "reverse" event handler to the myEvent element
        myEvent.addEventListener('reverse', () => {
          this.colors.reverse() // reverse array

          // update the DOM of the component
          this.$update()
        })
      }
    }

    // create component class MyComponent
    class MyComponent {
      static render() {
        return `
          <button id="btn-reverse">Reverse array</button>
        `
      }

      static connected() {
        // add a "click" event handler for the button
        this.$('#btn-reverse').addEventListener('click', () => {
          // trigger "reverse" event on element myEvent
          this.$event(myEvent, 'reverse')
        })
      }
    }

    // pass component classes to Creaton plugin
    Creaton(MyComponent, NewComponent)
  </script>
</body>
</html>

In this example, a new event element myEvent is first created:

// create event element myEvent
const myEvent = new Creaton.event()

This element will be assigned custom event handlers in some components and invoked in others.

In the static method connected() of the NewComponent component class, the handler for the custom event "reverse" is assigned to the myEvent element. Inside this handler, the array is reverse and the DOM of the component is updated:

static connected() {
  // add a "reverse" event handler to the myEvent element
  myEvent.addEventListener('reverse', () => {
    this.colors.reverse() // reverse array

    // update the DOM of the component
    this.$update()
  })
}

In the static method connected() of the MyComponent component class, a "click" event handler is added to the button, inside which the "reverse" event is called for the myEvent element, as shown below:

static connected() {
  // add a "click" event handler for the button
  this.$('#btn-reverse').addEventListener('click', () => {
    // trigger "reverse" event on element myEvent
    this.$event(myEvent, 'reverse')
  })
}

The first argument of the special $event() method is the event element myEvent, and the second argument is the name of the event to be called:

this.$event(myEvent, 'reverse')

The $event() method can also receive a third argument, in which you can pass parameters that fully correspond to the parameters of the CustomEvent constructor. For example, you can pass the detail property, which allows you to share data between components.

Add a new "new-colors" event handler to the static connected() method of the NewComponent component, as shown below:

static connected() {
  // add a "reverse" event handler to the myEvent element
  myEvent.addEventListener('reverse', () => {
    this.colors.reverse() // reverse array

    // update the DOM of the component
    this.$update()
  })

  // add a "new-colors" event handler to the myEvent element
  myEvent.addEventListener('new-colors', event => {
    this.colors = event.detail // assign new array

    // update the DOM of the component
    this.$update()
  })
}

Note that the event handler now has an event parameter through which you can access the detail property. In addition, it is recommended to add a hyphen to the names of custom events so that they do not overlap with the names of standard events.

Now modify the markup of the MyComponent component by adding a new button to it:

static render() {
  return `
    <button id="btn-reverse">Reverse array</button>
    <button id="btn-new">New array</button>
  `
}

and the "click" event handler, inside which a new array of colors is passed to the "new-colors" event handler:

static connected() {
  // add a "click" event handler for the button
  this.$('#btn-reverse').addEventListener('click', () => {
    // trigger "reverse" event on element myEvent
    this.$event(myEvent, 'reverse')
  })

  // add a "click" event handler for the button
  this.$('#btn-new').addEventListener('click', () => {
    // trigger "new-colors" event on element myEvent
    this.$event(myEvent, 'new-colors', {
      // pass a new array to the event handler
      detail: ['blue', 'orange', 'purple', 'gold']
    })
  })
}

In this way, data can be easily exchanged between different components.

To demonstrate the interaction of components with external code, add a button to clear the array in the markup of the index.html file:

<!-- mount the MyComponent component -->
<my-component id="mycomp"></my-component>

<!-- mount the NewComponent component -->
<new-component id="newcomp"></new-component>

<!-- clear array button -->
<button id="btn-clear">Clear array</button>

Add a new "clear-colors" event handler to the static connected() method of the NewComponent component, as shown below:

static connected() {
  // add a "reverse" event handler to the myEvent element
  myEvent.addEventListener('reverse', () => {
    this.colors.reverse() // reverse array

    // update the DOM of the component
    this.$update()
  })

  // add a "new-colors" event handler to the myEvent element
  myEvent.addEventListener('new-colors', event => {
    this.colors = event.detail // assign new array

    // update the DOM of the component
    this.$update()
  })

  // add a "clear-colors" event handler to the myEvent element
  myEvent.addEventListener('clear-colors', event => {
    this.colors.length = 0 //  clear array

    // update the DOM of the component
    this.$update()
  })
}

and the "click" event handler for the new button at the end of the script:

// add a "click" event handler for the button
document.querySelector('#btn-clear').addEventListener('click', () => {
  // trigger "clear-colors" event on element myEvent
  Creaton.event(myEvent, 'clear-colors')
})

// pass component classes to Creaton plugin
Creaton(MyComponent, NewComponent)

Inside this handler, the "clear-colors" event for the myEvent element is called using the event() method of the plugin itself:

// trigger "clear-colors" event on element myEvent
Creaton.event(myEvent, 'clear-colors')

rather than using the special $event() method, which is only available in components, but is essentially just a reference to the event() method of the Creaton plugin.

Below is the full content of the index.html file:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Creaton</title>
</head>
<body>
  <!-- mount the MyComponent component -->
  <my-component id="mycomp"></my-component>

  <!-- mount the NewComponent component -->
  <new-component id="newcomp"></new-component>

  <!-- clear array button -->
  <button id="btn-clear">Clear array</button>

  <!-- include Creaton plugin -->
  <script src="creaton.min.js"></script>

  <script>
    // create event element myEvent
    const myEvent = new Creaton.event()

    // create component class NewComponent
    class NewComponent {
      colors = ['red', 'green', 'blue']

      static render() {
        return `
          <ul>
            ${ this.colors.map(col => `<li>${ col }</li>`).join('') }
          </ul>
        `
      }

      static connected() {
        // add a "reverse" event handler to the myEvent element
        myEvent.addEventListener('reverse', () => {
          this.colors.reverse() // reverse array

          // update the DOM of the component
          this.$update()
        })

        // add a "new-colors" event handler to the myEvent element
        myEvent.addEventListener('new-colors', event => {
          this.colors = event.detail // assign new array

          // update the DOM of the component
          this.$update()
        })

        // add a "clear-colors" event handler to the myEvent element
        myEvent.addEventListener('clear-colors', event => {
          this.colors.length = 0 //  clear array

          // update the DOM of the component
          this.$update()
        })
      }
    }

    // create component class MyComponent
    class MyComponent {
      static render() {
        return `
          <button id="btn-reverse">Reverse array</button>
          <button id="btn-new">New array</button>
        `
      }

      static connected() {
        // add a "click" event handler for the button
        this.$('#btn-reverse').addEventListener('click', () => {
          // trigger "reverse" event on element myEvent
          this.$event(myEvent, 'reverse')
        })

        // add a "click" event handler for the button
        this.$('#btn-new').addEventListener('click', () => {
          // trigger "new-colors" event on element myEvent
          this.$event(myEvent, 'new-colors', {
            // pass a new array to the event handler
            detail: ['blue', 'orange', 'purple', 'gold']
          })
        })
      }
    }

    // add a "click" event handler for the button
    document.querySelector('#btn-clear').addEventListener('click', () => {
      // trigger "clear-colors" event on element myEvent
      Creaton.event(myEvent, 'clear-colors')
    })

    // pass component classes to Creaton plugin
    Creaton(MyComponent, NewComponent)
  </script>
</body>
</html>

To create routing, an improved custom events mechanism is used. This mechanism involves the use of the route() method of the Creaton plugin and the special $route() method that is available in every component.

When the Creaton plugin's route() method is called as a constructor, it returns a new document fragment that is the source and receiver of custom events. And when this method is not called as a constructor, it works similarly to the special method $route(). This allows you to connect the components involved in routing not only among themselves, but also with any external code.

Unlike the event() method, the route() method, called as a constructor, returns document fragments with an improved addEventListener() method, which allows regular expression characters to be used in event names.

Make changes to the index.html file as shown below:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Creaton</title>
</head>
<body>
  <!-- mount the MyMenu component -->
  <my-menu></my-menu>

  <!-- mount the MyContent component -->
  <my-content></my-content>

  <!-- include Creaton plugin -->
  <script src="creaton.min.js"></script>

  <script>
    // create event element myRoute
    const myRoute = new Creaton.route()

    // create component class MyHome
    class MyHome {
      static render() {
        return `
          <h2>Home</h2>
        `
      }
    }

    // create component class MyAbout
    class MyAbout {
      static render() {
        return `
          <h2>About</h2>
        `
      }
    }

    // create component class MyContacts
    class MyContacts {
      static render() {
        return `
          <h2>Contacts</h2>
        `
      }
    }

    // create component class MyMenu
    class MyMenu {
      static render() {
        return `
          <nav>
            <a href="/">Home</a>
            <a href="/about">About</a>
            <a href="/contacts">Contacts</a>
          </nav>
        `
      }

      static connected() {
        // add a "click" event handler to the NAV element
        this.$('nav').addEventListener('click', event => {
          // cancel clicking on the link
          event.preventDefault()

          // trigger a link address event on myRoute element
          this.$route(myRoute, event.target.href)
        })
      }
    }

    // create component class MyContent
    class MyContent {
      page = 'my-home' // initial state value

      static render() {
        return `
          <${this.page} />
        `
      }

      static connected() {
        // add a "/" event handler to the myRoute element
        myRoute.addEventListener('/', () => {
          this.page = 'my-home' // assign a value

          // update the DOM of the component
          this.$update()
        })

        // add a "/about" event handler to the myRoute element
        myRoute.addEventListener('/about', () => {
          this.page = 'my-about' // assign a value

          // update the DOM of the component
          this.$update()
        })

        // add a "/contacts" event handler to the myRoute element
        myRoute.addEventListener('/contacts', () => {
          this.page = 'my-contacts' // assign a value

          // update the DOM of the component
          this.$update()
        })
      }
    }

    // pass component classes to Creaton plugin
    Creaton(MyHome, MyAbout, MyContacts, MyMenu, MyContent)
  </script>
</body>
</html>

To work with routing, we need any development server, such as, for example, lite-server.

Install this server using the command in the terminal:

npm install --global lite-server

Now navigate to the app directory using a terminal or open a terminal in that directory and in the terminal enter the command:

lite-server

This will open a default browser window displaying the application created above.

In this example, a new event element myRoute is first created:

// create event element myRoute
const myRoute = new Creaton.route()

This element will be assigned address event handlers in some components and called in others.

Then we have the definition of the three components of the pages:

// create component class MyHome
class MyHome {
  static render() {
    return `
      <h2>Home</h2>
    `
  }
}

// create component class MyAbout
class MyAbout {
  static render() {
    return `
      <h2>About</h2>
    `
  }
}

// create component class MyContacts
class MyContacts {
  static render() {
    return `
      <h2>Contacts</h2>
    `
  }
}

After creating the pages components, the main menu component is created:

// create component class MyMenu
class MyMenu {
  static render() {
    return `
      <nav>
        <a href="/">Home</a>
        <a href="/about">About</a>
        <a href="/contacts">Contacts</a>
      </nav>
    `
  }

  static connected() {
    // add a "click" event handler to the NAV element
    this.$('nav').addEventListener('click', event => {
      // cancel clicking on the link
      event.preventDefault()

      // trigger a link address event on myRoute element
      this.$route(myRoute, event.target.href)
    })
  }
}

This component is the first one mounted in the application:

<!-- mount the MyMenu component -->
<my-menu></my-menu>

In the static method connected() of the MyMenu component class, the NAV element is added a "click" event handler, inside which the link is paused and the address event is raised for the myRoute element, as shown below:

static connected() {
  // add a "click" event handler to the NAV element
  this.$('nav').addEventListener('click', event => {
    // cancel clicking on the link
    event.preventDefault()

    // trigger a link address event on myRoute element
    this.$route(myRoute, event.target.href)
  })
}

As the name of the address event, in the second argument of the $route() method, the content of the href attribute of the link that was clicked is passed:

// trigger a link address event on myRoute element
this.$route(myRoute, event.target.href)

As when working with user events, the $route() method can be passed an object with the detail property in the third argument, in which some data is passed to handlers, for example:

// trigger a link address event on myRoute element
this.$route(myRoute, event.target.href, {
  // pass a new array to the event handler
  detail: ['blue', 'orange', 'purple', 'gold']
})

An important difference from custom events is that the data passed to address events must be serializable and their size must not exceed 16 MiB. Those. this data must match the state parameter of the pushState() method.

The last component in the application is defined for the output of pages:

// create component class MyContent
class MyContent {
  page = 'my-home' // initial state value

  static render() {
    return `
      <${this.page} />
    `
  }

  static connected() {
    // add a "/" event handler to the myRoute element
    myRoute.addEventListener('/', () => {
      this.page = 'my-home' // assign a value

      // update the DOM of the component
      this.$update()
    })

    // add a "/about" event handler to the myRoute element
    myRoute.addEventListener('/about', () => {
      this.page = 'my-about' // assign a value

      // update the DOM of the component
      this.$update()
    })

    // add a "/contacts" event handler to the myRoute element
    myRoute.addEventListener('/contacts', () => {
      this.page = 'my-contacts' // assign a value

      // update the DOM of the component
      this.$update()
    })
  }
}

This component is the last one mounted in the application:

<!-- mount the MyContent component -->
<my-content></my-content>

At the very beginning of this component's class, an initial state value of page is defined, as shown below:

page = 'my-home' // initial state value

It matches the name of the MyHome page component:

// create component class MyHome
class MyHome {
  static render() {
    return `
      <h2>Home</h2>
    `
  }
}

In the HTML markup of the MyContent component, the MyHome component is created using a self-closing tag:

static render() {
  return `
    <${this.page} />
  `
}

This example can be rewritten using the opening and closing tags:

static render() {
  return `
    <${this.page}></${this.page}>
  `
}

This technique is used when it is necessary, for example, to pass HTML content to slots:

static render() {
  return `
    <${this.page}>
      <span slot="username">John</span>
      <span slot="age">32</span>
    </${this.page}>
  `
}

In the static method connected() of the MyContent component, three handlers are assigned to the myRoute element, as shown below:

static connected() {
  // add a "/" event handler to the myRoute element
  myRoute.addEventListener('/', () => {
    this.page = 'my-home' // assign a value

    // update the DOM of the component
    this.$update()
  })

  // add a "/about" event handler to the myRoute element
  myRoute.addEventListener('/about', () => {
    this.page = 'my-about' // assign a value

    // update the DOM of the component
    this.$update()
  })

  // add a "/contacts" event handler to the myRoute element
  myRoute.addEventListener('/contacts', () => {
    this.page = 'my-contacts' // assign a value

    // update the DOM of the component
    this.$update()
  })
}

Inside each handler, the page state is assigned a new value corresponding to the address of the page on which the handler fired, for example:

this.page = 'my-about' // assign a value

This handler will work if the page address matches /about.

At the end of each handler, the DOM of the MyContent component is updated:

// update the DOM of the component
this.$update()

If the initial state value page does not match the name of the component, for example:

page = '' // initial state value

or if the application is supposed to be opened not from the main page, but, for example, from the page /about or any other, then it is recommended to add to the end of the static method connected() of the MyContent component, calling the address event for the myRoute element. Thus, routing will be triggered immediately after the component is connected.

The second argument to the $route() method is the href property of the location object, as shown below:

static connected() {
  // add a "/" event handler to the myRoute element
  myRoute.addEventListener('/', () => {
    this.page = 'my-home' // assign a value

    // update the DOM of the component
    this.$update()
  })

  // add a "/about" event handler to the myRoute element
  myRoute.addEventListener('/about', () => {
    this.page = 'my-about' // assign a value

    // update the DOM of the component
    this.$update()
  })

  // add a "/contacts" event handler to the myRoute element
  myRoute.addEventListener('/contacts', () => {
    this.page = 'my-contacts' // assign a value

    // update the DOM of the component
    this.$update()
  })

  // trigger page address event on myRoute element
  this.$route(myRoute, location.href)
}

For event elements created using the route() method of the Creaton plugin, it is allowed to use regular expressions characters in the name of events created by the addEventListener() method, for example:

// add a "/abo\\w+" event handler to the myRoute element
myRoute.addEventListener('/abo\\w+', () => {
  this.page = 'my-about' // assign a value

  // update the DOM of the component
  this.$update()
})

In this example, the handler will be called for all pages that start with /abo.

An important feature of creating regular expressions in a string is that special characters must be escaped twice:

'/abo\\w+'

instead of:

'/abo\w+'

At the internal level, such a string is converted to a regular expression of the following form:

/\/abo\w+/

All handlers support routes parameters. Add a new link to the HTML markup of the MyMenu component:

static render() {
  return `
    <nav>
      <a href="/">Home</a>
      <a href="/about">About</a>
      <a href="/contacts">Contacts</a>
      <a href="/john/32">John</a>
    </nav>
  `
}

Create a new page component MyUsers:

// create component class MyUsers
class MyUsers {
  static mode = 'open' // add Shadow DOM
  
  static render() {
    return `
      <slot name="user"></slot>
      <slot name="age"></slot>
    `
  }
}

Since this component will receive HTML content from the outside in the slots, it was necessary to add a Shadow DOM to it, as shown below:

static mode = 'open' // add Shadow DOM

Pass the class of the new component to the Creaton plugin:

// pass component classes to Creaton plugin
Creaton(MyHome, MyAbout, MyContacts, MyUsers, MyMenu, MyContent)

Modify the markup of the MyContent component by adding HTML output to named slots using the slot attribute, as shown below:

static render() {
  return `
    <${this.page}>
      <p slot="user">${this.user}</p>
      <p slot="age">${this.age}</p>
    </${this.page}>
  `
}

For all other pages components, except for the MyUsers component, the content passed to the slots will be ignored.

It remains to add a handler for this address event at the end of the static method connected() of the MyContent component:

static connected() {
  // add a "/" event handler to the myRoute element
  myRoute.addEventListener('/', () => {
    this.page = 'my-home' // assign a value

    // update the DOM of the component
    this.$update()
  })

  // add a "/abo\\w+" event handler to the myRoute element
  myRoute.addEventListener('/abo\\w+', () => {
    this.page = 'my-about' // assign a value

    // update the DOM of the component
    this.$update()
  })

  // add a "/contacts" event handler to the myRoute element
  myRoute.addEventListener('/contacts', () => {
    this.page = 'my-contacts' // assign a value

    // update the DOM of the component
    this.$update()
  })

  // add a "/:user/:age" event handler to the myRoute element
  myRoute.addEventListener('/:user/:age', event => {
    this.page = 'my-users' // component name
    this.user = event.params.user // username
    this.age = event.params.age // user age

    // update the DOM of the component
    this.$update()
  })
}

Parameters are specified in the name of the processed event using the ":" symbol. In the example above, two parameters were given: :user and :age. They are available inside the handler through the params property of the event object, as shown below:

this.user = event.params.user // username
this.age = event.params.age // user age

In addition to routes parameters, handlers allow you to work with query parameters. Add a new link to the HTML markup of the MyMenu component:

static render() {
  return `
    <nav>
      <a href="/">Home</a>
      <a href="/about">About</a>
      <a href="/contacts">Contacts</a>
      <a href="/john/32">John</a>
      <a href="/john?age=32">Age</a>
    </nav>
  `
}

Add a final handler for this address event at the end of the MyContent component's static connected() method:

static connected() {
  // add a "/" event handler to the myRoute element
  myRoute.addEventListener('/', () => {
    this.page = 'my-home' // assign a value

    // update the DOM of the component
    this.$update()
  })

  // add a "/abo\\w+" event handler to the myRoute element
  myRoute.addEventListener('/abo\\w+', () => {
    this.page = 'my-about' // assign a value

    // update the DOM of the component
    this.$update()
  })

  // add a "/contacts" event handler to the myRoute element
  myRoute.addEventListener('/contacts', () => {
    this.page = 'my-contacts' // assign a value

    // update the DOM of the component
    this.$update()
  })

  // add a "/:user/:age" event handler to the myRoute element
  myRoute.addEventListener('/:user/:age', event => {
    this.page = 'my-users' // component name
    this.user = event.params.user // username
    this.age = event.params.age // user age

    // update the DOM of the component
    this.$update()
  })

   // add a "/:user\\?age=32" event handler to the myRoute element
  myRoute.addEventListener('/:user\\?age=32', event => {
    this.page = 'my-users' // component name
    this.user = event.params.user // username
    this.age = event.url.searchParams.get('age') // user age
    
    // update the DOM of the component
    this.$update()
  })
}

To access query parameters, use the url property of the event object. It contains the searchParams property, which provides convenience methods for working with query parameters, one of which is the get() method, as shown below:

this.age = event.url.searchParams.get('age') // user age

To demonstrate the interaction of address event handlers with external code, instead of the MyMenu component, add the NAV element of the main menu to the markup of the index.html file:

<!-- Main menu -->
<nav id="mymenu">
  <a href="/">Home</a>
  <a href="/about">About</a>
  <a href="/contacts">Contacts</a>
  <a href="/john/32">John</a>
  <a href="/john?age=32">Age</a>
</nav>

<!-- mount the MyContent component -->
<my-content></my-content>

Add a "click" event handler for this menu at the end of the script:

// add a "click" event handler to the NAV element
document.querySelector('#mymenu').addEventListener('click', () => {
  // cancel clicking on the link
  event.preventDefault()

  // trigger a link address event on myRoute element
  Creaton.route(myRoute, event.target.href)
})

// pass component classes to Creaton plugin
Creaton(MyHome, MyAbout, MyContacts, MyUsers, MyContent)

Inside this handler, the address event for the myRoute element is called using the route() method of the plugin itself:

// trigger a link address event on myRoute element
Creaton.route(myRoute, event.target.href)

rather than using the special $route() method, which is only available in components, but is essentially just a reference to the route() method of the Creaton plugin.

Below is the full content of the index.html file:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Creaton</title>
</head>
<body>
  <!-- Main menu
2.0.3

10 months ago

2.0.2

10 months ago

2.4.1

9 months ago

2.4.0

9 months ago

2.0.4

10 months ago

2.4.3

9 months ago

2.4.2

9 months ago

2.8.1

7 months ago

2.4.5

9 months ago

2.8.0

7 months ago

2.4.4

9 months ago

2.0.1

10 months ago

2.0.0

10 months ago

2.5.6

9 months ago

2.5.5

9 months ago

2.5.8

9 months ago

2.5.7

9 months ago

2.5.9

9 months ago

2.3.0

9 months ago

2.3.1

9 months ago

2.7.0

7 months ago

2.7.2

7 months ago

2.7.1

7 months ago

2.8.3

7 months ago

2.4.7

9 months ago

2.8.2

7 months ago

2.4.6

9 months ago

2.8.5

7 months ago

2.8.4

7 months ago

2.8.7

7 months ago

2.8.6

7 months ago

2.8.9

7 months ago

2.8.8

7 months ago

2.2.1

9 months ago

2.2.0

9 months ago

2.6.1

9 months ago

2.6.0

9 months ago

2.6.3

8 months ago

2.6.2

8 months ago

2.7.4

7 months ago

2.7.3

7 months ago

2.7.5

7 months ago

2.5.14

9 months ago

2.5.15

9 months ago

2.5.16

9 months ago

2.5.17

9 months ago

2.5.10

9 months ago

2.5.11

9 months ago

2.5.12

9 months ago

2.1.2

9 months ago

2.1.1

9 months ago

2.5.0

9 months ago

2.1.4

9 months ago

2.1.3

9 months ago

2.5.2

9 months ago

2.1.6

9 months ago

2.5.1

9 months ago

2.1.5

9 months ago

2.5.4

9 months ago

2.5.3

9 months ago

2.8.12

7 months ago

2.8.11

7 months ago

2.8.10

7 months ago

2.8.15

7 months ago

2.8.14

7 months ago

2.1.0

9 months ago

2.6.4

8 months ago

1.0.12

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.11

1 year ago

1.0.10

1 year ago

0.1.17

1 year ago

0.1.18

1 year ago

0.1.19

1 year ago

0.1.16

2 years ago

0.1.15

2 years ago

0.1.14

2 years ago

0.1.12

2 years ago

0.1.11

2 years ago

0.1.10

2 years ago

0.1.9

2 years ago

0.1.8

2 years ago

0.1.7

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago