@bbc/react-transcript-editor
Version:
A React component to make transcribing audio and video easier and faster.
106 lines (87 loc) • 3.88 kB
JavaScript
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty(target, key, 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; }
/**
* TODO: work oin progress - currently not in use - needs, refactoring
* Bringing this module in 'react-keyboard-shortcuts'
* https://github.com/CurtisHumphrey/react-keyboard-shortcuts/blob/master/src/hotkeys.js
* @todo - remove _. dependency
* @todo - refactor to allow to update keybooard shortcuts
* @todo - raise PR for original repo
*/
import React from 'react';
import Mousetrap from 'mousetrap'; // import _ from 'lodash'
Mousetrap.prototype.stopCallback = () => false;
const default_options = {
hot_key_property_name: 'hot_keys'
};
const global_hotkeys = {};
const hotkey_get_handler = hotkey => (e, combo) => {
const handlers = global_hotkeys[hotkey];
let propagate = true;
handlers.forEach(({
handler
}) => {
if (!propagate) return;
propagate = handler(e, combo);
});
return propagate;
};
const load_hotkeys = handlers => {
// console.log(handlers);
Object.keys(handlers).map((response, hotkey) => {
if (global_hotkeys[hotkey] == null) {
global_hotkeys[hotkey] = [response];
Mousetrap.bind(hotkey, hotkey_get_handler(hotkey));
} else {
global_hotkeys[hotkey].push(response); // global_hotkeys[ hotkey ] = _.sortBy(global_hotkeys[ hotkey ], 'priority').reverse()
}
});
};
const unload_hotkeys = handlers => {
Object.keys(handlers).map((response, hotkey) => {
// _.remove(global_hotkeys[ hotkey ], response)
if (global_hotkeys[hotkey].length === 0) {
global_hotkeys[hotkey] = null;
Mousetrap.unbind(hotkey);
}
});
};
export const hotkeys = (Component, overwrites = {}) => {
const options = _objectSpread({}, default_options, overwrites);
class HotKeysWrapper extends React.PureComponent {
constructor(...args) {
super(...args);
_defineProperty(this, "getWrappedComponent", () => this.wrapped_component);
_defineProperty(this, "on_ref_update", ref => {
this.wrapped_component = ref;
});
}
componentDidMount() {
const handlers = this.wrapped_component[options.hot_key_property_name];
if (handlers == null) {
console.warn(`Component: ${Component.displayName} did not provide hotkey handlers`);
return;
}
load_hotkeys(handlers);
}
componentWillUnmount() {
const handlers = this.wrapped_component[options.hot_key_property_name];
if (handlers == null) return;
unload_hotkeys(handlers);
}
render() {
return React.createElement(Component, _extends({
ref: this.on_ref_update
}, this.props));
}
}
return HotKeysWrapper;
};
export default hotkeys;
export const hotkey_display = shortcut => {
const am_mac = window.navigator.appVersion.indexOf('Mac') !== -1;
if (!am_mac) return shortcut;
const mac_shortcut = shortcut.replace('alt', 'option');
return mac_shortcut.replace('meta', '⌘');
};