Summary: A few tweaks to hsb's Countdown implementation: - Allow the page to be rendered "chromeless", suitable for display on one of the dozens of monitors everyone has laying around. - Show title of countdown in deletion dialog. - When creating a new countdown default to time(), not Dec 31, 1969. - Add extra "/" after editing to avoid needless redirect. - Tweak some page titles. - Show countdown author in list view. - Highlight tab in list view. - Tweak menu copy. - Link countdown title in list view, separate buttons into different columns so they pick up padding. Test Plan: Created, edited and deleted a timer. Viewed a timer and toggled chrome mode. Viewed timer list. Reviewed By: hsb Reviewers: hsb, aran, jungejason, tuomaspelkonen CC: aran, hsb, epriestley Differential Revision: 454
88 lines
2.4 KiB
PHP
88 lines
2.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Copyright 2011 Facebook, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
class PhabricatorCountdownViewController
|
|
extends PhabricatorCountdownController {
|
|
|
|
private $id;
|
|
|
|
public function willProcessRequest(array $data) {
|
|
$this->id = $data['id'];
|
|
}
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
$user = $request->getUser();
|
|
$timer = id(new PhabricatorTimer())->load($this->id);
|
|
if (!$timer) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
require_celerity_resource('phabricator-countdown-css');
|
|
|
|
$chrome_visible = $request->getBool('chrome', true);
|
|
$chrome_link = phutil_render_tag(
|
|
'a',
|
|
array(
|
|
'href' => $request->getRequestURI()->alter('chrome', !$chrome_visible),
|
|
'class' => 'phabricator-timer-chrome-link',
|
|
),
|
|
$chrome_visible ? 'Disable Chrome' : 'Enable Chrome');
|
|
|
|
$content =
|
|
'<div class="phabricator-timer">
|
|
<h1 class="phabricator-timer-header">'.
|
|
phutil_escape_html($timer->getTitle()).'
|
|
</h1>
|
|
<div class="phabricator-timer-pane">
|
|
<table class="phabricator-timer-table">
|
|
<tr>
|
|
<th>Days</th>
|
|
<th>Hours</th>
|
|
<th>Minutes</th>
|
|
<th>Seconds</th>
|
|
</tr>
|
|
<tr>
|
|
<td id="phabricator-timer-days"></td>
|
|
<td id="phabricator-timer-hours"></td>
|
|
<td id="phabricator-timer-minutes"></td>
|
|
<td id="phabricator-timer-seconds"></td>
|
|
</table>
|
|
</div>'.
|
|
$chrome_link.
|
|
'</div>';
|
|
|
|
Javelin::initBehavior('countdown-timer', array(
|
|
'timestamp' => $timer->getDatepoint()
|
|
));
|
|
|
|
$panel = $content;
|
|
|
|
return $this->buildStandardPageResponse(
|
|
$panel,
|
|
array(
|
|
'title' => 'Countdown: '.$timer->getTitle(),
|
|
'tab' => 'view',
|
|
'chrome' => $chrome_visible
|
|
));
|
|
}
|
|
|
|
}
|