def _text_area( self, label: str, value: str = "", height: Optional[int] = None, max_chars: Optional[int] = None, key: Optional[Key] = None, help: Optional[str] = None, on_change: Optional[WidgetCallback] = None, args: Optional[WidgetArgs] = None, kwargs: Optional[WidgetKwargs] = None, *, # keyword-only arguments: placeholder: Optional[str] = None, disabled: bool = False, ctx: Optional[ScriptRunContext] = None, ) -> str: key = to_key(key) check_callback_rules(self.dg, on_change) check_session_state_rules(default_value=None if value == "" else value, key=key) text_area_proto = TextAreaProto() text_area_proto.label = label text_area_proto.default = str(value) text_area_proto.form_id = current_form_id(self.dg) text_area_proto.disabled = disabled if help is not None: text_area_proto.help = dedent(help) if height is not None: text_area_proto.height = height if max_chars is not None: text_area_proto.max_chars = max_chars if placeholder is not None: text_area_proto.placeholder = str(placeholder) def deserialize_text_area(ui_value, widget_id="") -> str: return str(ui_value if ui_value is not None else value) current_value, set_frontend_value = register_widget( "text_area", text_area_proto, user_key=key, on_change_handler=on_change, args=args, kwargs=kwargs, deserializer=deserialize_text_area, serializer=lambda x: x, ctx=ctx, ) if set_frontend_value: text_area_proto.value = current_value text_area_proto.set_value = True self.dg._enqueue("text_area", text_area_proto) return cast(str, current_value)
def text_area(self, label, value="", height=None, max_chars=None, key=None, help=None): """Display a multi-line text input widget. Parameters ---------- label : str A short label explaining to the user what this input is for. value : any The text value of this widget when it first renders. This will be cast to str internally. height : int or None Desired height of the UI element expressed in pixels. If None, a default height is used. max_chars : int or None Maximum number of characters allowed in text area. key : str An optional string to use as the unique key for the widget. If this is omitted, a key will be generated for the widget based on its content. Multiple widgets of the same type may not share the same key. help : str A tooltip that gets displayed next to the textarea. Returns ------- str The current value of the text input widget. Example ------- >>> txt = st.text_area('Text to analyze', ''' ... It was the best of times, it was the worst of times, it was ... the age of wisdom, it was the age of foolishness, it was ... the epoch of belief, it was the epoch of incredulity, it ... was the season of Light, it was the season of Darkness, it ... was the spring of hope, it was the winter of despair, (...) ... ''') >>> st.write('Sentiment:', run_sentiment_analysis(txt)) """ text_area_proto = TextAreaProto() text_area_proto.label = label text_area_proto.default = str(value) if help is not None: text_area_proto.help = help if height is not None: text_area_proto.height = height if max_chars is not None: text_area_proto.max_chars = max_chars ui_value = register_widget("text_area", text_area_proto, user_key=key) current_value = ui_value if ui_value is not None else value return self.dg._enqueue("text_area", text_area_proto, str(current_value))
def text_area( self, label: str, value: str = "", height: Optional[int] = None, max_chars: Optional[int] = None, key: Optional[Key] = None, help: Optional[str] = None, on_change: Optional[WidgetCallback] = None, args: Optional[WidgetArgs] = None, kwargs: Optional[WidgetKwargs] = None, *, # This makes placeholder a keyword-only argument placeholder: Optional[str] = None, ) -> str: """Display a multi-line text input widget. Parameters ---------- label : str A short label explaining to the user what this input is for. value : any The text value of this widget when it first renders. This will be cast to str internally. height : int or None Desired height of the UI element expressed in pixels. If None, a default height is used. max_chars : int or None Maximum number of characters allowed in text area. key : str or int An optional string or integer to use as the unique key for the widget. If this is omitted, a key will be generated for the widget based on its content. Multiple widgets of the same type may not share the same key. help : str An optional tooltip that gets displayed next to the textarea. on_change : callable An optional callback invoked when this text_area's value changes. args : tuple An optional tuple of args to pass to the callback. kwargs : dict An optional dict of kwargs to pass to the callback. placeholder : str or None An optional string displayed when the text area is empty. If None, no text is displayed. This is a keyword only argument. Returns ------- str The current value of the text input widget. Example ------- >>> txt = st.text_area('Text to analyze', ''' ... It was the best of times, it was the worst of times, it was ... the age of wisdom, it was the age of foolishness, it was ... the epoch of belief, it was the epoch of incredulity, it ... was the season of Light, it was the season of Darkness, it ... was the spring of hope, it was the winter of despair, (...) ... ''') >>> st.write('Sentiment:', run_sentiment_analysis(txt)) """ key = to_key(key) check_callback_rules(self.dg, on_change) check_session_state_rules(default_value=None if value == "" else value, key=key) text_area_proto = TextAreaProto() text_area_proto.label = label text_area_proto.default = str(value) text_area_proto.form_id = current_form_id(self.dg) if help is not None: text_area_proto.help = dedent(help) if height is not None: text_area_proto.height = height if max_chars is not None: text_area_proto.max_chars = max_chars if placeholder is not None: text_area_proto.placeholder = str(placeholder) def deserialize_text_area(ui_value, widget_id="") -> str: return str(ui_value if ui_value is not None else value) current_value, set_frontend_value = register_widget( "text_area", text_area_proto, user_key=key, on_change_handler=on_change, args=args, kwargs=kwargs, deserializer=deserialize_text_area, serializer=lambda x: x, ) if set_frontend_value: text_area_proto.value = current_value text_area_proto.set_value = True self.dg._enqueue("text_area", text_area_proto) return cast(str, current_value)