Source code for pywebio_battery.interaction

from pywebio.output import *
from pywebio.input import *
from pywebio.session import *
from pywebio.pin import *
from pywebio.utils import random_str
from pywebio.output import Output
import io
from functools import partial
import subprocess

__all__ = ['confirm', 'popup_input', 'redirect_stdout', 'run_shell', 'put_logbox', 'logbox_append']


[docs]def confirm(title, content=None, *, timeout=None): """Show a confirmation modal. :param str title: Model title. :param list/put_xxx() content: Model content. :param None/float timeout: Seconds for operation time out. :return: Return `True` when the "CONFIRM" button is clicked, return `False` when the "CANCEL" button is clicked, return `None` when a timeout is given and the operation times out. """ if content is None: content = [] if not isinstance(content, list): content = [content] action_name = random_str(10) content.append(put_actions(action_name, buttons=[ {'label': 'CONFIRM', 'value': True}, {'label': 'CANCEL', 'value': False, 'color': 'danger'}, ])) popup(title=title, content=content, closable=False) result = pin_wait_change(action_name, timeout=timeout) if result: result = result['value'] close_popup() return result
[docs]def redirect_stdout(output_func=partial(put_text, inline=True)): """Context manager for temporarily redirecting stdout to pywebio. :: with redirect_stdout(): print("Hello world.") """ from contextlib import redirect_stdout class WebIO(io.IOBase): def write(self, content): output_func(content) return redirect_stdout(WebIO())
[docs]def run_shell(cmd, output_func=partial(put_text, inline=True)): """Run command in shell and output the result to pywebio""" process = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) while True: out = process.stdout.readline() if out: output_func(out.decode('utf8')) if not out and process.poll() is not None: break
[docs]def put_logbox(name, height=None) -> Output: """Output a logbox widget :param str name: :param int height: the height of the widget in pixel """ html = '<pre><code id="webio-logbox-%s"></code></pre>' % name return put_html(html).style('height:%spx' % height if height else '')
[docs]def logbox_append(name, text): """Append text to a logbox widget""" run_js('$("#webio-logbox-%s").append(text)' % name, text=str(text))