mirador
Version:
An open-source, web-based 'multi-up' viewer that supports zoom-pan-rotate functionality, ability to display/compare simple images, and images with annotations.
158 lines (127 loc) • 7.55 kB
JavaScript
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
import _regeneratorRuntime from "@babel/runtime/regenerator";
var _marked = /*#__PURE__*/_regeneratorRuntime.mark(importState),
_marked2 = /*#__PURE__*/_regeneratorRuntime.mark(importConfig),
_marked3 = /*#__PURE__*/_regeneratorRuntime.mark(fetchCollectionManifests),
_marked4 = /*#__PURE__*/_regeneratorRuntime.mark(appSaga);
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
import { all, call, put, takeEvery } from 'redux-saga/effects';
import { v4 as uuid } from 'uuid';
import { fetchManifests } from './iiif';
import { fetchWindowManifest } from './windows';
import { addWindow } from '../actions';
import ActionTypes from '../actions/action-types';
/** */
export function importState(action) {
return _regeneratorRuntime.wrap(function importState$(_context) {
while (1) {
switch (_context.prev = _context.next) {
case 0:
_context.next = 2;
return all([].concat(_toConsumableArray(Object.entries(action.state.windows || {}).map(function (_ref) {
var _ref2 = _slicedToArray(_ref, 2),
_ = _ref2[0],
window = _ref2[1];
return call(fetchWindowManifest, {
id: window.id,
payload: window
});
})), _toConsumableArray(Object.entries(action.state.manifests || {}).filter(function (_ref3) {
var _ref4 = _slicedToArray(_ref3, 2),
_ = _ref4[0],
manifest = _ref4[1];
return !manifest.json;
}).map(function (_ref5) {
var _ref6 = _slicedToArray(_ref5, 2),
_ = _ref6[0],
manifest = _ref6[1];
return call(fetchManifests, manifest.id);
}))));
case 2:
case "end":
return _context.stop();
}
}
}, _marked);
}
/** Add windows from the imported config */
export function importConfig(_ref7) {
var _ref7$config, thumbnailNavigation, windows, thunks;
return _regeneratorRuntime.wrap(function importConfig$(_context2) {
while (1) {
switch (_context2.prev = _context2.next) {
case 0:
_ref7$config = _ref7.config, thumbnailNavigation = _ref7$config.thumbnailNavigation, windows = _ref7$config.windows;
if (!(!windows || windows.length === 0)) {
_context2.next = 3;
break;
}
return _context2.abrupt("return");
case 3:
_context2.next = 5;
return all(windows.map(function (miradorWindow) {
var windowId = "window-".concat(uuid());
var manifestId = miradorWindow.manifestId || miradorWindow.loadedManifest;
return call(addWindow, _objectSpread({
// these are default values ...
id: windowId,
manifestId: manifestId,
thumbnailNavigationPosition: thumbnailNavigation && thumbnailNavigation.defaultPosition
}, miradorWindow));
}));
case 5:
thunks = _context2.sent;
_context2.next = 8;
return all(thunks.map(function (thunk) {
return put(thunk);
}));
case 8:
case "end":
return _context2.stop();
}
}
}, _marked2);
}
/** */
export function fetchCollectionManifests(action) {
var collectionPath, manifestId;
return _regeneratorRuntime.wrap(function fetchCollectionManifests$(_context3) {
while (1) {
switch (_context3.prev = _context3.next) {
case 0:
collectionPath = action.collectionPath, manifestId = action.manifestId;
_context3.next = 3;
return call.apply(void 0, [fetchManifests, manifestId].concat(_toConsumableArray(collectionPath)));
case 3:
case "end":
return _context3.stop();
}
}
}, _marked3);
}
/** */
export default function appSaga() {
return _regeneratorRuntime.wrap(function appSaga$(_context4) {
while (1) {
switch (_context4.prev = _context4.next) {
case 0:
_context4.next = 2;
return all([takeEvery(ActionTypes.IMPORT_MIRADOR_STATE, importState), takeEvery(ActionTypes.IMPORT_CONFIG, importConfig), takeEvery(ActionTypes.SHOW_COLLECTION_DIALOG, fetchCollectionManifests)]);
case 2:
case "end":
return _context4.stop();
}
}
}, _marked4);
}