All files / nexshop-web-contents/src/action popup.js

100% Statements 5/5
100% Branches 6/6
100% Functions 2/2
100% Lines 5/5
1 2 3 4 5 6 7 8 9 10 11 12 131x 1x     5x 5x       1x      
export const OPEN_POPUP = 'OPEN_POPUP';
export const CLOSE_POPUP = 'CLOSE_POPUP';
 
export function openPopup(name, {top, left, uuid} = {}) {
    let action = {type: OPEN_POPUP, name};
    return top && left && uuid ? {...action, position: {top, left, uuid}} : action;
}
 
export function closePopup() {
    return {
        type: CLOSE_POPUP
    }
}