import { ADD_CARD, MOVE_CARD, REMOVE_CARD, RESTORE_LAYOUT } from '../actionTypes';
export function addCard(card, column, tab, index, size) {
return { type: ADD_CARD, card, column, tab, index, size };
}
/*
from: { column, index }
to: { column, index }
*/
export function moveCard(tab, size, from, to) {
return { type: MOVE_CARD, tab, size, from, to };
}
export function removeCard(card, column, tab, index, size) {
return { type: REMOVE_CARD, card, column, tab, index, size };
}
export function restoreDefault() {
return { type: RESTORE_LAYOUT };
}
|