UNPKG

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.

66 lines (58 loc) 2.2 kB
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 { v4 as uuid } from 'uuid'; import ActionTypes from './action-types'; /** * importConfig - action creator * * @param {Object} config * @memberof ActionCreators */ export function importConfig(config) { return { config: config, type: ActionTypes.IMPORT_CONFIG }; } /** * setConfig - action creator * * @param {Object} config * @memberof ActionCreators */ export function setConfig(config) { return { config: config, type: ActionTypes.SET_CONFIG }; } /** * updateConfig - action creator * * @param {Object} config * @memberof ActionCreators */ export function updateConfig(config) { return { config: config, type: ActionTypes.UPDATE_CONFIG }; } /** * importMiradorState - action creator * * @param {Object} config * @memberof ActionCreators */ export function importMiradorState(state) { var newState = _objectSpread(_objectSpread({}, state), {}, { workspace: _objectSpread(_objectSpread({}, state.workspace), {}, { id: uuid() }) }); return { state: newState, type: ActionTypes.IMPORT_MIRADOR_STATE }; }