29 lines
655 B
TypeScript
29 lines
655 B
TypeScript
import { Action } from 'redux';
|
|
|
|
import { IPreferences } from '../definitions';
|
|
import { SORT_PREFERENCES } from './actionsTypes';
|
|
|
|
interface ISetAllPreferences extends Action {
|
|
preferences: IPreferences;
|
|
}
|
|
|
|
interface ISetPreference extends Action {
|
|
preference: Partial<IPreferences>;
|
|
}
|
|
|
|
export type TActionSortPreferences = ISetAllPreferences & ISetPreference;
|
|
|
|
export function setAllPreferences(preferences: IPreferences): ISetAllPreferences {
|
|
return {
|
|
type: SORT_PREFERENCES.SET_ALL,
|
|
preferences
|
|
};
|
|
}
|
|
|
|
export function setPreference(preference: Partial<IPreferences>): ISetPreference {
|
|
return {
|
|
type: SORT_PREFERENCES.SET,
|
|
preference
|
|
};
|
|
}
|