pedi2/public/js/chismosa.js

109 lines
3.8 KiB
JavaScript
Raw Normal View History

Vue.component('chismosa', {
template: `
2022-05-18 17:46:47 -03:00
<div class="container table-container chismosa-container is-max-widescreen is-max-desktop animate__animated" :class="animation" v-show="!init">
2022-05-04 15:37:32 -03:00
<table v-show="this.subpedido.productos.length != 0" class="table is-fullwidth is-striped is-bordered">
<thead>
<tr>
2022-04-11 23:02:54 -03:00
<th>Producto</th>
<th><abbr title="Cantidad">C</abbr></th>
<th><abbr title="Precio Total">$</abbr></th>
<th></th>
<th><abbr title="Eliminar"></abbr></th>
</tr>
</thead>
<tfoot>
<tr>
2022-04-11 23:02:54 -03:00
<th><abbr title="Bonos de Transporte">B. Transporte</abbr></th>
<th>{{ this.subpedido.bonos_de_transporte }}</th>
<th>{{ this.subpedido.subtotal_bonos_de_transporte }}</th>
<th></th>
<th></th>
</tr>
<tr>
<th>Total total</th>
<th></th>
<th>{{ this.subpedido.total }}</th>
<th></th>
<th></th>
</tr>
</tfoot>
<tbody>
<producto-row v-for="producto in this.subpedido.productos" :producto="producto" :key="producto.id"></producto-row>
</tbody>
</table>
2022-05-04 15:37:32 -03:00
<p class="has-text-centered" v-show="this.subpedido.productos.length == 0">Compa, todavía no agregaste nada a la chismosa.</p>
</div>
`,
data() {
return {
subpedido: {
productos:[]
},
2022-05-18 17:46:47 -03:00
init: true,
2022-05-04 16:50:22 -03:00
visible: false
}
},
computed: {
2022-05-18 17:46:47 -03:00
animation: function() {
return this.visible ? "animate__slideInDown" : "animate__slideOutUp";
}
},
beforeCreate() {
axios.get("/subpedidos/obtener_sesion").then(response => {
this.subpedido = response.data.subpedido;
this.fetchSubpedido();
});
},
methods: {
fetchSubpedido() {
axios.get("/api/subpedidos/" + this.subpedido.id)
.then(response => {
this.subpedido = response.data.data;
});
}
2022-04-11 22:53:26 -03:00
},
mounted() {
2022-05-18 18:17:38 -03:00
Event.$on('sync-chismosa', (subpedido) => {
this.subpedido = subpedido;
2022-04-11 22:53:26 -03:00
});
2022-05-04 16:50:22 -03:00
Event.$on('toggle-chismosa', () => {
2022-05-18 17:46:47 -03:00
this.init = false;
2022-05-04 16:50:22 -03:00
this.visible = !this.visible;
2022-05-18 17:46:47 -03:00
var main = document.getElementById("main");
if (this.visible) main.classList.add("chisma-abierta");
else main.classList.remove("chisma-abierta");
2022-05-04 16:50:22 -03:00
});
}
});
Vue.component('producto-row', {
template: `
<tr>
<td>{{ this.producto.nombre }}</td>
<td>{{ this.producto.pivot.cantidad }}</td>
<td>{{ this.producto.pivot.total }}</td>
2022-04-11 22:53:26 -03:00
<td><button @click.capture="seleccionarProducto(producto)" class="button is-warning">
<span class="icon">
<i class="fas fa-edit"></i>
</span>
</button></td>
2022-04-11 23:02:54 -03:00
<td><button @click.capture="eliminarProducto(producto)" class="button is-danger">
<span class="icon">
<i class="fas fa-trash-alt"></i>
</span>
</button></td>
</tr>
`,
props: {
producto: Object
2022-04-11 22:53:26 -03:00
},
methods: {
seleccionarProducto(producto) {
Event.$emit("producto-seleccionado",producto);
2022-04-11 23:02:54 -03:00
},
eliminarProducto(producto) {
Event.$emit("sync-subpedido", 0, this.producto.id);
Event.$emit("sync-subpedido");
2022-04-11 22:53:26 -03:00
}
}
})