| author | salimr <riwad.salim@yahoo.fr> |
| Mon, 03 Sep 2018 20:02:14 +0200 | |
| changeset 154 | a28361bda28c |
| parent 134 | be36eed5e6e0 |
| child 168 | ea92f4fe783d |
| permissions | -rw-r--r-- |
// selectors linked to syncronization status import { ActionEnum } from '../constants'; export const getLastSync = state => state.getIn(['authStatus', 'lastSync']) || 0 export const isSynchronizing = state => state.getIn(['status', 'isSynchronizing']) export const isSynchronized = state => state.get('notes').every((n) => n.get('action')===ActionEnum.NONE) && state.get('sessions').every((n) => n.get('action')===ActionEnum.NONE)