client/src/selectors/syncSelectors.js
author Riwad Salim
Wed, 15 Aug 2018 23:39:02 +0200
changeset 145 5d2bc8c877ea
parent 134 be36eed5e6e0
child 168 ea92f4fe783d
permissions -rw-r--r--
Adding class for specific css in App, Navbar and SessionList components

// 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)