Update survey list styles and add survey state circular pulse animation

This commit is contained in:
Pablo Bonilla 2021-07-15 01:18:19 -06:00
parent 559210768c
commit 1b0052f4d6
No known key found for this signature in database
GPG Key ID: 46877262B8DE47E2
3 changed files with 133 additions and 9 deletions

View File

@ -42,17 +42,52 @@
*ngFor="let encuesta of encuestas; trackBy: trackId"
(dblclick)="openSurvey($event)"
(click)="selectSurvey($event)"
(contextmenu)="openContextMenu($event)"
[attr.data-id]="encuesta.id"
>
<span>{{ encuesta.nombre }}</span>
<br />
<span>{{ encuesta.descripcion }}</span>
<div class="entity-header">
<div>
<div
class="entity-state"
[ngClass]="
encuesta.estado == 'DRAFT' ? 'entity-state--blue' : encuesta.estado == 'ACTIVE' ? 'entity-state--green' : 'entity-state--red'
"
style="animation-delay: 0s"
></div>
<div
class="entity-state"
[ngClass]="
encuesta.estado == 'DRAFT' ? 'entity-state--blue' : encuesta.estado == 'ACTIVE' ? 'entity-state--green' : 'entity-state--red'
"
style="animation-delay: 1s"
></div>
<div
class="entity-state entity-state--blue"
[ngClass]="
encuesta.estado == 'DRAFT' ? 'entity-state--blue' : encuesta.estado == 'ACTIVE' ? 'entity-state--green' : 'entity-state--red'
"
style="animation-delay: 2s"
></div>
<div
class="entity-state entity-state--blue"
[ngClass]="
encuesta.estado == 'DRAFT' ? 'entity-state--blue' : encuesta.estado == 'ACTIVE' ? 'entity-state--green' : 'entity-state--red'
"
style="animation-delay: 3s"
></div>
</div>
<div class="entity-share">
<span><fa-icon [icon]="faShareAlt"></fa-icon></span>
</div>
</div>
<br />
<span>{{ encuesta.fechaCreacion | formatMediumDatetime }}</span>
<br />
<span>{{ encuesta.calificacion }}</span>
<br />
<span><fa-icon [icon]="faShareAlt"></fa-icon></span>
<span>{{ encuesta.acceso }}</span>
<span class="title">{{ encuesta.nombre }}</span>
<span class="subtitle">{{ encuesta.descripcion }}</span>
<!-- <p>
<a [routerLink]="['/encuesta', encuesta.id, 'view']">{{ encuesta.id }}</a>

View File

@ -292,6 +292,23 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
document.querySelectorAll('.ds-list--entity').forEach(e => {
e.classList.remove('active');
});
event.target.classList.add('active');
if (event.target.classList.contains('ds-list--entity')) {
event.target.classList.add('active');
}
}
openContextMenu(event: any): void {
document.querySelectorAll('.ds-list--entity').forEach(e => {
e.classList.remove('active');
});
if (event.target.classList.contains('ds-list--entity')) {
event.target.classList.add('active');
}
// Open Context Menu
// Edit
// Delete
// Copy
// Rename
}
}

View File

@ -1,3 +1,14 @@
@keyframes scaleIn {
from {
transform: scale(0.5, 0.5);
opacity: 0.5;
}
to {
transform: scale(2.5, 2.5);
opacity: 0;
}
}
.ds-list {
display: grid;
grid-template-columns: repeat(4, 1fr);
@ -10,15 +21,76 @@
box-sizing: border-box;
.ds-list--entity {
position: relative;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: flex-start;
border: 1px solid #dadce0;
border-radius: $border-radius-small;
padding: 0.5rem;
margin: 1rem;
// transition: all 0.1s ease-in-out;
word-wrap: break-word;
position: relative;
*:not(div) {
pointer-events: none;
}
.title {
color: rgba(0, 0, 0, 0.72);
font-size: 0.9rem;
}
.subtitle {
color: rgba(0, 0, 0, 0.54);
}
.entity-header {
display: flex;
justify-content: space-between;
position: relative;
width: 100%;
}
.entity-share {
border-radius: 50%;
background-color: #f1f5f9;
cursor: pointer;
width: 25px;
height: 25px;
display: flex;
justify-content: center;
align-items: center;
transition: background-color 0.2s ease-in-out;
color: #313747;
}
.entity-share:hover {
background-color: #e3e6e9;
}
.entity-state {
border-radius: 50%;
width: 10px;
height: 10px;
position: absolute;
opacity: 0;
animation: scaleIn 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
}
.entity-state--blue {
background-color: #2962ff;
}
.entity-state--green {
background-color: #3ead7f;
}
.entity-state--red {
background-color: #e73636;
}
}
.active {
background-color: #e8f0fe;
background-color: #e8f0fe !important;
}
}