Skip to content
Snippets Groups Projects
Commit 753dec0f authored by rhenck's avatar rhenck
Browse files

[editor] Add logic to prohibit section widths bigger than their page's

parent 69054e2a
No related branches found
No related tags found
No related merge requests found
<div class="canvasBackground" fxFlex>
<div class="canvasFrame"
<div class="canvasFrame" [style.width.px]="page.width"
[style.padding.px]="page.margin"
[style.background-color]="page.backgroundColor">
<div cdkDropListGroup class="section-list">
......
......@@ -2,10 +2,11 @@ import {
Component, OnDestroy, OnInit
} from '@angular/core';
import { Subject } from 'rxjs';
import { takeUntil } from 'rxjs/operators';
import { UnitPageSection } from '../../../../../../../common/unit';
import { take, takeUntil } from 'rxjs/operators';
import { UnitPage, UnitPageSection } from '../../../../../../../common/unit';
import { UnitService } from '../../../../unit.service';
import { SelectionService } from '../../../../selection.service';
import { MessageService } from '../../../../../../../common/message.service';
// TODO besseres Layout for grid Spalten und Zeilen. Versuch auskommentiert, weil buggy.
......@@ -118,7 +119,9 @@ export class SectionPropertiesComponent implements OnInit, OnDestroy {
selectedPageSection!: UnitPageSection;
private ngUnsubscribe = new Subject<void>();
constructor(public selectionService: SelectionService, public unitService: UnitService) { }
constructor(public selectionService: SelectionService,
public unitService: UnitService,
protected messageService: MessageService) { }
ngOnInit(): void {
this.selectionService.selectedPageSection
......@@ -128,6 +131,22 @@ export class SectionPropertiesComponent implements OnInit, OnDestroy {
});
}
updateModel(property: string, value: string | number | boolean): void {
let selectedPage: UnitPage;
this.selectionService.selectedPage
.pipe(take(1))
.subscribe(_selectedPage => {
selectedPage = _selectedPage;
})
.unsubscribe();
if (property === 'width' && value > selectedPage!.width) {
this.messageService.showError('Darf nicht breiter als die Seite sein.');
} else {
this.unitService.updateSectionProperty(this.selectedPageSection, property, value);
}
}
ngOnDestroy(): void {
this.ngUnsubscribe.next();
this.ngUnsubscribe.complete();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment