@wordpress/keycodes
Advanced tools
Comparing version
@@ -1,3 +0,3 @@ | ||
import _defineProperty from "@babel/runtime-corejs2/helpers/defineProperty"; | ||
import _toConsumableArray from "@babel/runtime-corejs2/helpers/toConsumableArray"; | ||
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty"; | ||
import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray"; | ||
@@ -19,2 +19,7 @@ /** | ||
import { get, mapValues, includes, capitalize } from 'lodash'; | ||
/** | ||
* Internal dependencies | ||
*/ | ||
import { isAppleOS } from './platform'; | ||
export var BACKSPACE = 8; | ||
@@ -36,30 +41,17 @@ export var TAB = 9; | ||
export var SHIFT = 'shift'; | ||
/** | ||
* Return true if platform is MacOS. | ||
* | ||
* @param {Object} _window window object by default; used for DI testing. | ||
* | ||
* @return {boolean} True if MacOS; false otherwise. | ||
*/ | ||
export function isMacOS() { | ||
var _window = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : window; | ||
return _window.navigator.platform.indexOf('Mac') !== -1; | ||
} | ||
var modifiers = { | ||
primary: function primary(_isMac) { | ||
return _isMac() ? [COMMAND] : [CTRL]; | ||
primary: function primary(_isApple) { | ||
return _isApple() ? [COMMAND] : [CTRL]; | ||
}, | ||
primaryShift: function primaryShift(_isMac) { | ||
return _isMac() ? [SHIFT, COMMAND] : [CTRL, SHIFT]; | ||
primaryShift: function primaryShift(_isApple) { | ||
return _isApple() ? [SHIFT, COMMAND] : [CTRL, SHIFT]; | ||
}, | ||
primaryAlt: function primaryAlt(_isMac) { | ||
return _isMac() ? [ALT, COMMAND] : [CTRL, ALT]; | ||
primaryAlt: function primaryAlt(_isApple) { | ||
return _isApple() ? [ALT, COMMAND] : [CTRL, ALT]; | ||
}, | ||
secondary: function secondary(_isMac) { | ||
return _isMac() ? [SHIFT, ALT, COMMAND] : [CTRL, SHIFT, ALT]; | ||
secondary: function secondary(_isApple) { | ||
return _isApple() ? [SHIFT, ALT, COMMAND] : [CTRL, SHIFT, ALT]; | ||
}, | ||
access: function access(_isMac) { | ||
return _isMac() ? [CTRL, ALT] : [SHIFT, ALT]; | ||
access: function access(_isApple) { | ||
return _isApple() ? [CTRL, ALT] : [SHIFT, ALT]; | ||
}, | ||
@@ -89,5 +81,5 @@ ctrl: function ctrl() { | ||
return function (character) { | ||
var _isMac = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : isMacOS; | ||
var _isApple = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : isAppleOS; | ||
return _toConsumableArray(modifier(_isMac)).concat([character.toLowerCase()]).join('+'); | ||
return _toConsumableArray(modifier(_isApple)).concat([character.toLowerCase()]).join('+'); | ||
}; | ||
@@ -106,11 +98,11 @@ }); | ||
var _isMac = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : isMacOS; | ||
var _isApple = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : isAppleOS; | ||
var isMac = _isMac(); | ||
var isMac = _isApple(); | ||
var replacementKeyMap = (_replacementKeyMap = {}, _defineProperty(_replacementKeyMap, ALT, isMac ? 'Option' : 'Alt'), _defineProperty(_replacementKeyMap, CTRL, 'Ctrl'), _defineProperty(_replacementKeyMap, COMMAND, '⌘'), _defineProperty(_replacementKeyMap, SHIFT, 'Shift'), _replacementKeyMap); | ||
var modifierKeys = modifier(_isMac).reduce(function (accumulator, key) { | ||
var replacementKey = get(replacementKeyMap, key, key); // When the mac's clover symbol is used, do not display a + afterwards | ||
var replacementKeyMap = (_replacementKeyMap = {}, _defineProperty(_replacementKeyMap, ALT, isMac ? '⌥' : 'Alt'), _defineProperty(_replacementKeyMap, CTRL, isMac ? '^' : 'Ctrl'), _defineProperty(_replacementKeyMap, COMMAND, '⌘'), _defineProperty(_replacementKeyMap, SHIFT, isMac ? '⇧' : 'Shift'), _replacementKeyMap); | ||
var modifierKeys = modifier(_isApple).reduce(function (accumulator, key) { | ||
var replacementKey = get(replacementKeyMap, key, key); // If on the Mac, adhere to platform convention and don't show plus between keys. | ||
if (replacementKey === '⌘') { | ||
if (isMac) { | ||
return _toConsumableArray(accumulator).concat([replacementKey]); | ||
@@ -134,5 +126,5 @@ } | ||
return function (character) { | ||
var _isMac = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : isMacOS; | ||
var _isApple = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : isAppleOS; | ||
return sequence(character, _isMac).join(''); | ||
return sequence(character, _isApple).join(''); | ||
}; | ||
@@ -151,5 +143,5 @@ }); | ||
return function (event, character) { | ||
var _isMac = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : isMacOS; | ||
var _isApple = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : isAppleOS; | ||
var mods = getModifiers(_isMac); | ||
var mods = getModifiers(_isApple); | ||
@@ -156,0 +148,0 @@ if (!mods.every(function (key) { |
"use strict"; | ||
var _interopRequireDefault = require("@babel/runtime-corejs2/helpers/interopRequireDefault"); | ||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); | ||
require("core-js/modules/es7.array.includes"); | ||
require("core-js/modules/es6.string.includes"); | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.isMacOS = isMacOS; | ||
exports.isKeyboardEvent = exports.displayShortcut = exports.displayShortcutList = exports.rawShortcut = exports.SHIFT = exports.COMMAND = exports.CTRL = exports.ALT = exports.F10 = exports.DELETE = exports.DOWN = exports.RIGHT = exports.UP = exports.LEFT = exports.SPACE = exports.ESCAPE = exports.ENTER = exports.TAB = exports.BACKSPACE = void 0; | ||
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/defineProperty")); | ||
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty")); | ||
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/toConsumableArray")); | ||
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray")); | ||
var _lodash = require("lodash"); | ||
var _platform = require("./platform"); | ||
/** | ||
@@ -35,2 +32,6 @@ * Note: The order of the modifier keys in many of the [foo]Shortcut() | ||
*/ | ||
/** | ||
* Internal dependencies | ||
*/ | ||
var BACKSPACE = 8; | ||
@@ -66,33 +67,18 @@ exports.BACKSPACE = BACKSPACE; | ||
var SHIFT = 'shift'; | ||
/** | ||
* Return true if platform is MacOS. | ||
* | ||
* @param {Object} _window window object by default; used for DI testing. | ||
* | ||
* @return {boolean} True if MacOS; false otherwise. | ||
*/ | ||
exports.SHIFT = SHIFT; | ||
function isMacOS() { | ||
var _window = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : window; | ||
return _window.navigator.platform.indexOf('Mac') !== -1; | ||
} | ||
var modifiers = { | ||
primary: function primary(_isMac) { | ||
return _isMac() ? [COMMAND] : [CTRL]; | ||
primary: function primary(_isApple) { | ||
return _isApple() ? [COMMAND] : [CTRL]; | ||
}, | ||
primaryShift: function primaryShift(_isMac) { | ||
return _isMac() ? [SHIFT, COMMAND] : [CTRL, SHIFT]; | ||
primaryShift: function primaryShift(_isApple) { | ||
return _isApple() ? [SHIFT, COMMAND] : [CTRL, SHIFT]; | ||
}, | ||
primaryAlt: function primaryAlt(_isMac) { | ||
return _isMac() ? [ALT, COMMAND] : [CTRL, ALT]; | ||
primaryAlt: function primaryAlt(_isApple) { | ||
return _isApple() ? [ALT, COMMAND] : [CTRL, ALT]; | ||
}, | ||
secondary: function secondary(_isMac) { | ||
return _isMac() ? [SHIFT, ALT, COMMAND] : [CTRL, SHIFT, ALT]; | ||
secondary: function secondary(_isApple) { | ||
return _isApple() ? [SHIFT, ALT, COMMAND] : [CTRL, SHIFT, ALT]; | ||
}, | ||
access: function access(_isMac) { | ||
return _isMac() ? [CTRL, ALT] : [SHIFT, ALT]; | ||
access: function access(_isApple) { | ||
return _isApple() ? [CTRL, ALT] : [SHIFT, ALT]; | ||
}, | ||
@@ -122,5 +108,5 @@ ctrl: function ctrl() { | ||
return function (character) { | ||
var _isMac = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : isMacOS; | ||
var _isApple = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _platform.isAppleOS; | ||
return (0, _toConsumableArray2.default)(modifier(_isMac)).concat([character.toLowerCase()]).join('+'); | ||
return (0, _toConsumableArray2.default)(modifier(_isApple)).concat([character.toLowerCase()]).join('+'); | ||
}; | ||
@@ -140,11 +126,11 @@ }); | ||
var _isMac = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : isMacOS; | ||
var _isApple = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _platform.isAppleOS; | ||
var isMac = _isMac(); | ||
var isMac = _isApple(); | ||
var replacementKeyMap = (_replacementKeyMap = {}, (0, _defineProperty2.default)(_replacementKeyMap, ALT, isMac ? 'Option' : 'Alt'), (0, _defineProperty2.default)(_replacementKeyMap, CTRL, 'Ctrl'), (0, _defineProperty2.default)(_replacementKeyMap, COMMAND, '⌘'), (0, _defineProperty2.default)(_replacementKeyMap, SHIFT, 'Shift'), _replacementKeyMap); | ||
var modifierKeys = modifier(_isMac).reduce(function (accumulator, key) { | ||
var replacementKey = (0, _lodash.get)(replacementKeyMap, key, key); // When the mac's clover symbol is used, do not display a + afterwards | ||
var replacementKeyMap = (_replacementKeyMap = {}, (0, _defineProperty2.default)(_replacementKeyMap, ALT, isMac ? '⌥' : 'Alt'), (0, _defineProperty2.default)(_replacementKeyMap, CTRL, isMac ? '^' : 'Ctrl'), (0, _defineProperty2.default)(_replacementKeyMap, COMMAND, '⌘'), (0, _defineProperty2.default)(_replacementKeyMap, SHIFT, isMac ? '⇧' : 'Shift'), _replacementKeyMap); | ||
var modifierKeys = modifier(_isApple).reduce(function (accumulator, key) { | ||
var replacementKey = (0, _lodash.get)(replacementKeyMap, key, key); // If on the Mac, adhere to platform convention and don't show plus between keys. | ||
if (replacementKey === '⌘') { | ||
if (isMac) { | ||
return (0, _toConsumableArray2.default)(accumulator).concat([replacementKey]); | ||
@@ -169,5 +155,5 @@ } | ||
return function (character) { | ||
var _isMac = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : isMacOS; | ||
var _isApple = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _platform.isAppleOS; | ||
return sequence(character, _isMac).join(''); | ||
return sequence(character, _isApple).join(''); | ||
}; | ||
@@ -187,5 +173,5 @@ }); | ||
return function (event, character) { | ||
var _isMac = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : isMacOS; | ||
var _isApple = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : _platform.isAppleOS; | ||
var mods = getModifiers(_isMac); | ||
var mods = getModifiers(_isApple); | ||
@@ -192,0 +178,0 @@ if (!mods.every(function (key) { |
{ | ||
"name": "@wordpress/keycodes", | ||
"version": "1.1.0", | ||
"version": "2.0.0", | ||
"description": "Keycodes utilities for WordPress. Used to check for keyboard events across browsers/operating systems.", | ||
@@ -21,4 +21,5 @@ "author": "The WordPress Contributors", | ||
"module": "build-module/index.js", | ||
"react-native": "src/index", | ||
"dependencies": { | ||
"@babel/runtime-corejs2": "7.0.0-beta.56", | ||
"@babel/runtime": "^7.0.0", | ||
"lodash": "^4.17.10" | ||
@@ -29,3 +30,3 @@ }, | ||
}, | ||
"gitHead": "e1811b2082d944dc68bd4c4f048e71cbbdcf6550" | ||
"gitHead": "df6f8da7b557894e4364c17db2dd4af0d1e20252" | ||
} |
@@ -13,2 +13,4 @@ # Keycodes | ||
_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods. Learn more about it in [Babel docs](https://babeljs.io/docs/en/next/caveats)._ | ||
## Usage | ||
@@ -15,0 +17,0 @@ |
@@ -17,2 +17,7 @@ /** | ||
/** | ||
* Internal dependencies | ||
*/ | ||
import { isAppleOS } from './platform'; | ||
export const BACKSPACE = 8; | ||
@@ -37,19 +42,8 @@ export const TAB = 9; | ||
/** | ||
* Return true if platform is MacOS. | ||
* | ||
* @param {Object} _window window object by default; used for DI testing. | ||
* | ||
* @return {boolean} True if MacOS; false otherwise. | ||
*/ | ||
export function isMacOS( _window = window ) { | ||
return _window.navigator.platform.indexOf( 'Mac' ) !== -1; | ||
} | ||
const modifiers = { | ||
primary: ( _isMac ) => _isMac() ? [ COMMAND ] : [ CTRL ], | ||
primaryShift: ( _isMac ) => _isMac() ? [ SHIFT, COMMAND ] : [ CTRL, SHIFT ], | ||
primaryAlt: ( _isMac ) => _isMac() ? [ ALT, COMMAND ] : [ CTRL, ALT ], | ||
secondary: ( _isMac ) => _isMac() ? [ SHIFT, ALT, COMMAND ] : [ CTRL, SHIFT, ALT ], | ||
access: ( _isMac ) => _isMac() ? [ CTRL, ALT ] : [ SHIFT, ALT ], | ||
primary: ( _isApple ) => _isApple() ? [ COMMAND ] : [ CTRL ], | ||
primaryShift: ( _isApple ) => _isApple() ? [ SHIFT, COMMAND ] : [ CTRL, SHIFT ], | ||
primaryAlt: ( _isApple ) => _isApple() ? [ ALT, COMMAND ] : [ CTRL, ALT ], | ||
secondary: ( _isApple ) => _isApple() ? [ SHIFT, ALT, COMMAND ] : [ CTRL, SHIFT, ALT ], | ||
access: ( _isApple ) => _isApple() ? [ CTRL, ALT ] : [ SHIFT, ALT ], | ||
ctrl: () => [ CTRL ], | ||
@@ -69,4 +63,4 @@ ctrlShift: () => [ CTRL, SHIFT ], | ||
export const rawShortcut = mapValues( modifiers, ( modifier ) => { | ||
return ( character, _isMac = isMacOS ) => { | ||
return [ ...modifier( _isMac ), character.toLowerCase() ].join( '+' ); | ||
return ( character, _isApple = isAppleOS ) => { | ||
return [ ...modifier( _isApple ), character.toLowerCase() ].join( '+' ); | ||
}; | ||
@@ -82,15 +76,15 @@ } ); | ||
export const displayShortcutList = mapValues( modifiers, ( modifier ) => { | ||
return ( character, _isMac = isMacOS ) => { | ||
const isMac = _isMac(); | ||
return ( character, _isApple = isAppleOS ) => { | ||
const isMac = _isApple(); | ||
const replacementKeyMap = { | ||
[ ALT ]: isMac ? 'Option' : 'Alt', | ||
[ CTRL ]: 'Ctrl', | ||
[ ALT ]: isMac ? '⌥' : 'Alt', | ||
[ CTRL ]: isMac ? '^' : 'Ctrl', | ||
[ COMMAND ]: '⌘', | ||
[ SHIFT ]: 'Shift', | ||
[ SHIFT ]: isMac ? '⇧' : 'Shift', | ||
}; | ||
const modifierKeys = modifier( _isMac ).reduce( ( accumulator, key ) => { | ||
const modifierKeys = modifier( _isApple ).reduce( ( accumulator, key ) => { | ||
const replacementKey = get( replacementKeyMap, key, key ); | ||
// When the mac's clover symbol is used, do not display a + afterwards | ||
if ( replacementKey === '⌘' ) { | ||
// If on the Mac, adhere to platform convention and don't show plus between keys. | ||
if ( isMac ) { | ||
return [ ...accumulator, replacementKey ]; | ||
@@ -114,3 +108,3 @@ } | ||
export const displayShortcut = mapValues( displayShortcutList, ( sequence ) => { | ||
return ( character, _isMac = isMacOS ) => sequence( character, _isMac ).join( '' ); | ||
return ( character, _isApple = isAppleOS ) => sequence( character, _isApple ).join( '' ); | ||
} ); | ||
@@ -127,4 +121,4 @@ | ||
export const isKeyboardEvent = mapValues( modifiers, ( getModifiers ) => { | ||
return ( event, character, _isMac = isMacOS ) => { | ||
const mods = getModifiers( _isMac ); | ||
return ( event, character, _isApple = isAppleOS ) => { | ||
const mods = getModifiers( _isApple ); | ||
@@ -131,0 +125,0 @@ if ( ! mods.every( ( key ) => event[ `${ key }Key` ] ) ) { |
@@ -5,3 +5,2 @@ /** | ||
import { | ||
isMacOS, | ||
displayShortcutList, | ||
@@ -12,4 +11,4 @@ displayShortcut, | ||
const isMacOSFalse = () => false; | ||
const isMacOSTrue = () => true; | ||
const isAppleOSFalse = () => false; | ||
const isAppleOSTrue = () => true; | ||
@@ -19,3 +18,3 @@ describe( 'displayShortcutList', () => { | ||
it( 'should output [ Ctrl, +, M ] on Windows', () => { | ||
const shortcut = displayShortcutList.primary( 'm', isMacOSFalse ); | ||
const shortcut = displayShortcutList.primary( 'm', isAppleOSFalse ); | ||
expect( shortcut ).toEqual( [ 'Ctrl', '+', 'M' ] ); | ||
@@ -25,3 +24,3 @@ } ); | ||
it( 'should output [ ⌘, M ] on MacOS', () => { | ||
const shortcut = displayShortcutList.primary( 'm', isMacOSTrue ); | ||
const shortcut = displayShortcutList.primary( 'm', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( [ '⌘', 'M' ] ); | ||
@@ -31,3 +30,3 @@ } ); | ||
it( 'outputs [ ⌘, Del ] on MacOS (works for multiple character keys)', () => { | ||
const shortcut = displayShortcutList.primary( 'del', isMacOSTrue ); | ||
const shortcut = displayShortcutList.primary( 'del', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( [ '⌘', 'Del' ] ); | ||
@@ -39,14 +38,14 @@ } ); | ||
it( 'should output [ Ctrl, +, Shift, +, M ] on Windows', () => { | ||
const shortcut = displayShortcutList.primaryShift( 'm', isMacOSFalse ); | ||
const shortcut = displayShortcutList.primaryShift( 'm', isAppleOSFalse ); | ||
expect( shortcut ).toEqual( [ 'Ctrl', '+', 'Shift', '+', 'M' ] ); | ||
} ); | ||
it( 'should output [ Shift, +, ⌘, M ] on MacOS', () => { | ||
const shortcut = displayShortcutList.primaryShift( 'm', isMacOSTrue ); | ||
expect( shortcut ).toEqual( [ 'Shift', '+', '⌘', 'M' ] ); | ||
it( 'should output [ ⇧, ⌘, M ] on MacOS', () => { | ||
const shortcut = displayShortcutList.primaryShift( 'm', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( [ '⇧', '⌘', 'M' ] ); | ||
} ); | ||
it( 'outputs [ Shift, +, ⌘, Del ] on MacOS (works for multiple character keys)', () => { | ||
const shortcut = displayShortcutList.primaryShift( 'del', isMacOSTrue ); | ||
expect( shortcut ).toEqual( [ 'Shift', '+', '⌘', 'Del' ] ); | ||
it( 'outputs [ ⇧, ⌘, Del ] on MacOS (works for multiple character keys)', () => { | ||
const shortcut = displayShortcutList.primaryShift( 'del', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( [ '⇧', '⌘', 'Del' ] ); | ||
} ); | ||
@@ -57,9 +56,9 @@ } ); | ||
it( 'should output [ Ctrl, +, Shift, +, Alt ] text on Windows', () => { | ||
const shortcut = displayShortcutList.secondary( 'm', isMacOSFalse ); | ||
const shortcut = displayShortcutList.secondary( 'm', isAppleOSFalse ); | ||
expect( shortcut ).toEqual( [ 'Ctrl', '+', 'Shift', '+', 'Alt', '+', 'M' ] ); | ||
} ); | ||
it( 'should output [ Shift, +, Option, +, Command, M ] on MacOS', () => { | ||
const shortcut = displayShortcutList.secondary( 'm', isMacOSTrue ); | ||
expect( shortcut ).toEqual( [ 'Shift', '+', 'Option', '+', '⌘', 'M' ] ); | ||
it( 'should output [ ⇧, ⌥, ⌘, M ] on MacOS', () => { | ||
const shortcut = displayShortcutList.secondary( 'm', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( [ '⇧', '⌥', '⌘', 'M' ] ); | ||
} ); | ||
@@ -70,9 +69,9 @@ } ); | ||
it( 'should output [ Shift, +, Alt, +, M ] on Windows', () => { | ||
const shortcut = displayShortcutList.access( 'm', isMacOSFalse ); | ||
const shortcut = displayShortcutList.access( 'm', isAppleOSFalse ); | ||
expect( shortcut ).toEqual( [ 'Shift', '+', 'Alt', '+', 'M' ] ); | ||
} ); | ||
it( 'should output [Ctrl, +, Option, +, M ] on MacOS', () => { | ||
const shortcut = displayShortcutList.access( 'm', isMacOSTrue ); | ||
expect( shortcut ).toEqual( [ 'Ctrl', '+', 'Option', '+', 'M' ] ); | ||
it( 'should output [^, ⌥, M ] on MacOS', () => { | ||
const shortcut = displayShortcutList.access( 'm', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( [ '^', '⌥', 'M' ] ); | ||
} ); | ||
@@ -85,3 +84,3 @@ } ); | ||
it( 'should output Control text on Windows', () => { | ||
const shortcut = displayShortcut.primary( 'm', isMacOSFalse ); | ||
const shortcut = displayShortcut.primary( 'm', isAppleOSFalse ); | ||
expect( shortcut ).toEqual( 'Ctrl+M' ); | ||
@@ -91,3 +90,3 @@ } ); | ||
it( 'should output command symbol on MacOS', () => { | ||
const shortcut = displayShortcut.primary( 'm', isMacOSTrue ); | ||
const shortcut = displayShortcut.primary( 'm', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( '⌘M' ); | ||
@@ -97,3 +96,3 @@ } ); | ||
it( 'outputs command Del on MacOS (works for multiple character keys)', () => { | ||
const shortcut = displayShortcut.primary( 'del', isMacOSTrue ); | ||
const shortcut = displayShortcut.primary( 'del', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( '⌘Del' ); | ||
@@ -105,3 +104,3 @@ } ); | ||
it( 'should output Ctrl+Shift text on Windows', () => { | ||
const shortcut = displayShortcut.primaryShift( 'm', isMacOSFalse ); | ||
const shortcut = displayShortcut.primaryShift( 'm', isAppleOSFalse ); | ||
expect( shortcut ).toEqual( 'Ctrl+Shift+M' ); | ||
@@ -111,9 +110,9 @@ } ); | ||
it( 'should output shift+command symbols on MacOS', () => { | ||
const shortcut = displayShortcut.primaryShift( 'm', isMacOSTrue ); | ||
expect( shortcut ).toEqual( 'Shift+⌘M' ); | ||
const shortcut = displayShortcut.primaryShift( 'm', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( '⇧⌘M' ); | ||
} ); | ||
it( 'outputs shift+command Del on MacOS (works for multiple character keys)', () => { | ||
const shortcut = displayShortcut.primaryShift( 'del', isMacOSTrue ); | ||
expect( shortcut ).toEqual( 'Shift+⌘Del' ); | ||
it( 'outputs ⇧⌘Del on MacOS (works for multiple character keys)', () => { | ||
const shortcut = displayShortcut.primaryShift( 'del', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( '⇧⌘Del' ); | ||
} ); | ||
@@ -124,9 +123,9 @@ } ); | ||
it( 'should output Ctrl+Shift+Alt text on Windows', () => { | ||
const shortcut = displayShortcut.secondary( 'm', isMacOSFalse ); | ||
const shortcut = displayShortcut.secondary( 'm', isAppleOSFalse ); | ||
expect( shortcut ).toEqual( 'Ctrl+Shift+Alt+M' ); | ||
} ); | ||
it( 'should output shift+option+command symbols on MacOS', () => { | ||
const shortcut = displayShortcut.secondary( 'm', isMacOSTrue ); | ||
expect( shortcut ).toEqual( 'Shift+Option+⌘M' ); | ||
it( 'should output ⇧+option+command symbols on MacOS', () => { | ||
const shortcut = displayShortcut.secondary( 'm', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( '⇧⌥⌘M' ); | ||
} ); | ||
@@ -137,3 +136,3 @@ } ); | ||
it( 'should output Shift+Alt text on Windows', () => { | ||
const shortcut = displayShortcut.access( 'm', isMacOSFalse ); | ||
const shortcut = displayShortcut.access( 'm', isAppleOSFalse ); | ||
expect( shortcut ).toEqual( 'Shift+Alt+M' ); | ||
@@ -143,4 +142,4 @@ } ); | ||
it( 'should output control+option symbols on MacOS', () => { | ||
const shortcut = displayShortcut.access( 'm', isMacOSTrue ); | ||
expect( shortcut ).toEqual( 'Ctrl+Option+M' ); | ||
const shortcut = displayShortcut.access( 'm', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( '^⌥M' ); | ||
} ); | ||
@@ -153,3 +152,3 @@ } ); | ||
it( 'should output ctrl on Windows', () => { | ||
const shortcut = rawShortcut.primary( 'm', isMacOSFalse ); | ||
const shortcut = rawShortcut.primary( 'm', isAppleOSFalse ); | ||
expect( shortcut ).toEqual( 'ctrl+m' ); | ||
@@ -159,3 +158,3 @@ } ); | ||
it( 'should output meta on MacOS', () => { | ||
const shortcut = rawShortcut.primary( 'm', isMacOSTrue ); | ||
const shortcut = rawShortcut.primary( 'm', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( 'meta+m' ); | ||
@@ -167,3 +166,3 @@ } ); | ||
it( 'should output ctrl+shift on Windows', () => { | ||
const shortcut = rawShortcut.primaryShift( 'm', isMacOSFalse ); | ||
const shortcut = rawShortcut.primaryShift( 'm', isAppleOSFalse ); | ||
expect( shortcut ).toEqual( 'ctrl+shift+m' ); | ||
@@ -173,3 +172,3 @@ } ); | ||
it( 'should output shift+meta on MacOS', () => { | ||
const shortcut = rawShortcut.primaryShift( 'm', isMacOSTrue ); | ||
const shortcut = rawShortcut.primaryShift( 'm', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( 'shift+meta+m' ); | ||
@@ -181,3 +180,3 @@ } ); | ||
it( 'should output ctrl+shift+alt on Windows', () => { | ||
const shortcut = rawShortcut.secondary( 'm', isMacOSFalse ); | ||
const shortcut = rawShortcut.secondary( 'm', isAppleOSFalse ); | ||
expect( shortcut ).toEqual( 'ctrl+shift+alt+m' ); | ||
@@ -187,3 +186,3 @@ } ); | ||
it( 'should output shift+alt+meta on MacOS', () => { | ||
const shortcut = rawShortcut.secondary( 'm', isMacOSTrue ); | ||
const shortcut = rawShortcut.secondary( 'm', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( 'shift+alt+meta+m' ); | ||
@@ -195,3 +194,3 @@ } ); | ||
it( 'should output shift+alt on Windows', () => { | ||
const shortcut = rawShortcut.access( 'm', isMacOSFalse ); | ||
const shortcut = rawShortcut.access( 'm', isAppleOSFalse ); | ||
expect( shortcut ).toEqual( 'shift+alt+m' ); | ||
@@ -201,3 +200,3 @@ } ); | ||
it( 'should output ctrl+alt on MacOS', () => { | ||
const shortcut = rawShortcut.access( 'm', isMacOSTrue ); | ||
const shortcut = rawShortcut.access( 'm', isAppleOSTrue ); | ||
expect( shortcut ).toEqual( 'ctrl+alt+m' ); | ||
@@ -207,23 +206,1 @@ } ); | ||
} ); | ||
describe( 'isMacOS helper', () => { | ||
it( 'should identify anything with "Mac" in it as MacOS', () => { | ||
expect( isMacOS( { navigator: { platform: 'Mac' } } ) ).toEqual( true ); | ||
expect( isMacOS( { navigator: { platform: 'MacIntel' } } ) ).toEqual( true ); | ||
} ); | ||
it( 'should not identify Windows as MacOS', () => { | ||
expect( isMacOS( { navigator: { platform: 'Windows' } } ) ).toEqual( false ); | ||
expect( isMacOS( { navigator: { platform: 'Win' } } ) ).toEqual( false ); | ||
} ); | ||
it( 'should not identify *NIX as MacOS', () => { | ||
expect( isMacOS( { navigator: { platform: 'Linux' } } ) ).toEqual( false ); | ||
expect( isMacOS( { navigator: { platform: 'Unix' } } ) ).toEqual( false ); | ||
} ); | ||
it( 'should not identify other cases as MacOS', () => { | ||
expect( isMacOS( { navigator: { platform: 'MAC' } } ) ).toEqual( false ); | ||
expect( isMacOS( { navigator: { platform: 'mac' } } ) ).toEqual( false ); | ||
} ); | ||
} ); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
66834
9.15%21
133.33%688
13.72%38
5.56%+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
- Removed