mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* [ADF-4552] Rating component refactoring, add ability to unRate * [ADF-4552] RTL support added * [ADF-4552] Improve behaviour and styling structure in RTL languages * [ADF-4552] Improve behaviour and styling structure in RTL languages * [ADF-4552] Added refresh rating when the node Id input changes * [ADF-4552][ADF-4482] Refactor social component, add ability to unrate, add e2e automation * [ADF-4552][ADF-4482] Added unsibscribe from Observables, added css variables, removed unused class id's * [ADF-4552][ADF-4482] Improve structure and behaviour of e2e automation tests * [ADF-4552][ADF-4482] Improve structure and behaviour of e2e automation tests * [ADF-4552][ADF-4482] fix expected single space * [ADF-4552][ADF-4482] fix lint check failure * Fix circular dependency error
122 lines
3.5 KiB
TypeScript
122 lines
3.5 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2019 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { Component, EventEmitter, Input, OnChanges, Output, ViewEncapsulation } from '@angular/core';
|
|
import { RatingService } from './services/rating.service';
|
|
import { RatingEntry } from '@alfresco/js-api';
|
|
import { takeUntil } from 'rxjs/operators';
|
|
import { Subject } from 'rxjs';
|
|
|
|
@Component({
|
|
selector: 'adf-rating',
|
|
styleUrls: ['./rating.component.scss'],
|
|
templateUrl: './rating.component.html',
|
|
encapsulation: ViewEncapsulation.None
|
|
})
|
|
export class RatingComponent implements OnChanges {
|
|
|
|
/** Identifier of the node to apply the rating to. */
|
|
@Input()
|
|
nodeId: string;
|
|
|
|
average: number = 0;
|
|
|
|
ratingsCounter = 0;
|
|
|
|
ratingType: string = 'fiveStar';
|
|
|
|
ratingValue: number;
|
|
|
|
/** Emitted when the "vote" gets changed. */
|
|
@Output()
|
|
changeVote = new EventEmitter();
|
|
|
|
stars: Array<any> = [];
|
|
|
|
onDestroy$ = new Subject<boolean>();
|
|
|
|
constructor(private ratingService: RatingService) {
|
|
}
|
|
|
|
ngOnChanges() {
|
|
this.ratingService.getRating(this.nodeId, this.ratingType)
|
|
.pipe(takeUntil(this.onDestroy$))
|
|
.subscribe(
|
|
(ratingEntry: RatingEntry) => {
|
|
this.refreshRating(ratingEntry);
|
|
}
|
|
);
|
|
}
|
|
|
|
ngOnDestroy() {
|
|
this.onDestroy$.next(true);
|
|
this.onDestroy$.complete();
|
|
}
|
|
|
|
calculateStars() {
|
|
this.stars = [];
|
|
const roundedAverage = Math.round(this.average);
|
|
|
|
for (let i = 0; i < 5; i++) {
|
|
if (i < roundedAverage) {
|
|
this.stars.push({fill: true});
|
|
} else {
|
|
this.stars.push({fill: false});
|
|
}
|
|
}
|
|
}
|
|
|
|
updateVote(vote: number) {
|
|
if (this.ratingValue === vote) {
|
|
this.unRateItem();
|
|
} else {
|
|
this.rateItem(vote);
|
|
}
|
|
}
|
|
|
|
rateItem(vote: number) {
|
|
this.ratingService.postRating(this.nodeId, this.ratingType, vote)
|
|
.pipe(takeUntil(this.onDestroy$))
|
|
.subscribe(
|
|
(ratingEntry: RatingEntry) => {
|
|
this.refreshRating(ratingEntry);
|
|
}
|
|
);
|
|
}
|
|
|
|
unRateItem() {
|
|
this.ratingService.deleteRating(this.nodeId, this.ratingType).subscribe(
|
|
() => {
|
|
this.ratingService.getRating(this.nodeId, this.ratingType)
|
|
.pipe(takeUntil(this.onDestroy$))
|
|
.subscribe(
|
|
(ratingEntry: RatingEntry) => {
|
|
this.refreshRating(ratingEntry);
|
|
}
|
|
);
|
|
});
|
|
}
|
|
|
|
refreshRating(ratingEntry: RatingEntry) {
|
|
this.ratingValue = Number.parseFloat(ratingEntry.entry.myRating);
|
|
this.average = ratingEntry.entry.aggregate.average;
|
|
this.ratingsCounter = ratingEntry.entry.aggregate.numberOfRatings;
|
|
this.calculateStars();
|
|
this.changeVote.emit(this.average);
|
|
}
|
|
}
|