b96d9c6973
* enhance(frontend): 映像・音声周りの改修 * fix * fix design * fix lint * キーボードショートカットを整備 * Update Changelog * fix * feat: ループ再生 * ネイティブの動作と同期されるように * Update Changelog * key指定を消す
24 lines
580 B
TypeScript
24 lines
580 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export default (input: string): string[] => {
|
|
if (Object.keys(aliases).some(a => a.toLowerCase() === input.toLowerCase())) {
|
|
const codes = aliases[input];
|
|
return Array.isArray(codes) ? codes : [codes];
|
|
} else {
|
|
return [input];
|
|
}
|
|
};
|
|
|
|
export const aliases = {
|
|
'esc': 'Escape',
|
|
'enter': ['Enter', 'NumpadEnter'],
|
|
'space': [' ', 'Spacebar'],
|
|
'up': 'ArrowUp',
|
|
'down': 'ArrowDown',
|
|
'left': 'ArrowLeft',
|
|
'right': 'ArrowRight',
|
|
'plus': ['NumpadAdd', 'Semicolon'],
|
|
};
|