Merge Angular 16 Irish Monitor to develop #33
|
@ -277,7 +277,7 @@ export class RoleUsersComponent implements OnInit, OnDestroy, OnChanges {
|
|||
if (!this.pending.includes(response.email)) {
|
||||
this.pending.push(response.email);
|
||||
}
|
||||
if(this.notificationFn) {
|
||||
if(this.notificationFn && properties.notificationsAPIURL) {
|
||||
return this.notificationService.sendNotification(this.notificationFn(this.name, response.email, this.role, response.invitation)).pipe(map(notification => {
|
||||
return notification;
|
||||
}), tap(() => {
|
||||
|
|
|
@ -43,6 +43,7 @@ import {NotifyFormComponent} from "../../notifications/notify-form/notify-form.c
|
|||
import {NotificationService} from "../../notifications/notification.service";
|
||||
import {NotificationHandler} from "../../utils/notification-handler";
|
||||
import {IndicatorStakeholderBaseComponent} from "../utils/stakeholder-base.component";
|
||||
import {properties} from "../../../../environments/environment";
|
||||
|
||||
declare var UIkit;
|
||||
declare var copy;
|
||||
|
@ -845,6 +846,7 @@ export class IndicatorsComponent extends IndicatorStakeholderBaseComponent imple
|
|||
this.setCharts();
|
||||
this.setNumbers();
|
||||
this.initReorder();
|
||||
if(properties.notificationsAPIURL) {
|
||||
this.notification = NotificationUtils.importIndicators(this.user.fullname, this.stakeholder.alias);
|
||||
this.notification.entity = this.stakeholder.topics[this.topicIndex].categories[this.categoryIndex].subCategories[this.index]._id;
|
||||
this.notification.name = this.user.firstname;
|
||||
|
@ -872,6 +874,7 @@ export class IndicatorsComponent extends IndicatorStakeholderBaseComponent imple
|
|||
stakeholders.forEach(value => {
|
||||
this.notification.groups.push(Role.manager(value.type, value.alias))
|
||||
});
|
||||
|
||||
this.notificationService.sendNotification(this.notification).subscribe(notification => {
|
||||
NotificationHandler.rise('A notification has been <b>sent</b> successfully');
|
||||
}, error => {
|
||||
|
@ -879,6 +882,7 @@ export class IndicatorsComponent extends IndicatorStakeholderBaseComponent imple
|
|||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
this.editing = false;
|
||||
this.importLoading = false;
|
||||
NotificationHandler.rise('Indicators have been <b>imported</b> successfully!');
|
||||
|
|
|
@ -109,7 +109,7 @@ export class NotifyFormComponent extends BaseComponent implements OnInit {
|
|||
}
|
||||
|
||||
sendNotification(notification: Notification = null) {
|
||||
if (this.message) {
|
||||
if (this.message && this.properties.notificationsAPIURL) {
|
||||
if(notification === null) {
|
||||
notification = new Notification('CUSTOM', [this.service], null, null);
|
||||
notification.groups = this.parseGroups();
|
||||
|
|
|
@ -44,7 +44,7 @@ export class UserManagementService {
|
|||
return this.getUserInfoSubject.asObservable();
|
||||
}
|
||||
|
||||
public getUserInfoAt(index = 1): Observable<User> {
|
||||
public getUserInfoAt(index = 0): Observable<User> {
|
||||
return this.http.get<User>((isArray(properties.loginServiceURL)?properties.loginServiceURL[index]:properties.loginServiceURL) +
|
||||
UserManagementService.USERINFO, CustomOptions.registryOptions()).pipe(map(userInfo => {
|
||||
return new User(userInfo);
|
||||
|
@ -54,7 +54,6 @@ export class UserManagementService {
|
|||
|
||||
public updateUserInfo(resolve: Function = null) {
|
||||
this.subscription = this.getUserInfoAt().subscribe(user => {
|
||||
// console.log(user)
|
||||
this.getUserInfoSubject.next(user);
|
||||
if (resolve) {
|
||||
resolve();
|
||||
|
@ -114,7 +113,6 @@ export class UserManagementService {
|
|||
}
|
||||
|
||||
setURL(url: string | string[]) {
|
||||
console.log(url);
|
||||
if(isArray(url)) {
|
||||
let redirectURL = '';
|
||||
url.forEach((url, index) => {
|
||||
|
|
Loading…
Reference in New Issue