153 lines
3.4 KiB
JavaScript
153 lines
3.4 KiB
JavaScript
|
'use strict';
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.reducer = exports.actions = undefined;
|
||
|
|
||
|
var _lodash;
|
||
|
|
||
|
function _load_lodash() {
|
||
|
return _lodash = _interopRequireDefault(require('lodash'));
|
||
|
}
|
||
|
|
||
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||
|
|
||
|
const INITIAL_PROJECT_STATE = {
|
||
|
count: 0,
|
||
|
color: '#595C68',
|
||
|
info: [],
|
||
|
warn: [],
|
||
|
error: []
|
||
|
};
|
||
|
|
||
|
const GLOBAL = 'global';
|
||
|
|
||
|
const actions = exports.actions = {
|
||
|
// logLevel = 'warning', 'error', or 'info'
|
||
|
add: (projectRoot, id, message, tag, logLevel) => {
|
||
|
return {
|
||
|
type: 'ADD_NOTIFICATION',
|
||
|
projectRoot,
|
||
|
id,
|
||
|
message,
|
||
|
tag,
|
||
|
logLevel
|
||
|
};
|
||
|
},
|
||
|
|
||
|
clear: (projectRoot, id) => {
|
||
|
return {
|
||
|
type: 'CLEAR_NOTIFICATION',
|
||
|
projectRoot,
|
||
|
id
|
||
|
};
|
||
|
},
|
||
|
|
||
|
addGlobal: (id, message, tag, logLevel) => {
|
||
|
return {
|
||
|
type: 'ADD_NOTIFICATION',
|
||
|
projectRoot: GLOBAL,
|
||
|
id,
|
||
|
message,
|
||
|
tag,
|
||
|
logLevel
|
||
|
};
|
||
|
},
|
||
|
|
||
|
clearGlobal: id => {
|
||
|
return {
|
||
|
type: 'CLEAR_NOTIFICATION',
|
||
|
projectRoot: GLOBAL,
|
||
|
id
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const reducer = exports.reducer = (state = {}, action) => {
|
||
|
switch (action.type) {
|
||
|
case 'ADD_NOTIFICATION':
|
||
|
return _addNotification(state, action);
|
||
|
case 'CLEAR_NOTIFICATION':
|
||
|
return _clearNotification(state, action);
|
||
|
default:
|
||
|
return state;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
function _addNotification(state, action) {
|
||
|
let { projectRoot, id, message, tag, logLevel } = action;
|
||
|
|
||
|
if (logLevel !== 'info' && logLevel !== 'warn' && logLevel !== 'error') {
|
||
|
logLevel = 'info';
|
||
|
}
|
||
|
|
||
|
let projectObject = state[projectRoot] || INITIAL_PROJECT_STATE;
|
||
|
projectObject = JSON.parse(JSON.stringify(projectObject));
|
||
|
let arrayOfIssues = projectObject[logLevel];
|
||
|
let index = (_lodash || _load_lodash()).default.findIndex(arrayOfIssues, { id });
|
||
|
if (index === -1) {
|
||
|
arrayOfIssues.push({
|
||
|
id,
|
||
|
message,
|
||
|
tag,
|
||
|
count: 0
|
||
|
});
|
||
|
} else {
|
||
|
arrayOfIssues[index] = {
|
||
|
id,
|
||
|
message,
|
||
|
tag,
|
||
|
count: arrayOfIssues[index].count + 1
|
||
|
};
|
||
|
}
|
||
|
|
||
|
// TODO: switch to immutable.js
|
||
|
let newState = JSON.parse(JSON.stringify(state));
|
||
|
projectObject[logLevel] = arrayOfIssues;
|
||
|
_setCount(projectObject);
|
||
|
newState[projectRoot] = projectObject;
|
||
|
return newState;
|
||
|
}
|
||
|
|
||
|
function _clearNotification(state, action) {
|
||
|
let { projectRoot, id } = action;
|
||
|
|
||
|
if (!state[projectRoot]) {
|
||
|
return state;
|
||
|
}
|
||
|
|
||
|
let projectObject = state[projectRoot];
|
||
|
let newProjectObject = {};
|
||
|
(_lodash || _load_lodash()).default.forEach(projectObject, function (array, key) {
|
||
|
if (Array.isArray(array)) {
|
||
|
(_lodash || _load_lodash()).default.remove(array, notification => {
|
||
|
if (notification.id === id) {
|
||
|
console.log('REMOVED' + id);
|
||
|
}
|
||
|
return notification.id === id;
|
||
|
});
|
||
|
|
||
|
newProjectObject[key] = array;
|
||
|
}
|
||
|
});
|
||
|
|
||
|
_setCount(newProjectObject);
|
||
|
// TODO: switch to immutable.js
|
||
|
let newState = JSON.parse(JSON.stringify(state));
|
||
|
newState[projectRoot] = newProjectObject;
|
||
|
return newState;
|
||
|
}
|
||
|
|
||
|
function _setCount(projectObject) {
|
||
|
projectObject.count = projectObject.warn.length + projectObject.error.length;
|
||
|
if (projectObject.count === 0) {
|
||
|
projectObject.color = '#595C68';
|
||
|
} else {
|
||
|
projectObject.color = projectObject.error.length > 0 ? '#F6345D' : '#FF8C00';
|
||
|
}
|
||
|
|
||
|
return projectObject;
|
||
|
}
|
||
|
//# sourceMappingURL=../../__sourcemaps__/state/reducers/notifications.js.map
|