RIOT.JS - Mixin
A través de Mixin, podemos compartir una funcionalidad común entre etiquetas. Mixin puede ser una función, clase u objeto. Considere un caso de servicio de autenticación que debería utilizar cada etiqueta.
Define Mixin - Defina mixin usando el método riot.mixin () antes de llamar a mount ().
riot.mixin('authService', {
init: function() {
console.log('AuthService Created!')
},
login: function(user, password) {
if(user == "admin" && password == "admin"){
return 'User is authentic!'
}else{
return 'Authentication failed!'
}
}
});
Initialize mixin - Inicializar mixin en cada etiqueta.
this.mixin('authService')
Use mixin - Después de inicializar, mixin se puede utilizar dentro de la etiqueta.
this.message = this.login("admin","admin");
Ejemplo
A continuación se muestra el ejemplo completo.
custom8Tag.tag
<custom8Tag>
<h1>{ message }</h1>
<script>
this.mixin('authService')
this.message = this.login("admin","admin")
</script>
</custom8Tag>
custom9Tag.tag
<custom9Tag>
<h1>{ message }</h1>
<script>
this.mixin('authService')
this.message = this.login("admin1","admin")
</script>
</custom9Tag>
custom8.htm
<html>
<head>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/riot/3.13.2/riot+compiler.min.js"></script>
</head>
<body>
<custom8Tag></custom8Tag>
<custom9Tag></custom9Tag>
<script src = "custom8Tag.tag" type = "riot/tag"></script>
<script src = "custom9Tag.tag" type = "riot/tag"></script>
<script>
riot.mixin('authService', {
init: function() {
console.log('AuthService Created!')
},
login: function(user, password) {
if(user == "admin" && password == "admin"){
return 'User is authentic!'
}else{
return 'Authentication failed!'
}
}
});
riot.mount("*");
</script>
</body>
</html>
Esto producirá el siguiente resultado: