2011-05-28 20:36:00 +02:00
|
|
|
<?php
|
|
|
|
|
2012-03-10 00:46:25 +01:00
|
|
|
final class PhabricatorHelpKeyboardShortcutController
|
2011-05-28 20:36:00 +02:00
|
|
|
extends PhabricatorHelpController {
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
|
|
|
$keys = $request->getStr('keys');
|
|
|
|
$keys = json_decode($keys, true);
|
|
|
|
if (!is_array($keys)) {
|
|
|
|
return new Aphront400Response();
|
|
|
|
}
|
|
|
|
|
2011-08-02 16:00:24 +02:00
|
|
|
// There have been at least two users asking for a keyboard shortcut to
|
|
|
|
// close the dialog, so be explicit that escape works since it isn't
|
|
|
|
// terribly discoverable.
|
|
|
|
$keys[] = array(
|
|
|
|
'keys' => array('esc'),
|
2013-05-22 00:29:21 +02:00
|
|
|
'description' => pht('Close any dialog, including this one.'),
|
2011-08-02 16:00:24 +02:00
|
|
|
);
|
|
|
|
|
2013-03-09 06:19:24 +01:00
|
|
|
$stroke_map = array(
|
|
|
|
'left' => "\xE2\x86\x90",
|
|
|
|
'right' => "\xE2\x86\x92",
|
|
|
|
'up' => "\xE2\x86\x91",
|
|
|
|
'down' => "\xE2\x86\x93",
|
|
|
|
'return' => "\xE2\x8F\x8E",
|
|
|
|
'tab' => "\xE2\x87\xA5",
|
|
|
|
'delete' => "\xE2\x8C\xAB",
|
|
|
|
);
|
|
|
|
|
2011-05-28 20:36:00 +02:00
|
|
|
$rows = array();
|
|
|
|
foreach ($keys as $shortcut) {
|
|
|
|
$keystrokes = array();
|
|
|
|
foreach ($shortcut['keys'] as $stroke) {
|
2013-03-09 06:19:24 +01:00
|
|
|
$stroke = idx($stroke_map, $stroke, $stroke);
|
2013-02-08 21:07:44 +01:00
|
|
|
$keystrokes[] = phutil_tag('kbd', array(), $stroke);
|
2011-05-28 20:36:00 +02:00
|
|
|
}
|
2013-02-13 23:50:15 +01:00
|
|
|
$keystrokes = phutil_implode_html(' or ', $keystrokes);
|
2013-02-08 21:07:44 +01:00
|
|
|
$rows[] = phutil_tag(
|
|
|
|
'tr',
|
|
|
|
array(),
|
|
|
|
array(
|
|
|
|
phutil_tag('th', array(), $keystrokes),
|
|
|
|
phutil_tag('td', array(), $shortcut['description']),
|
|
|
|
));
|
2011-05-28 20:36:00 +02:00
|
|
|
}
|
|
|
|
|
2013-02-13 23:50:15 +01:00
|
|
|
$table = phutil_tag(
|
|
|
|
'table',
|
|
|
|
array('class' => 'keyboard-shortcut-help'),
|
|
|
|
$rows);
|
2011-05-28 20:36:00 +02:00
|
|
|
|
|
|
|
$dialog = id(new AphrontDialogView())
|
|
|
|
->setUser($user)
|
2013-05-22 00:29:21 +02:00
|
|
|
->setTitle(pht('Keyboard Shortcuts'))
|
2011-05-28 20:36:00 +02:00
|
|
|
->appendChild($table)
|
2013-05-22 00:29:21 +02:00
|
|
|
->addCancelButton('#', pht('Close'));
|
2011-05-28 20:36:00 +02:00
|
|
|
|
|
|
|
return id(new AphrontDialogResponse())
|
|
|
|
->setDialog($dialog);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|