{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import panel as pn\n", "import numpy as np\n", "import holoviews as hv\n", "\n", "pn.extension(sizing_mode = 'stretch_width')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For a large variety of use cases we do not need complete control over the exact layout of each individual component on the page, as could be achieved with a [custom template](../../user_guide/Templates.ipynb), we just want to achieve a more polished look and feel. For these cases Panel ships with a number of default templates, which are defined by declaring four main content areas on the page, which can be populated as desired:\n", "\n", "* **`header`**: The header area of the HTML page\n", "* **`sidebar`**: A collapsible sidebar\n", "* **`main`**: The main area of the application\n", "* **`modal`**: A modal area which can be opened and closed from Python\n", "\n", "These four areas behave very similarly to other Panel layout components and have list-like semantics. This means we can easily append new components into these areas. Unlike other layout components however, the contents of the areas is fixed once rendered. If you need a dynamic layout you should therefore insert a regular Panel layout component (e.g. a `Column` or `Row`) and modify it in place once added to one of the content areas. \n", "\n", "Templates can allow for us to quickly and easily create web apps for displaying our data. Panel comes with a default Template, and includes multiple Templates that extend the default which add some customization for a better display.\n", "\n", "#### Parameters:\n", "\n", "In addition to the four different areas we can populate, the `FastListTemplate` also provides the parameters below:\n", "\n", "* **`site`** (str): Name of the site. Will be shown in the header. Default is '', i.e. not shown.\n", "* **`site_url`** (str): Url of the site and logo. Default is \"/\".\n", "* **`logo`** (str): URI of logo to add to the header (if local file, logo is base64 encoded as URI).\n", "* **`title`** (str): A title to show in the header. Also added to the document head meta settings and as the browser tab title.\n", "* **`favicon`** (str): URI of favicon to add to the document head (if local file, favicon is base64 encoded as URI).\n", "* **`sidebar_footer`** (str): Can be used to insert additional HTML. For example a menu, some additional info, links etc.\n", "* **`config`** (TemplateConfig): Contains configuration options similar to `pn.config` but applied to the current Template only. (Currently only `css_files` is supported)\n", "* **`busy_indicator`** (BooleanIndicator): Visual indicator of application busy state.\n", "\n", "For **styling** you can use\n", "\n", "* **`theme`** (Theme): A Theme class (available in `panel.template`. One of `DefaultTheme` or `DarkTheme`). \n", " - For convenience you can provide \"default\" or \"dark\" string to the constructor.\n", " - If you add `?theme=default` or `?theme=dark` in the url this will set the theme unless explicitly declared\n", "* **`theme_toggle`** (boolean): If `True` a switch to toggle the Theme is shown. Default is `True`.\n", "* **`background_color`** (str): Optional body background color override.\n", "* **`neutral_color`** (str): Optional body neutral color override.\n", "* **`accent_base_color`** (str): Optional body accent base color override. The default is #0072B5 (French Blue).\n", "* **`header_background`** (str): Optional header background color override.\n", "* **`header_color`** (str): Optional header text color override.\n", "* **`header_neutral_color`** (str): Optional header neutral color override.\n", "* **`header_accent_base_color`** (str): Optional header accent base color override.\n", "* **`corner_radius`** (str): The corner radius applied to controls.\n", "* **`font`** (str): A font url to import.\n", "* **`font_url`** (str): A font url to import.\n", "* **`shadow`** (str): Optional shadow override. Whether or not to apply shadow.\n", "* **`main_layout`** (str): What to wrap the main components into. Options are '' (i.e. none) and 'card' (Default). Could be extended to Accordion, Tab etc. in the future.\n", "\n", "The **`accent`** argument is a short cut to set both the `accent_base_color` and the `header_background`. Some accent colors that work well are #A01346 (Fast), #00A170 (Mint), #DAA520 (Golden Rod), #2F4F4F (Dark Slate Grey), #F08080 (Light Coral) and #4099da (Summer Sky).\n", "\n", "For **layout** you can use\n", "\n", "* **`sidebar_width`** (int): The width of the sidebar in pixels. Default is 330.\n", "* **`main_max_width`** (str): The maximum width of the main area. For example '800px' or '80%'. If the string is '' (default) no max width is set.\n", "\n", "For **meta** and **base** values you can use\n", "\n", "* **`meta_description`** (str): A meta description to add to the document head for search engine optimization. For example 'P.A. Nelson'.\n", "* **`meta_keywords`** (str): Meta keywords to add to the document head for search engine optimization.\n", "* **`meta_author`** (str): A meta author to add to the the document head for search engine optimization. For example 'P.A. Nelson'.\n", "* **`meta_refresh`** (str): A meta refresh rate to add to the document head. For example '30' will instruct the browser to refresh every 30 seconds. Default is '', i.e. no automatic refresh.\n", "* **`meta_viewport`** (str): A meta viewport to add to the header.\n", "* **`base_url`** (str): Specifies the base URL for all relative URLs in a page. Default is '', i.e. not the domain.\n", "* **`base_target`** (str): Specifies the base Target for all relative URLs in a page. Default is _self.\n", "\n", "________" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In this case we are using the `FastListTemplate`, built using the [Fast.design](https://www.fast.design/) framework. Here is an example of how you can set up a display using this template:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "ACCENT_COLOR = pn.template.FastListTemplate.accent_base_color\n", "XS = np.linspace(0, np.pi)\n", "\n", "def sine(freq, phase):\n", " return hv.Curve((XS, np.sin(XS * freq + phase))).opts(\n", " responsive=True, min_height=400, title=\"Sine\", color=ACCENT_COLOR\n", " ).opts(line_width=6)\n", "\n", "def cosine(freq, phase):\n", " return hv.Curve((XS, np.cos(XS * freq + phase))).opts(\n", " responsive=True, min_height=400, title=\"Cosine\", color=ACCENT_COLOR\n", " ).opts(line_width=6)\n", "\n", "freq = pn.widgets.FloatSlider(name=\"Frequency\", start=0, end=10, value=2)\n", "phase = pn.widgets.FloatSlider(name=\"Phase\", start=0, end=np.pi)\n", "\n", "sine = pn.bind(sine, freq=freq, phase=phase)\n", "cosine = pn.bind(cosine, freq=freq, phase=phase)\n", "\n", "template = pn.template.FastListTemplate(\n", " site=\"Panel\", title=\"FastListTemplate\",\n", " sidebar=[pn.pane.Markdown(\"## Settings\"), freq, phase],\n", " main=[pn.pane.HoloViews(hv.DynamicMap(sine) + hv.DynamicMap(cosine), sizing_mode=\"stretch_both\")]\n", ").servable();" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "

FastListTemplate with DefaultTheme

\n", "\n", "
\n", "

FastListTemplate with DarkTheme

\n", "" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The app can be displayed within the notebook by using `.servable()`, or rendered in another tab by replacing it with `.show()`. \n", "\n", "Themes can be added using the optional keyword argument `theme`. This template comes with a `DarkTheme` and a `DefaultTheme`, which can be set via `FastlistTemplate(theme=\"dark\")`. If no theme is set, then `DefaultTheme` will be applied.\n", "\n", "It should be noted **this template currently does not render correctly in a notebook**, and for the best performance the should ideally be deployed to a server." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.3" } }, "nbformat": 4, "nbformat_minor": 4 }