Motion block slide template
This commit is contained in:
parent
2abe71313c
commit
80a061db38
@ -3,7 +3,7 @@
|
|||||||
[ngClass]="isProjected() ? 'projector-active' : 'projector-inactive'">
|
[ngClass]="isProjected() ? 'projector-active' : 'projector-inactive'">
|
||||||
<mat-icon>videocam</mat-icon>
|
<mat-icon>videocam</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<button type="button" *ngIf="menuItem" mat-menu-item (click)="onClick($event)"
|
<button type="button" *ngIf="menuItem" mat-menu-item (click)="onClick()"
|
||||||
[ngClass]="isProjected() ? 'projector-active' : 'projector-inactive'">
|
[ngClass]="isProjected() ? 'projector-active' : 'projector-inactive'">
|
||||||
<mat-icon>videocam</mat-icon>
|
<mat-icon>videocam</mat-icon>
|
||||||
<span translate>Project</span>
|
<span translate>Project</span>
|
||||||
|
@ -63,8 +63,10 @@ export class ProjectorButtonComponent implements OnInit {
|
|||||||
*
|
*
|
||||||
* @param event the click event
|
* @param event the click event
|
||||||
*/
|
*/
|
||||||
public onClick(event: Event): void {
|
public onClick(event?: Event): void {
|
||||||
|
if (event) {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
|
}
|
||||||
if (this.object) {
|
if (this.object) {
|
||||||
this.projectionDialogService.openProjectDialogFor(this.object);
|
this.projectionDialogService.openProjectDialogFor(this.object);
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 100% 100%;
|
background-size: 100% 100%;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
z-index: 1;
|
z-index: 9;
|
||||||
|
|
||||||
.projector-logo-main {
|
.projector-logo-main {
|
||||||
height: 50px;
|
height: 50px;
|
||||||
@ -59,7 +59,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 35px;
|
height: 35px;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
z-index: 1;
|
z-index: 9;
|
||||||
|
|
||||||
.footertext {
|
.footertext {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
@ -104,10 +104,8 @@
|
|||||||
<span translate>List of speakers</span>
|
<span translate>List of speakers</span>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button mat-menu-item *osPerms="'core.can_manage_projector'">
|
<os-projector-button *ngIf="block" [object]="block" [menuItem]="true"></os-projector-button>
|
||||||
<mat-icon>videocam</mat-icon>
|
|
||||||
<span translate>Project</span>
|
|
||||||
</button>
|
|
||||||
<div *osPerms="['motions.can_manage', 'motions.can_manage_metadata']">
|
<div *osPerms="['motions.can_manage', 'motions.can_manage_metadata']">
|
||||||
<button mat-menu-item (click)="toggleEditMode()">
|
<button mat-menu-item (click)="toggleEditMode()">
|
||||||
<mat-icon>edit</mat-icon>
|
<mat-icon>edit</mat-icon>
|
||||||
|
@ -41,7 +41,7 @@ export class MotionListComponent extends ListViewBaseComponent<ViewMotion, Motio
|
|||||||
/**
|
/**
|
||||||
* Columns to display in table when desktop view is available
|
* Columns to display in table when desktop view is available
|
||||||
*/
|
*/
|
||||||
public displayedColumnsDesktop: string[] = ['identifier', 'title', 'state', 'speakers'];
|
public displayedColumnsDesktop: string[] = ['identifier', 'title', 'state'];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Columns to display in table when mobile view is available
|
* Columns to display in table when mobile view is available
|
||||||
@ -237,6 +237,9 @@ export class MotionListComponent extends ListViewBaseComponent<ViewMotion, Motio
|
|||||||
if (this.isMultiSelect) {
|
if (this.isMultiSelect) {
|
||||||
columns = ['selector'].concat(columns);
|
columns = ['selector'].concat(columns);
|
||||||
}
|
}
|
||||||
|
if (this.operator.hasPerms('agenda.can_see')) {
|
||||||
|
columns = columns.concat(['speakers']);
|
||||||
|
}
|
||||||
return columns;
|
return columns;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,10 +1,17 @@
|
|||||||
<div *ngIf="data">
|
<div *ngIf="data">
|
||||||
|
<div class="slidetitle">
|
||||||
<h1>{{ data.data.title }}</h1>
|
<h1>{{ data.data.title }}</h1>
|
||||||
|
<h2><span translate>Motion block</span> – {{ data.data.motions.length }} <span translate>motions</span></h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div *ngFor="let motion of data.data.motions">
|
<div *ngFor="let motion of data.data.motions">
|
||||||
{{ getMotionTitle(motion) }}
|
<div class="ellipsis-overflow">
|
||||||
|
{{ motion.identifier }}: {{ motion.title }}
|
||||||
|
</div>
|
||||||
|
<div class="white ellipsis-overflow">
|
||||||
<mat-basic-chip *ngIf="motion.recommendation" disableRipple [ngClass]="getStateCssColor(motion)">
|
<mat-basic-chip *ngIf="motion.recommendation" disableRipple [ngClass]="getStateCssColor(motion)">
|
||||||
{{ getStateLabel(motion) }}
|
{{ getRecommendationLabel(motion) }}
|
||||||
</mat-basic-chip>
|
</mat-basic-chip>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -25,10 +25,10 @@ export class MotionBlockSlideComponent extends BaseSlideComponent<MotionBlockSli
|
|||||||
return StateCssClassMapping[motion.recommendation.css_class] || '';
|
return StateCssClassMapping[motion.recommendation.css_class] || '';
|
||||||
}
|
}
|
||||||
|
|
||||||
public getStateLabel(motion: MotionBlockSlideMotionRepresentation): string {
|
public getRecommendationLabel(motion: MotionBlockSlideMotionRepresentation): string {
|
||||||
let recommendation = this.translate.instant(motion.recommendation.name);
|
let recommendation = this.translate.instant(motion.recommendation.name);
|
||||||
if (motion.recommendation_extension) {
|
if (motion.recommendation_extension) {
|
||||||
recommendation += ' ' + motion.recommendation_extension;
|
recommendation += ' ' + this.motionRepo.solveExtensionPlaceHolder(motion.recommendation_extension);
|
||||||
}
|
}
|
||||||
return recommendation;
|
return recommendation;
|
||||||
}
|
}
|
||||||
|
@ -617,7 +617,7 @@ button.mat-menu-item.selected {
|
|||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 2em;
|
font-size: 1.8em;
|
||||||
line-height: 1.1em;
|
line-height: 1.1em;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
|
@ -234,7 +234,7 @@ def motion_block_slide(all_data: AllData, element: Dict[str, Any]) -> Dict[str,
|
|||||||
all_data, motion, motion["recommendation_id"]
|
all_data, motion, motion["recommendation_id"]
|
||||||
)
|
)
|
||||||
motion_object["recommendation"] = {
|
motion_object["recommendation"] = {
|
||||||
"name": recommendation["name"],
|
"name": recommendation["recommendation_label"],
|
||||||
"css_class": recommendation["css_class"],
|
"css_class": recommendation["css_class"],
|
||||||
}
|
}
|
||||||
if recommendation["show_recommendation_extension_field"]:
|
if recommendation["show_recommendation_extension_field"]:
|
||||||
|
Loading…
Reference in New Issue
Block a user