spee.ch/client/sagas/file.js

36 lines
1.3 KiB
JavaScript
Raw Normal View History

import {call, put, select, takeLatest} from 'redux-saga/effects';
2018-02-08 23:17:03 +01:00
import * as actions from 'constants/show_action_types';
import { updateFileAvailability, updateDisplayAssetError } from 'actions/show';
import { UNAVAILABLE, AVAILABLE } from 'constants/asset_display_states';
import { checkFileAvailability, triggerClaimGet } from 'api/fileApi';
import { selectSiteHost } from 'selectors/site';
2018-02-08 23:17:03 +01:00
function * retrieveFile (action) {
2018-02-08 23:17:03 +01:00
const name = action.data.name;
const claimId = action.data.claimId;
const host = yield select(selectSiteHost);
2018-02-08 23:17:03 +01:00
// see if the file is available
let isAvailable;
2018-02-08 23:17:03 +01:00
try {
({ data: isAvailable } = yield call(checkFileAvailability, claimId, host, name));
2018-02-08 23:17:03 +01:00
} catch (error) {
return yield put(updateDisplayAssetError(error.message));
};
if (isAvailable) {
yield put(updateDisplayAssetError(null));
2018-02-08 23:17:03 +01:00
return yield put(updateFileAvailability(AVAILABLE));
}
yield put(updateFileAvailability(UNAVAILABLE));
// initiate get request for the file
try {
yield call(triggerClaimGet, claimId, host, name);
2018-02-08 23:17:03 +01:00
} catch (error) {
return yield put(updateDisplayAssetError(error.message));
};
yield put(updateFileAvailability(AVAILABLE));
};
export function * watchFileIsRequested () {
2018-02-08 23:17:03 +01:00
yield takeLatest(actions.FILE_REQUESTED, retrieveFile);
};