org.primefaces.component.inputtextarea.InputTextareaRenderer Maven / Gradle / Ivy
/*
* The MIT License
*
* Copyright (c) 2009-2023 PrimeTek Informatics
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.primefaces.component.inputtextarea;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.context.ResponseWriter;
import javax.faces.event.PhaseId;
import org.primefaces.component.autocomplete.AutoComplete;
import org.primefaces.event.AutoCompleteEvent;
import org.primefaces.expression.SearchExpressionFacade;
import org.primefaces.renderkit.InputRenderer;
import org.primefaces.util.ComponentUtils;
import org.primefaces.util.HTML;
import org.primefaces.util.LangUtils;
import org.primefaces.util.WidgetBuilder;
public class InputTextareaRenderer extends InputRenderer {
@Override
public void decode(FacesContext context, UIComponent component) {
InputTextarea inputTextarea = (InputTextarea) component;
if (!shouldDecode(inputTextarea)) {
return;
}
decodeBehaviors(context, inputTextarea);
String clientId = inputTextarea.getClientId(context);
Map params = context.getExternalContext().getRequestParameterMap();
String submittedValue = params.get(clientId);
if (submittedValue != null) {
// #5381: normalize new lines to match JavaScript
submittedValue = submittedValue.replaceAll("\\r\\n?", "\n");
int maxlength = inputTextarea.getMaxlength();
if (submittedValue.length() > maxlength) {
submittedValue = LangUtils.substring(submittedValue, 0, maxlength);
}
}
inputTextarea.setSubmittedValue(submittedValue);
//AutoComplete event
String query = params.get(clientId + "_query");
if (query != null) {
AutoCompleteEvent autoCompleteEvent = new AutoCompleteEvent(inputTextarea, query);
autoCompleteEvent.setPhaseId(PhaseId.APPLY_REQUEST_VALUES);
inputTextarea.queueEvent(autoCompleteEvent);
}
}
@Override
public void encodeEnd(FacesContext context, UIComponent component) throws IOException {
InputTextarea inputTextarea = (InputTextarea) component;
Map params = context.getExternalContext().getRequestParameterMap();
String query = params.get(inputTextarea.getClientId(context) + "_query");
if (query != null) {
encodeSuggestions(context, inputTextarea, query);
}
else {
encodeMarkup(context, inputTextarea);
encodeScript(context, inputTextarea);
}
}
@SuppressWarnings("unchecked")
public void encodeSuggestions(FacesContext context, InputTextarea inputTextarea, String query) throws IOException {
ResponseWriter writer = context.getResponseWriter();
List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy