mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
2.7 KiB
114 lines
2.7 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, forwardRef, Input } from '@angular/core';
|
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
|
|
import { StatefulControlComponent, Types } from '@app/framework/internal';
|
|
|
|
export const SQX_STARS_CONTROL_VALUE_ACCESSOR: any = {
|
|
provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => StarsComponent), multi: true
|
|
};
|
|
|
|
interface State {
|
|
stars: number;
|
|
starsArray: ReadonlyArray<number>;
|
|
|
|
value: number | null;
|
|
}
|
|
|
|
@Component({
|
|
selector: 'sqx-stars',
|
|
styleUrls: ['./stars.component.scss'],
|
|
templateUrl: './stars.component.html',
|
|
providers: [SQX_STARS_CONTROL_VALUE_ACCESSOR],
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class StarsComponent extends StatefulControlComponent<State, number | null> {
|
|
private maximumStarsValue = 5;
|
|
|
|
@Input()
|
|
public set maximumStars(value: number) {
|
|
const maxStars: number = Types.isNumber(value) ? value : 5;
|
|
|
|
if (this.maximumStarsValue !== maxStars) {
|
|
this.maximumStarsValue = value;
|
|
|
|
const starsArray: number[] = [];
|
|
|
|
for (let i = 1; i <= maxStars; i++) {
|
|
starsArray.push(i);
|
|
}
|
|
|
|
this.next(s => ({ ...s, starsArray }));
|
|
}
|
|
}
|
|
|
|
public get maximumStars() {
|
|
return this.maximumStarsValue;
|
|
}
|
|
|
|
constructor(changeDetector: ChangeDetectorRef) {
|
|
super(changeDetector, {
|
|
stars: -1,
|
|
starsArray: [1, 2, 3, 4, 5],
|
|
value: 1
|
|
});
|
|
}
|
|
|
|
public writeValue(obj: any) {
|
|
const value = Types.isNumber(obj) ? obj : 0;
|
|
|
|
this.next(s => ({ ...s, stars: value, value }));
|
|
}
|
|
|
|
public setPreview(stars: number) {
|
|
if (this.snapshot.isDisabled) {
|
|
return;
|
|
}
|
|
|
|
this.next(s => ({ ...s, stars }));
|
|
}
|
|
|
|
public stopPreview() {
|
|
if (this.snapshot.isDisabled) {
|
|
return;
|
|
}
|
|
|
|
this.next(s => ({ ...s, stars: s.value || 0 }));
|
|
}
|
|
|
|
public reset() {
|
|
if (this.snapshot.isDisabled) {
|
|
return false;
|
|
}
|
|
|
|
if (this.snapshot.value) {
|
|
this.next(s => ({ ...s, stars: -1, value: null }));
|
|
|
|
this.callChange(null);
|
|
this.callTouched();
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public setValue(value: number) {
|
|
if (this.snapshot.isDisabled) {
|
|
return false;
|
|
}
|
|
|
|
if (this.snapshot.value !== value) {
|
|
this.next(s => ({ ...s, stars: value, value }));
|
|
|
|
this.callChange(value);
|
|
this.callTouched();
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|