summaryrefslogtreecommitdiff
path: root/framework/Web/UI/ActiveControls/TAutoComplete.php
blob: 2ebba495529ebc9d4506fb832479a3ba04af6a14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?php
/*
 * Created on 7/05/2006
 */

class TAutoComplete extends TActiveTextBox implements ICallbackEventHandler, INamingContainer
{
	/**
	 * @var ITemplate template for repeater items
	 */
	private $_repeater=null;
	private $_resultPanel=null;
	
	public function setDataSource($data)
	{
		$this->getSuggestions()->setDataSource($data);
	}
	
	public function getResultPanel()
	{
		if(is_null($this->_resultPanel))
			$this->_resultPanel = $this->createResultPanel();
		return $this->_resultPanel;
	}
	
	protected function createResultPanel()
	{
		$panel = Prado::createComponent('System.Web.UI.WebControls.TPanel');
		$this->getControls()->add($panel);
		$panel->setID('result');
		return $panel;
	}
	
	/**
	 * @return TRepeater suggestion list repeater
	 */
	public function getSuggestions()
	{
		if(is_null($this->_repeater))
			$this->_repeater = $this->createRepeater();
		return $this->_repeater;
	}
	
	/**
	 * 
	 */
	protected function createRepeater()
	{
		$repeater = Prado::createComponent('System.Web.UI.WebControls.TRepeater');
		$repeater->setHeaderTemplate(new TAutoCompleteTemplate('<ul>'));
		$repeater->setFooterTemplate(new TAutoCompleteTemplate('</ul>'));
		$repeater->setItemTemplate(new TTemplate('<li><%# $this->DataItem %></li>',null));
		$this->getControls()->add($repeater);
		return $repeater;
	}

	/**
	 * @return TCallbackClientSideOptions callback client-side options.
	 */
	protected function createClientSideOptions()
	{
		$options = new TAutoCompleteClientSideOptions;
		$options->setEnablePageStateUpdate(false);
		return $options;
	}
	
	public function renderEndTag($writer)
	{
		$this->getPage()->getClientScript()->registerPradoScript('effects');
		parent::renderEndTag($writer);
		$this->renderResultPanel($writer);
	}
	
	public function renderResultPanel($writer)
	{
		$this->getResultPanel()->render($writer);	
	}
	
	public function render($writer)
	{
		if($this->canUpdateClientSide())
		{
			$this->getSuggestions()->render($writer); 
			$boundary = $writer->getWriter()->getBoundary();
			$writer->getWriter()->getResponse()->setData($boundary);
		}
		else
			parent::render($writer);	
	}
	
	/**
	 * @return array list of callback options.
	 */
	protected function getCallbackOptions()
	{
		$options = $this->getClientSide()->getOptions()->toArray();
		if($this->getAutoPostBack())
			$options = array_merge($options,$this->getPostBackOptions()); 
		$options['ResultPanel'] = $this->getResultPanel()->getClientID();
		$options['ID'] = $this->getClientID();
		$options['EventTarget'] = $this->getUniqueID();
		return $options;
	}
	
	/**
	 * Adds attribute name-value pairs to renderer.
	 * This method overrides the parent implementation with additional textbox specific attributes.
	 * @param THtmlWriter the writer used for the rendering purpose
	 */
	protected function addAttributesToRender($writer)
	{
		parent::addAttributesToRender($writer);
		$this->renderClientControlScript($writer);
	}
	
}

/**
 * Client-side options for TAutoComplete.
 * 
 * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 * @version $Revision: $  $Date: $
 * @package System.Web.UI.ActiveControls
 * @since 3.0
 */
class TAutoCompleteClientSideOptions extends TCallbackClientSideOptions
{
	public function getSeparator()
	{
		return $this->getOption('tokens');
	}
	
	public function setSeparator($value)
	{
		$this->setOption('tokens', $chars = preg_split('//', $value, -1, PREG_SPLIT_NO_EMPTY));
	}
	
	public function getFrequency()
	{
		return $this->getOption('frequency');
	}
	
	public function setFrequency($value)
	{
		$this->setOption('frequency', TPropertyValue::ensureFloat($value));
	}
	
	public function getMinChars()
	{
		return 	$this->getOption('minChars');
	}
	
	public function setMinChars($value)
	{
		$this->setOption('minChars', TPropertyValue::ensureInteger($value));
	}
}

/**
 * TWizardSideBarTemplate class.
 * TWizardSideBarTemplate is the default template for wizard sidebar.
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @version $Revision: $  $Date: $
 * @package System.Web.UI.WebControls
 * @since 3.0
 */
class TAutoCompleteTemplate extends TComponent implements ITemplate
{
	private $_template;
	
	public function __construct($template)
	{
		$this->_template = $template;
	}
	/**
	 * Instantiates the template.
	 * It creates a {@link TDataList} control.
	 * @param TControl parent to hold the content within the template
	 */
	public function instantiateIn($parent)
	{
		$parent->getControls()->add($this->_template);
	}
}

?>