RIOT.JS - Tratamento de Eventos

Podemos anexar eventos a elementos HTML da mesma forma como acessamos elementos HTML usando o objeto refs. Como primeira etapa, adicionamos um atributo ref a um elemento DOM e o acessamos usando this.ref no bloco de script da tag.

  • Attach ref - Adicione o atributo ref a um elemento DOM.

<button ref = "clickButton">Click Me!</button>
  • Use the refs object- Agora use o objeto refs no evento de montagem. Este evento é disparado quando o RIOT monta a tag personalizada e preenche o objeto refs.

this.on("mount", function() {
   console.log("Mounting");
   console.log(this.refs.username.value);
})

Exemplo

A seguir está o exemplo completo.

custom5Tag.tag

<custom5Tag>
   <form>
      <input ref = "username" type = "text" value = "Mahesh"/>
      <input type = "submit" value = "Click Me!" />
   </form>
   <script>
      this.on("mount", function() {
         console.log("Mounting");
         console.log(this.refs.username.value); 
      })
   </script>
</custom5Tag>

custom5.htm

<html>
   <head>
      <script src = "https://cdnjs.cloudflare.com/ajax/libs/riot/3.13.2/riot+compiler.min.js"></script>
   </head>
   <body>
      <custom5Tag></custom5Tag>
      <script src = "custom5Tag.tag" type = "riot/tag"></script>
      <script>
         riot.mount("custom5Tag");
      </script>
   </body>
</html>

Isso produzirá o seguinte resultado -