1
0

main.py 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #!/usr/bin/env python3
  2. import asyncio
  3. from typing import List, Tuple
  4. from nicegui import ui, Client
  5. messages: Tuple[str, str] = []
  6. contents: List[ui.column] = []
  7. async def update(content: ui.column) -> None:
  8. content.clear()
  9. with content: # use the context of each client to update their ui
  10. for name, text in messages:
  11. ui.markdown(f'**{name or "someone"}:** {text}').classes('text-lg m-2')
  12. await ui.run_javascript(f'window.scrollTo(0, document.body.scrollHeight)', respond=False)
  13. @ui.page('/')
  14. async def main(client: Client):
  15. async def send() -> None:
  16. messages.append((name.value, text.value))
  17. text.value = ''
  18. await asyncio.gather(*[update(content) for content in contents]) # run updates concurrently
  19. anchor_style = r'a:link, a:visited {color: inherit !important; text-decoration: none; font-weight: 500}'
  20. ui.add_head_html(f'<style>{anchor_style}</style>')
  21. with ui.footer().classes('bg-white'), ui.column().classes('w-full max-w-3xl mx-auto my-6'):
  22. with ui.row().classes('w-full no-wrap items-center'):
  23. name = ui.input(placeholder='name').props('rounded outlined autofocus input-class=mx-3')
  24. text = ui.input(placeholder='message').props('rounded outlined input-class=mx-3') \
  25. .classes('w-full self-center').on('keydown.enter', send)
  26. ui.markdown('simple chat app built with [NiceGUI](https://nicegui.io)') \
  27. .classes('text-xs self-end mr-8 m-[-1em] text-primary')
  28. await client.connected() # update(...) uses run_javascript which is only possible after connecting
  29. contents.append(ui.column().classes('w-full max-w-2xl mx-auto')) # save ui context for updates
  30. await update(contents[-1]) # ensure all messages are shown after connecting
  31. ui.run()