UNPKG

@progress/kendo-react-dateinputs

Version:
42 lines 1.32 kB
import { Action } from '../models/NavigationAction'; var KEY_TO_ACTION = { '33': Action.PrevView, '34': Action.NextView, '35': Action.LastInView, '36': Action.FirstInView, '37': Action.Left, '38': Action.Up, '39': Action.Right, '40': Action.Down, 'meta+38': Action.UpperView, 'meta+40': Action.LowerView }; /** * @hidden */ var NavigationService = /** @class */ (function () { function NavigationService(bus) { this.bus = bus; } NavigationService.prototype.action = function (event) { var action = "" + (event.ctrlKey || event.metaKey ? 'meta+' : '') + event.keyCode; return KEY_TO_ACTION[action]; }; NavigationService.prototype.move = function (value, action, activeView, service, event) { if (!service) { return value; } if (action === Action.UpperView && this.bus.canMoveUp(activeView)) { this.bus.moveUp(activeView, event); return value; } if (action === Action.LowerView && this.bus.canMoveDown(activeView)) { this.bus.moveDown(activeView, event); return value; } return service.move(value, action); }; return NavigationService; }()); export { NavigationService }; //# sourceMappingURL=NavigationService.js.map