1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
/*
* SonarQube
* Copyright (C) 2009-2017 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
// @flow
import { combineReducers } from 'redux';
import uniqBy from 'lodash/uniqBy';
import uniqWith from 'lodash/uniqWith';
export type Notification = {
channel: string,
type: string,
project?: string,
projectName?: string,
organization?: string
};
export type NotificationsState = Array<Notification>;
export type ChannelsState = Array<string>;
export type TypesState = Array<string>;
type AddNotificationAction = {
type: 'ADD_NOTIFICATION',
notification: Notification
};
type RemoveNotificationAction = {
type: 'REMOVE_NOTIFICATION',
notification: Notification
};
type ReceiveNotificationsAction = {
type: 'RECEIVE_NOTIFICATIONS',
notifications: NotificationsState,
channels: ChannelsState,
globalTypes: TypesState,
perProjectTypes: TypesState
};
type Action = AddNotificationAction | RemoveNotificationAction | ReceiveNotificationsAction;
export const addNotification = (notification: Notification): AddNotificationAction => ({
type: 'ADD_NOTIFICATION',
notification
});
export const removeNotification = (notification: Notification): RemoveNotificationAction => ({
type: 'REMOVE_NOTIFICATION',
notification
});
export const receiveNotifications = (
notifications: NotificationsState,
channels: ChannelsState,
globalTypes: TypesState,
perProjectTypes: TypesState
): ReceiveNotificationsAction => ({
type: 'RECEIVE_NOTIFICATIONS',
notifications,
channels,
globalTypes,
perProjectTypes
});
const onAddNotification = (state: NotificationsState, notification: Notification) => {
const isNotificationsEqual = (a: Notification, b: Notification) => (
a.channel === b.channel && a.type === b.type && a.project === b.project
);
return uniqWith([...state, notification], isNotificationsEqual);
};
const onRemoveNotification = (state: NotificationsState, notification: Notification) => {
return state.filter(n =>
n.channel !== notification.channel ||
n.type !== notification.type ||
n.project !== notification.project
);
};
const onReceiveNotifications = (state: NotificationsState, notifications: NotificationsState) => {
return [...notifications];
};
const notifications = (state: NotificationsState = [], action: Action) => {
switch (action.type) {
case 'ADD_NOTIFICATION':
return onAddNotification(state, action.notification);
case 'REMOVE_NOTIFICATION':
return onRemoveNotification(state, action.notification);
case 'RECEIVE_NOTIFICATIONS':
return onReceiveNotifications(state, action.notifications);
default:
return state;
}
};
const channels = (state: ChannelsState = [], action: Action) => {
if (action.type === 'RECEIVE_NOTIFICATIONS') {
return action.channels;
} else {
return state;
}
};
const globalTypes = (state: TypesState = [], action: Action) => {
if (action.type === 'RECEIVE_NOTIFICATIONS') {
return action.globalTypes;
} else {
return state;
}
};
const perProjectTypes = (state: TypesState = [], action: Action) => {
if (action.type === 'RECEIVE_NOTIFICATIONS') {
return action.perProjectTypes;
} else {
return state;
}
};
type State = {
notifications: NotificationsState,
channels: ChannelsState,
globalTypes: TypesState,
perProjectTypes: TypesState
};
export default combineReducers({ notifications, channels, globalTypes, perProjectTypes });
export const getGlobal = (state: State): NotificationsState => (
state.notifications.filter(n => !n.project)
);
export const getProjects = (state: State): Array<string> => (
uniqBy(
state.notifications.filter(n => n.project).map(n => ({
key: n.project,
name: n.projectName,
organization: n.organization
})),
project => project.key
)
);
export const getForProject = (state: State, project: string): NotificationsState => (
state.notifications.filter(n => n.project === project)
);
export const getChannels = (state: State): ChannelsState => state.channels;
export const getGlobalTypes = (state: State): TypesState => state.globalTypes;
export const getPerProjectTypes = (state: State): TypesState => state.perProjectTypes;
|