Merge branch 'staging' into 'project-admin'
# Conflicts: # src/menu-left.pug # src/page-circle-profile.pug
This commit is contained in:
commit
6f1dd7d66c
@ -28,10 +28,12 @@ nav#main__menu
|
|||||||
div.menu-icon.icon-folder-alt
|
div.menu-icon.icon-folder-alt
|
||||||
sib-route(name='project', rdf-type='hd:project', use-id='', hidden)
|
sib-route(name='project', rdf-type='hd:project', use-id='', hidden)
|
||||||
div.sub-menu.menu-notification
|
div.sub-menu.menu-notification
|
||||||
sib-display(
|
sib-display.project-tab(
|
||||||
bind-user
|
bind-user
|
||||||
nested-field='projects'
|
nested-field='projects'
|
||||||
fields='line(project.customer.name, dash, project.name), project'
|
fields='line(project.customer.name, dash, project.name), project'
|
||||||
|
class-project.customer.name='project-customer'
|
||||||
|
class-project.name='project-name'
|
||||||
empty-widget='hd-create'
|
empty-widget='hd-create'
|
||||||
empty-value='project'
|
empty-value='project'
|
||||||
value-dash=' - '
|
value-dash=' - '
|
||||||
|
@ -7,6 +7,7 @@ sib-router(default-route='project-profile', hidden)
|
|||||||
include templates/hd-captain.pug
|
include templates/hd-captain.pug
|
||||||
include templates/hd-circle-team.pug
|
include templates/hd-circle-team.pug
|
||||||
include templates/hd-customer.pug
|
include templates/hd-customer.pug
|
||||||
|
include templates/hd-project-team.pug
|
||||||
|
|
||||||
.content-box__info
|
.content-box__info
|
||||||
|
|
||||||
@ -65,10 +66,10 @@ sib-router(default-route='project-profile', hidden)
|
|||||||
|
|
||||||
sib-display(
|
sib-display(
|
||||||
bind-resources
|
bind-resources
|
||||||
fields='team'
|
fields='members'
|
||||||
|
|
||||||
widget-team='circle-team-template'
|
widget-members='hd-project-team'
|
||||||
multiple-team
|
multiple-members
|
||||||
)
|
)
|
||||||
|
|
||||||
sib-widget(name='project-leave-button')
|
sib-widget(name='project-leave-button')
|
||||||
|
@ -113,8 +113,12 @@
|
|||||||
width: calc(150px - 10px);
|
width: calc(150px - 10px);
|
||||||
/* 10px = padding of the sib-set-default = better alignment */
|
/* 10px = padding of the sib-set-default = better alignment */
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
.project-tab>div>sib-display[fields='project(customer.name, name), badge']>div:hover {
|
||||||
|
background-color: $color-233-20-17;
|
||||||
|
|
||||||
|
sib-set-default[name='project'] {
|
||||||
background-color: $color-233-20-17;
|
background-color: $color-233-20-17;
|
||||||
box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.26);
|
box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.26);
|
||||||
color: $color-218-100-98;
|
color: $color-218-100-98;
|
||||||
@ -126,6 +130,10 @@
|
|||||||
.project-name {
|
.project-name {
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.project-name {
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,4 +4,4 @@
|
|||||||
@import 'howto';
|
@import 'howto';
|
||||||
@import 'sidebar';
|
@import 'sidebar';
|
||||||
@import 'skills';
|
@import 'skills';
|
||||||
@import 'user-role';
|
@import 'tags';
|
19
src/styles/components/tags.scss
Normal file
19
src/styles/components/tags.scss
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
%tag-role {
|
||||||
|
border: 1px solid $color-45-95-54;
|
||||||
|
border-radius: 3px;
|
||||||
|
color: $color-210-4-50;
|
||||||
|
font-size: 1.4rem;
|
||||||
|
font-weight: 400;
|
||||||
|
margin-right: 0.6rem;
|
||||||
|
padding: 0.2rem 0.98rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
%tag-admin {
|
||||||
|
border: 1px solid $color-244-73-62;
|
||||||
|
border-radius: 3px;
|
||||||
|
color: $color-244-73-62;
|
||||||
|
font-size: 1.4rem;
|
||||||
|
font-weight: 400;
|
||||||
|
margin-left: 0.6rem;
|
||||||
|
padding: 0.3rem 0.98rem;
|
||||||
|
}
|
@ -1,9 +0,0 @@
|
|||||||
%user-role {
|
|
||||||
border: 1px solid $color-45-95-54;
|
|
||||||
border-radius: 3px;
|
|
||||||
color: $color-210-4-50;
|
|
||||||
font-size: 1.4rem;
|
|
||||||
font-weight: 400;
|
|
||||||
margin-right: 0.4rem;
|
|
||||||
padding: 0.2rem 0.98rem;
|
|
||||||
}
|
|
@ -133,7 +133,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
[name='groups'] {
|
[name='groups'] {
|
||||||
@extend %user-role;
|
@extend %tag-role;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -15,87 +15,85 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
>div { /* peut-être à mettre dans main.scss */
|
/* peut-être à mettre dans main.scss */
|
||||||
|
|
||||||
>sib-multiple {
|
circle-team-template>sib-display>div {
|
||||||
|
display: grid;
|
||||||
|
grid-column-gap: 1.6rem;
|
||||||
|
grid-template-columns: 7vh auto;
|
||||||
|
grid-template-rows: repeat(2, 5.2vh);
|
||||||
|
|
||||||
label {
|
>[name='user.account.picture'] {
|
||||||
display: none;
|
align-items: center;
|
||||||
|
align-self: center;
|
||||||
|
background-color: $color-213-20-91;
|
||||||
|
border-radius: 50%;
|
||||||
|
display: flex;
|
||||||
|
grid-column: 1 / span 1;
|
||||||
|
grid-row: 1 / span 2;
|
||||||
|
height: 7vh;
|
||||||
|
justify-content: center;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
width: 7vh;
|
||||||
|
|
||||||
|
img {
|
||||||
|
background-color: white;
|
||||||
|
height: 100%;
|
||||||
|
left: 0;
|
||||||
|
object-fit: cover;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
>div>circle-team-template[name='team']>sib-display>div {
|
object {
|
||||||
display: grid;
|
height: 45%;
|
||||||
grid-column-gap: 1.6rem;
|
width: 45%;
|
||||||
grid-template-columns: 7vh auto;
|
}
|
||||||
grid-template-rows: repeat(2, 5.2vh);
|
}
|
||||||
|
|
||||||
>[name='account.picture'] {
|
>[name='sup'] {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
align-self: center;
|
align-self: end;
|
||||||
background-color: $color-213-20-91;
|
display: flex;
|
||||||
border-radius: 50%;
|
grid-column: 2 / span 1;
|
||||||
display: flex;
|
grid-row: 1 / span 1;
|
||||||
grid-column: 1 / span 1;
|
margin-bottom: 0.50rem;
|
||||||
grid-row: 1 / span 2;
|
|
||||||
height: 7vh;
|
|
||||||
justify-content: center;
|
|
||||||
overflow: hidden;
|
|
||||||
position: relative;
|
|
||||||
width: 7vh;
|
|
||||||
|
|
||||||
img {
|
.user-name {
|
||||||
background-color: white;
|
font-weight: 600;
|
||||||
height: 100%;
|
}
|
||||||
left: 0;
|
|
||||||
object-fit: cover;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
object {
|
.tag-group {
|
||||||
height: 45%;
|
display: flex;
|
||||||
width: 45%;
|
margin-bottom: 1px;
|
||||||
}
|
margin-left: 0.6rem;
|
||||||
|
|
||||||
|
[name='user.groups'] {
|
||||||
|
@extend %tag-role;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
>[name='sup'] {
|
.tag-admin:not(:empty) {
|
||||||
align-self: end;
|
@extend %tag-admin;
|
||||||
display: flex;
|
}
|
||||||
grid-column: 2 / span 1;
|
}
|
||||||
grid-row: 1 / span 1;
|
|
||||||
margin-bottom: 0.50rem;
|
|
||||||
|
|
||||||
[name='name'] {
|
>[name='sub'] {
|
||||||
font-weight: 600;
|
align-self: start;
|
||||||
}
|
grid-column: 2 / span 1;
|
||||||
|
grid-row: 2 / span 1;
|
||||||
|
margin-top: 0.50rem;
|
||||||
|
|
||||||
sib-multiple {
|
>.city:not(:empty) {
|
||||||
display: flex;
|
@include mdi('atom');
|
||||||
margin-left: 1rem;
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
[name='groups'] {
|
&::before {
|
||||||
@extend %user-role;
|
color: $color-43-100-50;
|
||||||
}
|
margin-right: 0.50rem;
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
>[name='sub'] {
|
|
||||||
align-self: start;
|
|
||||||
grid-column: 2 / span 1;
|
|
||||||
grid-row: 2 / span 1;
|
|
||||||
margin-top: 0.50rem;
|
|
||||||
|
|
||||||
>[name$='profile.city']:not(:empty) {
|
|
||||||
@include mdi('atom');
|
|
||||||
align-items: center;
|
|
||||||
display: flex;
|
|
||||||
|
|
||||||
&::before {
|
|
||||||
color: $color-43-100-50;
|
|
||||||
margin-right: 0.50rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -135,7 +135,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
[name='groups'] {
|
[name='groups'] {
|
||||||
@extend %user-role;
|
@extend %tag-role;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -88,7 +88,7 @@ sib-job-board {
|
|||||||
}
|
}
|
||||||
|
|
||||||
>* {
|
>* {
|
||||||
@extend %user-role;
|
@extend %tag-role;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
member-info-groups {
|
member-info-groups {
|
||||||
@extend %user-role;
|
@extend %tag-role;
|
||||||
}
|
}
|
||||||
|
|
||||||
#members-list {
|
#members-list {
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
hd-captain>sib-display>div,
|
hd-captain>sib-display>div,
|
||||||
circle-team-template>sib-display>div { /* Maybe move it in main.scss. /!\ some fields are different */
|
hd-project-team>sib-display>div { /* Maybe move it in main.scss. /!\ some fields are different */
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-column-gap: 1.6rem;
|
grid-column-gap: 1.6rem;
|
||||||
grid-template-columns: 7vh auto;
|
grid-template-columns: 7vh auto;
|
||||||
@ -93,7 +93,7 @@
|
|||||||
grid-row: 1 / span 1;
|
grid-row: 1 / span 1;
|
||||||
margin-bottom: 0.50rem;
|
margin-bottom: 0.50rem;
|
||||||
|
|
||||||
[name='name'] {
|
.user-name {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -101,8 +101,9 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
|
|
||||||
[name='groups'] {
|
[name='groups'],
|
||||||
@extend %user-role;
|
[name='user.groups'] {
|
||||||
|
@extend %tag-role;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -117,12 +118,28 @@
|
|||||||
@include mdi('atom');
|
@include mdi('atom');
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
margin-right: 1.6rem;
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
color: $color-43-100-50;
|
color: $color-43-100-50;
|
||||||
margin-right: 0.50rem;
|
margin-right: 0.50rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
>[name$='name']:not(:empty),
|
||||||
|
>[name='is_lead'] {
|
||||||
|
@include icon('eyeglass');
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
color: $color-43-100-50;
|
||||||
|
font-size: 1.9rem;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-left: 0;
|
||||||
|
margin-right: 0.50rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
padding-left: 1.4rem;
|
padding-left: 1.4rem;
|
||||||
|
|
||||||
groups-name {
|
groups-name {
|
||||||
@extend %user-role;
|
@extend %tag-role;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,8 +4,14 @@ sib-widget(name='hd-captain')
|
|||||||
template
|
template
|
||||||
sib-display(
|
sib-display(
|
||||||
data-src="${await value}"
|
data-src="${await value}"
|
||||||
fields='account.picture, sup(name), sub(profile.city)'
|
fields='account.picture, sup(name), sub(profile.city, is_lead)'
|
||||||
|
|
||||||
|
class-name='user-name'
|
||||||
|
class-profile.city='city'
|
||||||
|
|
||||||
widget-account.picture='hd-user-avatar'
|
widget-account.picture='hd-user-avatar'
|
||||||
|
widget-is_lead='hd-user-lead'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
sib-widget(name='hd-user-lead')
|
||||||
|
template Project lead
|
||||||
|
@ -3,14 +3,23 @@ include hd-user-avatar.pug
|
|||||||
sib-widget(name='circle-team-template')
|
sib-widget(name='circle-team-template')
|
||||||
template
|
template
|
||||||
sib-display(
|
sib-display(
|
||||||
data-src="${await value}"
|
data-src='${await value}'
|
||||||
fields='account.picture, sup(name, groups), sub(profile.city)'
|
fields='user.account.picture, sup(user.name, is_admin, user.groups), sub(user.profile.city)'
|
||||||
|
|
||||||
widget-account.picture='hd-user-avatar'
|
class-user.name='user-name'
|
||||||
widget-groups='hd-user-groups'
|
class-is_admin='tag-admin'
|
||||||
|
class-user.groups='tag-group'
|
||||||
|
class-user.profile.city='city'
|
||||||
|
|
||||||
multiple-groups=''
|
widget-user.account.picture='hd-user-avatar'
|
||||||
|
widget-is_admin='hd-user-admin'
|
||||||
|
widget-user.groups='hd-user-groups'
|
||||||
|
|
||||||
|
multiple-user.groups=''
|
||||||
)
|
)
|
||||||
|
|
||||||
|
sib-widget(name='hd-user-admin')
|
||||||
|
template ${await value ? "Administrator" : ""}
|
||||||
|
|
||||||
sib-widget(name='hd-user-groups')
|
sib-widget(name='hd-user-groups')
|
||||||
template ${await value.name}
|
template ${await value.name}
|
||||||
|
20
src/templates/hd-project-team.pug
Normal file
20
src/templates/hd-project-team.pug
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
include hd-user-avatar.pug
|
||||||
|
|
||||||
|
sib-widget(name='hd-project-team')
|
||||||
|
template
|
||||||
|
sib-display(
|
||||||
|
data-src='${await value}'
|
||||||
|
fields='account.picture, sup(user.name, user.groups), sub(user.profile.city, name)'
|
||||||
|
|
||||||
|
class-user.name='user-name'
|
||||||
|
class-user.groups='tag-group'
|
||||||
|
class-user.profile.city='city'
|
||||||
|
|
||||||
|
widget-account.picture='hd-user-avatar'
|
||||||
|
widget-user.groups='hd-user-groups'
|
||||||
|
|
||||||
|
multiple-user.groups=''
|
||||||
|
)
|
||||||
|
|
||||||
|
sib-widget(name='hd-user-groups')
|
||||||
|
template ${await value.name}
|
Loading…
Reference in New Issue
Block a user