Skip to content
Snippets Groups Projects
Commit 8ee52310 authored by rhenck's avatar rhenck
Browse files

[editor] Fix likert column edit dialog to set values only on save

parent 520a8780
No related branches found
No related tags found
No related merge requests found
...@@ -14,13 +14,12 @@ import { FileService } from '../../../../../common/file.service'; ...@@ -14,13 +14,12 @@ import { FileService } from '../../../../../common/file.service';
<input #imageUpload type="file" hidden (click)="loadImage()"> <input #imageUpload type="file" hidden (click)="loadImage()">
<button mat-raised-button (click)="imageUpload.click()">{{ 'loadImage' | translate }}</button> <button mat-raised-button (click)="imageUpload.click()">{{ 'loadImage' | translate }}</button>
<button mat-raised-button (click)="data.column.imgSrc = null">{{ 'removeImage' | translate }}</button> <button mat-raised-button (click)="data.column.imgSrc = null">{{ 'removeImage' | translate }}</button>
<img [src]="data.column.imgSrc" <img [src]="imgSrc"
[style.object-fit]="'scale-down'" [style.object-fit]="'scale-down'"
[width]="200"> [width]="200">
<mat-form-field appearance="fill"> <mat-form-field appearance="fill">
<mat-label>{{'position' | translate }}</mat-label> <mat-label>{{'position' | translate }}</mat-label>
<mat-select [value]="data.column.position" <mat-select #positionSelect [value]="data.column.position">
(selectionChange)="this.data.column.position = $event.value">
<mat-option *ngFor="let option of ['above', 'below']" <mat-option *ngFor="let option of ['above', 'below']"
[value]="option"> [value]="option">
{{ option | translate }} {{ option | translate }}
...@@ -31,8 +30,8 @@ import { FileService } from '../../../../../common/file.service'; ...@@ -31,8 +30,8 @@ import { FileService } from '../../../../../common/file.service';
<mat-dialog-actions> <mat-dialog-actions>
<button mat-button [mat-dialog-close]="{ <button mat-button [mat-dialog-close]="{
text: textInput.value, text: textInput.value,
imgSrc: data.column.imgSrc, imgSrc: imgSrc,
position: data.column.position }"> position: positionSelect.value }">
{{'save' | translate }} {{'save' | translate }}
</button> </button>
<button mat-button mat-dialog-close>{{'cancel' | translate }}</button> <button mat-button mat-dialog-close>{{'cancel' | translate }}</button>
...@@ -41,8 +40,9 @@ import { FileService } from '../../../../../common/file.service'; ...@@ -41,8 +40,9 @@ import { FileService } from '../../../../../common/file.service';
}) })
export class LikertColumnEditDialogComponent { export class LikertColumnEditDialogComponent {
constructor(@Inject(MAT_DIALOG_DATA) public data: { column: LikertColumn }) { } constructor(@Inject(MAT_DIALOG_DATA) public data: { column: LikertColumn }) { }
imgSrc: string | null = this.data.column.imgSrc;
async loadImage(): Promise<void> { async loadImage(): Promise<void> {
this.data.column.imgSrc = await FileService.loadImage(); this.imgSrc = await FileService.loadImage();
} }
} }
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