Connections view #130
Loading…
Reference in New Issue
No description provided.
Delete Branch "wbuezas/hedera-web-mindshore:feature/connections-view"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
PR relacionada de salix: verdnatura/salix#3597
@ -40,0 +72,4 @@
return;
}
const formattedConnections = data
Esto se podría simplificar
connections.value = data .map(({ visitUser = {}, ...rest }) => ({ ...rest, user: visitUser.user, stamp: visitUser.stamp, visitAgent: visitUser.visitAccess?.visitAgent })) .filter(({ user }) => user);
Aplicado.
Commit:
d9445f72e3
En loopback se pueden crear scopes, de esta manera, no haria falta pasarle el filter.
Ahora ya está fusionada en salix, pero bueno, lo dejo como comentario a futuro
@ -109,13 +162,14 @@ onBeforeUnmount(() => clearInterval(intervalId.value));
>
<span
v-if="
Esto se podria simplificar, porque el uso x6 de connection.visitagent no mola
Seria una funcion en el v-if y otra funcion a la que le pases connection y te lo devuelva formateado
Otra opcion es
const renderAgentDetails = (connection) => { const agent = connection.visitAgent; return agent?.platform && agent?.browser && agent?.version ? h('span',
${agent.platform} - ${agent.browser} - ${agent.version}) : null; };
<component :is="renderAgentDetails(connection)" />
Aplicado.
Commit:
365d4d31e1
#130 (comment)
