@storybook/api
Version:
Core Storybook API & Context
145 lines (116 loc) • 3.58 kB
JavaScript
import "core-js/modules/es.regexp.exec.js";
import "core-js/modules/es.string.match.js";
import "core-js/modules/es.array.includes.js";
import "core-js/modules/es.array.join.js";
import "core-js/modules/es.array.find.js";
import "core-js/modules/es.object.to-string.js";
import "core-js/modules/es.array.map.js";
import global from 'global'; // The shortcut is our JSON-ifiable representation of a shortcut combination
var navigator = global.navigator;
export var isMacLike = function isMacLike() {
return navigator && navigator.platform ? !!navigator.platform.match(/(Mac|iPhone|iPod|iPad)/i) : false;
};
export var controlOrMetaSymbol = function controlOrMetaSymbol() {
return isMacLike() ? '⌘' : 'ctrl';
};
export var controlOrMetaKey = function controlOrMetaKey() {
return isMacLike() ? 'meta' : 'control';
};
export var optionOrAltSymbol = function optionOrAltSymbol() {
return isMacLike() ? '⌥' : 'alt';
};
export var isShortcutTaken = function isShortcutTaken(arr1, arr2) {
return JSON.stringify(arr1) === JSON.stringify(arr2);
}; // Map a keyboard event to a keyboard shortcut
// NOTE: if we change the fields on the event that we need, we'll need to update the serialization in core/preview/start.js
export var eventToShortcut = function eventToShortcut(e) {
// Meta key only doesn't map to a shortcut
if (['Meta', 'Alt', 'Control', 'Shift'].includes(e.key)) {
return null;
}
var keys = [];
if (e.altKey) {
keys.push('alt');
}
if (e.ctrlKey) {
keys.push('control');
}
if (e.metaKey) {
keys.push('meta');
}
if (e.shiftKey) {
keys.push('shift');
}
if (e.key && e.key.length === 1 && e.key !== ' ') {
keys.push(e.key.toUpperCase());
}
if (e.key === ' ') {
keys.push('space');
}
if (e.key === 'Escape') {
keys.push('escape');
}
if (e.key === 'ArrowRight') {
keys.push('ArrowRight');
}
if (e.key === 'ArrowDown') {
keys.push('ArrowDown');
}
if (e.key === 'ArrowUp') {
keys.push('ArrowUp');
}
if (e.key === 'ArrowLeft') {
keys.push('ArrowLeft');
}
return keys.length > 0 ? keys : null;
};
export var shortcutMatchesShortcut = function shortcutMatchesShortcut(inputShortcut, shortcut) {
if (!inputShortcut || !shortcut) return false;
if (inputShortcut.join('') === 'shift/') inputShortcut.shift(); // shift is optional for `/`
if (inputShortcut.length !== shortcut.length) return false;
return !inputShortcut.find(function (key, i) {
return key !== shortcut[i];
});
}; // Should this keyboard event trigger this keyboard shortcut?
export var eventMatchesShortcut = function eventMatchesShortcut(e, shortcut) {
return shortcutMatchesShortcut(eventToShortcut(e), shortcut);
};
export var keyToSymbol = function keyToSymbol(key) {
if (key === 'alt') {
return optionOrAltSymbol();
}
if (key === 'control') {
return '⌃';
}
if (key === 'meta') {
return '⌘';
}
if (key === 'shift') {
return '⇧';
}
if (key === 'Enter' || key === 'Backspace' || key === 'Esc') {
return '';
}
if (key === 'escape') {
return '';
}
if (key === ' ') {
return 'SPACE';
}
if (key === 'ArrowUp') {
return '↑';
}
if (key === 'ArrowDown') {
return '↓';
}
if (key === 'ArrowLeft') {
return '←';
}
if (key === 'ArrowRight') {
return '→';
}
return key.toUpperCase();
}; // Display the shortcut as a human readable string
export var shortcutToHumanString = function shortcutToHumanString(shortcut) {
return shortcut.map(keyToSymbol).join(' ');
};