strapi-plugin-content-manager
Version:
A powerful UI to easily manage your data.
27 lines (25 loc) • 1.46 kB
JavaScript
/**
*
* ListPage constants
*
*
*/
export const ADD_FILTER = 'ContentManager/ListPage/ADD_FILTER';
export const CHANGE_PARAMS = 'ContentManager/ListPage/CHANGE_PARAMS';
export const DELETE_DATA = 'ContentManager/ListPage/DELETE_DATA';
export const DELETE_DATA_SUCCESS = 'ContentManager/ListPage/DELETE_DATA_SUCCESS';
export const DELETE_SEVERAL_DATA = 'ContentManager/ListPage/DELETE_SEVERAL_DATA';
export const DELETE_SEVERAL_DATA_SUCCESS = 'ContentManager/ListPage/DELETE_SEVERAL_DATA_SUCCESS';
export const GET_DATA = 'ContentManager/ListPage/GET_DATA';
export const GET_DATA_SUCCEEDED = 'ContentManager/ListPage/GET_DATA_SUCCEEDED';
export const ON_CHANGE = 'ContentManager/ListPage/ON_CHANGE';
export const ON_CLICK_REMOVE = 'ContentManager/ListPage/ON_CLICK_REMOVE';
export const ON_CLICK_SELECT = 'ContentManager/ListPage/ON_CLICK_SELECT';
export const ON_CLICK_SELECT_ALL = 'ContentManager/ListPage/ON_CLICK_SELECT_ALL';
export const ON_TOGGLE_DELETE_ALL = 'ContentManager/ListPage/ON_TOGGLE_DELETE_ALL';
export const ON_TOGGLE_FILTERS = 'ContentManager/ListPage/ON_TOGGLE_FILTERS';
export const OPEN_FILTERS_WITH_SELECTION = 'ContentManager/ListPage/OPEN_FILTERS_WITH_SELECTION';
export const REMOVE_ALL_FILTERS = 'ContentManager/ListPage/REMOVE_ALL_FILTERS';
export const REMOVE_FILTER = 'ContentManager/ListPage/REMOVE_FILTER';
export const SET_PARAMS = 'ContentManager/ListPage/SET_PARAMS';
export const SUBMIT = 'ContentManager/ListPage/SUBMIT';