1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-22 12:41:19 +01:00
phorge-phorge/src/view/form/control/AphrontFormTokenizerControl.php

125 lines
3.3 KiB
PHP
Raw Normal View History

2011-01-25 22:48:05 +01:00
<?php
/*
* Copyright 2012 Facebook, Inc.
2011-01-25 22:48:05 +01:00
*
* 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.
*/
final class AphrontFormTokenizerControl extends AphrontFormControl {
2011-01-25 22:48:05 +01:00
private $datasource;
private $disableBehavior;
private $limit;
private $user;
private $placeholder;
2011-01-25 22:48:05 +01:00
public function setDatasource($datasource) {
$this->datasource = $datasource;
return $this;
}
2011-02-05 07:45:42 +01:00
public function setDisableBehavior($disable) {
$this->disableBehavior = $disable;
return $this;
}
2011-01-25 22:48:05 +01:00
protected function getCustomControlClass() {
return 'aphront-form-control-tokenizer';
}
public function setLimit($limit) {
$this->limit = $limit;
return $this;
}
public function setUser($user) {
$this->user = $user;
return $this;
}
public function setPlaceholder($placeholder) {
$this->placeholder = $placeholder;
return $this;
}
2011-01-25 22:48:05 +01:00
protected function renderInput() {
$name = $this->getName();
2011-03-23 04:41:02 +01:00
$values = nonempty($this->getValue(), array());
2011-01-25 22:48:05 +01:00
2011-02-05 07:45:42 +01:00
if ($this->getID()) {
$id = $this->getID();
} else {
$id = celerity_generate_unique_node_id();
}
2011-01-25 22:48:05 +01:00
$placeholder = null;
if (!$this->placeholder) {
$placeholder = $this->getDefaultPlaceholder();
}
2011-03-23 04:41:02 +01:00
$template = new AphrontTokenizerTemplateView();
$template->setName($name);
$template->setID($id);
$template->setValue($values);
$username = null;
if ($this->user) {
$username = $this->user->getUsername();
}
2011-02-05 07:45:42 +01:00
if (!$this->disableBehavior) {
Javelin::initBehavior('aphront-basic-tokenizer', array(
'id' => $id,
'src' => $this->datasource,
'value' => $values,
'limit' => $this->limit,
'ondemand' => PhabricatorEnv::getEnvConfig('tokenizer.ondemand'),
'username' => $username,
'placeholder' => $placeholder,
2011-02-05 07:45:42 +01:00
));
}
2011-01-25 22:48:05 +01:00
2011-03-23 04:41:02 +01:00
return $template->render();
2011-01-25 22:48:05 +01:00
}
private function getDefaultPlaceholder() {
$datasource = $this->datasource;
$matches = null;
if (!preg_match('@^/typeahead/common/(.*)/$@', $datasource, $matches)) {
return null;
}
$request = $matches[1];
$map = array(
'users' => 'Type a user name...',
'usersorprojects' => 'Type a user or project name...',
'searchowner' => 'Type a user name...',
'accounts' => 'Type a user name...',
'mailable' => 'Type a user or mailing list...',
'allmailable' => 'Type a user or mailing list...',
'searchproject' => 'Type a project name...',
'projects' => 'Type a project name...',
'repositories' => 'Type a repository name...',
'packages' => 'Type a package name...',
'arcanistproject' => 'Type an arc project name...',
);
return idx($map, $request);
}
2011-01-25 22:48:05 +01:00
}