o
    hU                     @  s  U d dl mZ d dlZd dlZd dlmZ d dlmZ d dlm	Z	 d dl
mZmZmZmZmZmZmZ d dlmZ d dlmZ d d	lmZmZ d d
lmZ d dlmZmZmZmZ d dl m!Z!m"Z"m#Z# d dl$m%Z%m&Z& d dl'm(Z( d dl)m*Z+ d dl,m-Z. d dl/m0Z1 d dl2m3Z4 d dl5m6Z6 d dl7m8Z8 d dl9m:Z:m;Z; d dl<m=Z=m>Z>m?Z?m@Z@ d dlAmBZB d dlCmDZD erd dlEmFZF dZGdeHd< eeIeJeeejKf ZLdeHd< eG dd  d ZMG d!d" d"ZN	d/d0d-d.ZOdS )1    )annotationsN)	dataclass)Path)dedent)TYPE_CHECKINGBinaryIOFinalLiteralTextIOUnioncast)	TypeAlias)runtime)current_form_id
is_in_form)check_widget_policies)Keycompute_and_register_element_idsave_for_app_testingto_key)StreamlitAPIExceptionStreamlitMissingPageLabelErrorStreamlitPageNotFoundError)get_main_script_directorynormalize_path_join)StreamlitPage)Button)DownloadButton)
LinkButton)PageLink)gather_metrics)PagesManager)ScriptRunContextget_script_run_ctx)
WidgetArgsWidgetCallbackWidgetKwargsregister_widget)validate_icon_or_emoji)is_url)DeltaGeneratorz

For more information, refer to the
[documentation for forms](https://docs.streamlit.io/develop/api-reference/execution-flow/st.form).
r   FORM_DOCS_INFOr   DownloadButtonDataTypec                   @  s"   e Zd ZdddZddddZdS )ButtonSerdevboolreturnc                 C  s   t |S N)r/   )selfr.    r3   U/var/www/vscode/kcb/lib/python3.10/site-packages/streamlit/elements/widgets/button.py	serializeP      zButtonSerde.serialize ui_valuebool | None	widget_idstrc                 C  s   |pdS )NFr3   )r2   r8   r:   r3   r3   r4   deserializeS   r6   zButtonSerde.deserializeN)r.   r/   r0   r/   )r7   )r8   r9   r:   r;   r0   r/   )__name__
__module____qualname__r5   r<   r3   r3   r3   r4   r-   N   s    
r-   c                   @  s(  e Zd Zed					d?dddddd@ddZed							dAddddddBd"d#Zed$dddddd%dCd(d)Zed*dddddd+dDd/d0Z							dAdddddd1dEd4d5ZddddddCd6d7Z	dddddd+dDd8d9Z
			dFdddddd1dGd;d<ZedHd=d>ZdS )IButtonMixinbuttonN	secondaryF)typeicondisableduse_container_widthlabelr;   key
Key | Nonehelp
str | Noneon_clickWidgetCallback | NoneargsWidgetArgs | NonekwargsWidgetKwargs | NonerC   +Literal['primary', 'secondary', 'tertiary']rD   rE   r/   rF   r0   c                C  sJ   t |}t }|dvrtd| d| jj|||d||||	|||
|dS )u  Display a button widget.

        Parameters
        ----------
        label : str
            A short label explaining to the user what this button is for.
            The label can optionally contain GitHub-flavored Markdown of the
            following types: Bold, Italics, Strikethroughs, Inline Code, Links,
            and Images. Images display like icons, with a max height equal to
            the font height.

            Unsupported Markdown elements are unwrapped so only their children
            (text contents) render. Display unsupported elements as literal
            characters by backslash-escaping them. E.g.,
            ``"1\. Not an ordered list"``.

            See the ``body`` parameter of |st.markdown|_ for additional,
            supported Markdown directives.

            .. |st.markdown| replace:: ``st.markdown``
            .. _st.markdown: https://docs.streamlit.io/develop/api-reference/text/st.markdown

        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. No two widgets may have the same key.

        help : str or None
            A tooltip that gets displayed when the button is hovered over. If
            this is ``None`` (default), no tooltip is displayed.

            The tooltip can optionally contain GitHub-flavored Markdown,
            including the Markdown directives described in the ``body``
            parameter of ``st.markdown``.

        on_click : callable
            An optional callback invoked when this button is clicked.

        args : tuple
            An optional tuple of args to pass to the callback.

        kwargs : dict
            An optional dict of kwargs to pass to the callback.

        type : "primary", "secondary", or "tertiary"
            An optional string that specifies the button type. This can be one
            of the following:

            - ``"primary"``: The button's background is the app's primary color
              for additional emphasis.
            - ``"secondary"`` (default): The button's background coordinates
              with the app's background color for normal emphasis.
            - ``"tertiary"``: The button is plain text without a border or
              background for subtly.

        icon : str or None
            An optional emoji or icon to display next to the button label. If ``icon``
            is ``None`` (default), no icon is displayed. If ``icon`` is a
            string, the following options are valid:

            - A single-character emoji. For example, you can set ``icon="🚨"``
              or ``icon="🔥"``. Emoji short codes are not supported.

            - An icon from the Material Symbols library (rounded style) in the
              format ``":material/icon_name:"`` where "icon_name" is the name
              of the icon in snake case.

              For example, ``icon=":material/thumb_up:"`` will display the
              Thumb Up icon. Find additional icons in the `Material Symbols \
              <https://fonts.google.com/icons?icon.set=Material+Symbols&icon.style=Rounded>`_
              font library.

        disabled : bool
            An optional boolean that disables the button if set to ``True``.
            The default is ``False``.

        use_container_width : bool
            Whether to expand the button's width to fill its parent container.
            If ``use_container_width`` is ``False`` (default), Streamlit sizes
            the button to fit its contents. If ``use_container_width`` is
            ``True``, the width of the button matches its parent container.

            In both cases, if the contents of the button are wider than the
            parent container, the contents will line wrap.

        Returns
        -------
        bool
            True if the button was clicked on the last run of the app,
            False otherwise.

        Examples
        --------
        **Example 1: Customize your button type**

        >>> import streamlit as st
        >>>
        >>> st.button("Reset", type="primary")
        >>> if st.button("Say hello"):
        ...     st.write("Why hello there")
        ... else:
        ...     st.write("Goodbye")
        >>>
        >>> if st.button("Aloha", type="tertiary"):
        ...     st.write("Ciao")

        .. output::
           https://doc-buton.streamlit.app/
           height: 300px

        **Example 2: Add icons to your button**

        Although you can add icons to your buttons through Markdown, the
        ``icon`` parameter is a convenient and consistent alternative.

        >>> import streamlit as st
        >>>
        >>> left, middle, right = st.columns(3)
        >>> if left.button("Plain button", use_container_width=True):
        ...     left.markdown("You clicked the plain button.")
        >>> if middle.button("Emoji button", icon="😃", use_container_width=True):
        ...     middle.markdown("You clicked the emoji button.")
        >>> if right.button("Material button", icon=":material/mood:", use_container_width=True):
        ...     right.markdown("You clicked the Material button.")

        .. output::
           https://doc-button-icons.streamlit.app/
           height: 220px

        primaryrB   tertiaryzhThe type argument to st.button must be "primary", "secondary", or "tertiary". 
The argument passed was "".F)	is_form_submitterrL   rN   rP   rE   rC   rD   rF   ctx)r   r#   r   dg_button)r2   rG   rH   rJ   rL   rN   rP   rC   rD   rE   rF   rX   r3   r3   r4   rA   X   s.    zButtonMixin.buttondownload_buttonrerundatar,   	file_namemime2WidgetCallback | Literal['rerun', 'ignore'] | Nonec
                C  sD   t  }|
dvrtd|
 d| j|||||||||	|
||||dS )u(  Display a download button widget.

        This is useful when you would like to provide a way for your users
        to download a file directly from your app.

        Note that the data to be downloaded is stored in-memory while the
        user is connected, so it's a good idea to keep file sizes under a
        couple hundred megabytes to conserve memory.

        If you want to prevent your app from rerunning when a user clicks the
        download button, wrap the download button in a `fragment
        <https://docs.streamlit.io/develop/concepts/architecture/fragments>`_.

        Parameters
        ----------
        label : str
            A short label explaining to the user what this button is for.
            The label can optionally contain GitHub-flavored Markdown of the
            following types: Bold, Italics, Strikethroughs, Inline Code, Links,
            and Images. Images display like icons, with a max height equal to
            the font height.

            Unsupported Markdown elements are unwrapped so only their children
            (text contents) render. Display unsupported elements as literal
            characters by backslash-escaping them. E.g.,
            ``"1\. Not an ordered list"``.

            See the ``body`` parameter of |st.markdown|_ for additional,
            supported Markdown directives.

            .. |st.markdown| replace:: ``st.markdown``
            .. _st.markdown: https://docs.streamlit.io/develop/api-reference/text/st.markdown

        data : str, bytes, or file
            The contents of the file to be downloaded.

            To prevent unncecessary recomputation, use caching when converting
            your data for download. For more information, see the Example 1
            below.

        file_name: str
            An optional string to use as the name of the file to be downloaded,
            such as ``"my_file.csv"``. If not specified, the name will be
            automatically generated.

        mime : str or None
            The MIME type of the data. If this is ``None`` (default), Streamlit
            sets the MIME type depending on the value of ``data`` as follows:

            - If ``data`` is a string or textual file (i.e. ``str`` or
              ``io.TextIOWrapper`` object), Streamlit uses the "text/plain"
              MIME type.
            - If ``data`` is a binary file or bytes (i.e. ``bytes``,
              ``io.BytesIO``, ``io.BufferedReader``, or ``io.RawIOBase``
              object), Streamlit uses the "application/octet-stream" MIME type.

            For more information about MIME types, see
            https://www.iana.org/assignments/media-types/media-types.xhtml.

        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. No two widgets may have the same key.

        help : str or None
            A tooltip that gets displayed when the button is hovered over. If
            this is ``None`` (default), no tooltip is displayed.

            The tooltip can optionally contain GitHub-flavored Markdown,
            including the Markdown directives described in the ``body``
            parameter of ``st.markdown``.

        on_click : callable, "rerun", "ignore", or None
            How the button should respond to user interaction. This controls
            whether or not the button triggers a rerun and if a callback
            function is called. This can be one of the following values:

            - ``"rerun"`` (default): The user downloads the file and the app
              reruns. No callback function is called.
            - ``"ignore"``: The user downloads the file and the app doesn't
              rerun. No callback function is called.
            - A ``callable``: The user downloads the file and app reruns. The
              callable is called before the rest of the app.
            - ``None``: This is same as ``on_click="rerun"``. This value exists
              for backwards compatibility and shouldn't be used.

        args : tuple
            An optional tuple of args to pass to the callback.

        kwargs : dict
            An optional dict of kwargs to pass to the callback.

        type : "primary", "secondary", or "tertiary"
            An optional string that specifies the button type. This can be one
            of the following:

            - ``"primary"``: The button's background is the app's primary color
              for additional emphasis.
            - ``"secondary"`` (default): The button's background coordinates
              with the app's background color for normal emphasis.
            - ``"tertiary"``: The button is plain text without a border or
              background for subtly.

        icon : str or None
            An optional emoji or icon to display next to the button label. If ``icon``
            is ``None`` (default), no icon is displayed. If ``icon`` is a
            string, the following options are valid:

            - A single-character emoji. For example, you can set ``icon="🚨"``
              or ``icon="🔥"``. Emoji short codes are not supported.

            - An icon from the Material Symbols library (rounded style) in the
              format ``":material/icon_name:"`` where "icon_name" is the name
              of the icon in snake case.

              For example, ``icon=":material/thumb_up:"`` will display the
              Thumb Up icon. Find additional icons in the `Material Symbols \
              <https://fonts.google.com/icons?icon.set=Material+Symbols&icon.style=Rounded>`_
              font library.

        disabled : bool
            An optional boolean that disables the download button if set to
            ``True``. The default is ``False``.

        use_container_width : bool
            Whether to expand the button's width to fill its parent container.
            If ``use_container_width`` is ``False`` (default), Streamlit sizes
            the button to fit its contents. If ``use_container_width`` is
            ``True``, the width of the button matches its parent container.

            In both cases, if the contents of the button are wider than the
            parent container, the contents will line wrap.

        Returns
        -------
        bool
            True if the button was clicked on the last run of the app,
            False otherwise.

        Examples
        --------
        **Example 1: Download a dataframe as a CSV file**

        When working with a large dataframe, it's recommended to fetch your
        data with a cached function. When working with a download button, it's
        similarly recommended to convert your data into a downloadable format
        with a cached function. Caching ensures that the app reruns
        effeciently.

        >>> import streamlit as st
        >>> import pandas as pd
        >>> import numpy as np
        >>>
        >>> @st.cache_data
        >>> def get_data():
        >>>     df = pd.DataFrame(
        ...         np.random.randn(50, 20), columns=("col %d" % i for i in range(20))
        ...     )
        >>>     return df
        >>>
        >>> @st.cache_data
        >>> def convert_for_download(df):
        >>>     return df.to_csv().encode("utf-8")
        >>>
        >>> df = get_data()
        >>> csv = convert_for_download(df)
        >>>
        >>> st.download_button(
        ...     label="Download CSV",
        ...     data=csv,
        ...     file_name="data.csv",
        ...     mime="text/csv",
        ...     icon=":material/download:",
        ... )

        .. output::
           https://doc-download-button-csv.streamlit.app/
           height: 200px

        **Example 2: Download a string as a text file**

        If you pass a string to the ``data`` argument, Streamlit will
        automatically use the "text/plain" MIME type.

        When you have a widget (like a text area) affecting the value of your
        download, it's recommended to use another button to prepare the
        download. In this case, use ``on_click="ignore"`` in your download
        button to prevent the download button from rerunning your app. This
        turns the download button into a frontend-only element that can be
        nested in another button.

        Without a preparation button, a user can type something into the text
        area and immediately click the download button. Because a download is
        initiated concurrently with the app rerun, this can create a race-like
        condition where the user doesn't see the updated data in their
        download.

        .. important::
           Even when you prevent your download button from triggering a rerun,
           another widget with a pending change can still trigger a rerun. For
           example, if a text area has a pending change when a user clicks a
           download button, the text area will trigger a rerun.

        >>> import streamlit as st
        >>>
        >>> message = st.text_area("Message", value="Lorem ipsum.\nStreamlit is cool.")
        >>>
        >>> if st.button("Prepare download"):
        >>>     st.download_button(
        ...         label="Download text",
        ...         data=message,
        ...         file_name="message.txt",
        ...         on_click="ignore",
        ...         type="primary",
        ...         icon=":material/download:",
        ...     )

        .. output::
           https://doc-download-button-text.streamlit.app/
           height: 250px

        **Example 3: Download a file**

        Use a context manager to open and read a local file on your Streamlit
        server. Pass the ``io.BufferedReader`` object directly to ``data``.
        Remember to specify the MIME type if you don't want the default
        type of ``"application/octet-stream"`` for generic binary data. In the
        example below, the MIME type is set to ``"image/png"`` for a PNG file.

        >>> import streamlit as st
        >>>
        >>> with open("flower.png", "rb") as file:
        ...     st.download_button(
        ...         label="Download image",
        ...         data=file,
        ...         file_name="flower.png",
        ...         mime="image/png",
        ...     )

        .. output::
           https://doc-download-button-file.streamlit.app/
           height: 200px

        rS   zqThe type argument to st.download_button must be "primary", "secondary", or "tertiary". 
The argument passed was "rV   )rG   r]   r^   r_   rH   rJ   rL   rN   rP   rC   rD   rE   rF   rX   )r#   r   _download_button)r2   rG   r]   r^   r_   rH   rJ   rL   rN   rP   rC   rD   rE   rF   rX   r3   r3   r4   r[     s2     zButtonMixin.download_buttonlink_button)rJ   rC   rD   rE   rF   urlr*   c             	   C  s0   |dvrt d| d| j|||||||dS )u  Display a link button element.

        When clicked, a new tab will be opened to the specified URL. This will
        create a new session for the user if directed within the app.

        Parameters
        ----------
        label : str
            A short label explaining to the user what this button is for.
            The label can optionally contain GitHub-flavored Markdown of the
            following types: Bold, Italics, Strikethroughs, Inline Code, Links,
            and Images. Images display like icons, with a max height equal to
            the font height.

            Unsupported Markdown elements are unwrapped so only their children
            (text contents) render. Display unsupported elements as literal
            characters by backslash-escaping them. E.g.,
            ``"1\. Not an ordered list"``.

            See the ``body`` parameter of |st.markdown|_ for additional,
            supported Markdown directives.

            .. |st.markdown| replace:: ``st.markdown``
            .. _st.markdown: https://docs.streamlit.io/develop/api-reference/text/st.markdown

        url : str
            The url to be opened on user click

        help : str or None
            A tooltip that gets displayed when the button is hovered over. If
            this is ``None`` (default), no tooltip is displayed.

            The tooltip can optionally contain GitHub-flavored Markdown,
            including the Markdown directives described in the ``body``
            parameter of ``st.markdown``.

        type : "primary", "secondary", or "tertiary"
            An optional string that specifies the button type. This can be one
            of the following:

            - ``"primary"``: The button's background is the app's primary color
              for additional emphasis.
            - ``"secondary"`` (default): The button's background coordinates
              with the app's background color for normal emphasis.
            - ``"tertiary"``: The button is plain text without a border or
              background for subtly.

        icon : str or None
            An optional emoji or icon to display next to the button label. If ``icon``
            is ``None`` (default), no icon is displayed. If ``icon`` is a
            string, the following options are valid:

            - A single-character emoji. For example, you can set ``icon="🚨"``
              or ``icon="🔥"``. Emoji short codes are not supported.

            - An icon from the Material Symbols library (rounded style) in the
              format ``":material/icon_name:"`` where "icon_name" is the name
              of the icon in snake case.

              For example, ``icon=":material/thumb_up:"`` will display the
              Thumb Up icon. Find additional icons in the `Material Symbols \
              <https://fonts.google.com/icons?icon.set=Material+Symbols&icon.style=Rounded>`_
              font library.

        disabled : bool
            An optional boolean that disables the link button if set to
            ``True``. The default is ``False``.

        use_container_width : bool
            Whether to expand the button's width to fill its parent container.
            If ``use_container_width`` is ``False`` (default), Streamlit sizes
            the button to fit its contents. If ``use_container_width`` is
            ``True``, the width of the button matches its parent container.

            In both cases, if the contents of the button are wider than the
            parent container, the contents will line wrap.

        Example
        -------
        >>> import streamlit as st
        >>>
        >>> st.link_button("Go to gallery", "https://streamlit.io/gallery")

        .. output::
           https://doc-link-button.streamlit.app/
           height: 200px

        rS   zmThe type argument to st.link_button must be "primary", "secondary", or "tertiary". 
The argument passed was "rV   )rG   rc   rJ   rE   rC   rD   rF   )r   _link_button)r2   rG   rc   rJ   rC   rD   rE   rF   r3   r3   r4   rb   !  s   ezButtonMixin.link_button	page_link)rG   rD   rJ   rE   rF   pagestr | Path | StreamlitPager9   c                C  s   | j ||||||dS )uv  Display a link to another page in a multipage app or to an external page.

        If another page in a multipage app is specified, clicking ``st.page_link``
        stops the current page execution and runs the specified page as if the
        user clicked on it in the sidebar navigation.

        If an external page is specified, clicking ``st.page_link`` opens a new
        tab to the specified page. The current script run will continue if not
        complete.

        Parameters
        ----------
        page : str, Path, or st.Page
            The file path (relative to the main script) or an st.Page indicating
            the page to switch to. Alternatively, this can be the URL to an
            external page (must start with "http://" or "https://").

        label : str
            The label for the page link. Labels are required for external pages.
            The label can optionally contain GitHub-flavored Markdown of the
            following types: Bold, Italics, Strikethroughs, Inline Code, Links,
            and Images. Images display like icons, with a max height equal to
            the font height.

            Unsupported Markdown elements are unwrapped so only their children
            (text contents) render. Display unsupported elements as literal
            characters by backslash-escaping them. E.g.,
            ``"1\. Not an ordered list"``.

            See the ``body`` parameter of |st.markdown|_ for additional,
            supported Markdown directives.

            .. |st.markdown| replace:: ``st.markdown``
            .. _st.markdown: https://docs.streamlit.io/develop/api-reference/text/st.markdown

        icon : str or None
            An optional emoji or icon to display next to the button label. If ``icon``
            is ``None`` (default), no icon is displayed. If ``icon`` is a
            string, the following options are valid:

            - A single-character emoji. For example, you can set ``icon="🚨"``
              or ``icon="🔥"``. Emoji short codes are not supported.

            - An icon from the Material Symbols library (rounded style) in the
              format ``":material/icon_name:"`` where "icon_name" is the name
              of the icon in snake case.

              For example, ``icon=":material/thumb_up:"`` will display the
              Thumb Up icon. Find additional icons in the `Material Symbols \
              <https://fonts.google.com/icons?icon.set=Material+Symbols&icon.style=Rounded>`_
              font library.

        help : str or None
            A tooltip that gets displayed when the link is hovered over. If
            this is ``None`` (default), no tooltip is displayed.

            The tooltip can optionally contain GitHub-flavored Markdown,
            including the Markdown directives described in the ``body``
            parameter of ``st.markdown``.

        disabled : bool
            An optional boolean that disables the page link if set to ``True``.
            The default is ``False``.

        use_container_width : bool
            Whether to expand the link's width to fill its parent container.
            The default is ``True`` for page links in the sidebar and ``False``
            for those in the main app.

        Example
        -------
        Consider the following example given this file structure:

        >>> your-repository/
        >>> ├── pages/
        >>> │   ├── page_1.py
        >>> │   └── page_2.py
        >>> └── your_app.py

        >>> import streamlit as st
        >>>
        >>> st.page_link("your_app.py", label="Home", icon="🏠")
        >>> st.page_link("pages/page_1.py", label="Page 1", icon="1️⃣")
        >>> st.page_link("pages/page_2.py", label="Page 2", icon="2️⃣", disabled=True)
        >>> st.page_link("http://www.google.com", label="Google", icon="🌎")

        The default navigation is shown here for comparison, but you can hide
        the default navigation using the |client.showSidebarNavigation|_
        configuration option. This allows you to create custom, dynamic
        navigation menus for your apps!

        .. |client.showSidebarNavigation| replace:: ``client.showSidebarNavigation``
        .. _client.showSidebarNavigation: https://docs.streamlit.io/develop/api-reference/configuration/config.toml#client

        .. output ::
            https://doc-page-link.streamlit.app/
            height: 350px

        )rf   rG   rD   rJ   rE   rF   )
_page_link)r2   rf   rG   rD   rJ   rE   rF   r3   r3   r4   re     s   ozButtonMixin.page_link)rC   rD   rE   rF   rX   rX   ScriptRunContext | Nonec
                C  s  t |}|dks|dkrd }n|}t| j||d dd td|d ||||||
|d
}t| jr5tdt t }||_||_	||_
d|_|
|_t| j |||| ||_|d ur^t||_|d urgt||_|dkrod|_nd|_t }t|j|||	|j|j|d	d
}| jd| |jS )Nignorer\   F)default_valuewrites_allowedr[   )	user_keyform_idrG   rD   r^   r_   rJ   rC   rF   z7`st.download_button()` can't be used in an `st.form()`.Ttrigger_valueon_change_handlerrN   rP   deserializer
serializerrX   
value_type)r   r   rY   r   r   r   r+   DownloadButtonProtoidrF   rG   defaultrC   marshall_file_get_delta_path_strrE   r   rJ   r(   rD   ignore_rerunr-   r'   r<   r5   _enqueuevalue)r2   rG   r]   r^   r_   rH   rJ   rL   rN   rP   rC   rD   rE   rF   rX   on_click_callback
element_iddownload_button_protoserdebutton_stater3   r3   r4   ra     sr   


zButtonMixin._download_buttonc          	      C  sV   t  }||_||_||_||_||_|d urt||_|d ur$t||_	| j
d|S )Nrb   )LinkButtonProtorG   rc   rC   rF   rE   r   rJ   r(   rD   rY   r{   )	r2   rG   rc   rJ   rC   rD   rE   rF   link_button_protor3   r3   r4   rd   h  s   

zButtonMixin._link_buttonc                C  s  t  }t }|s| jd|S ||_|d ur||_|d ur"t||_|d ur+t||_	|d ur2||_
t|trH|j|_|j|_|d u rG|j|_nut|trQt|}t|rm|d u s]|dkr`t ||_d|_| jd|S d}	i }
|j}	|j }
t|	}tjt||}|
 D ]#}|d }|d }|d }||kr|d u r||_|d |_||_ nq|jdkrt ||t!t"j#d| jd|S )	Nre   r7   Tscript_path	page_nameurl_pathnamepage_script_hash)rf   main_script_directoryuses_pages_directory)$PageLinkProtor#   rY   r{   rE   rG   r(   rD   r   rJ   rF   
isinstancer   _script_hashr   url_pathrf   titler   r;   r)   r   externalmain_script_pathpages_manager	get_pagesr   ospathrealpathr   valuesr   r/   r!   r   )r2   rf   rG   rD   rJ   rE   rF   page_link_protorX   ctx_main_scriptall_app_pagesr   requested_page	page_data	full_pathr   r   r3   r3   r4   rh     sj   







zButtonMixin._page_linkrW   c                C  s0  t |}t| j||d d| d |rt| jnd}td||||	||||d	}t rFt| jr8|s8tdt	 t| jsF|rFtdt	 t
 }||_||_d|_||_||_||_||_|
|_|d urjt||_|	d urst|	|_t }t|j||||j|j|dd	}|rt|||j | jd| |jS )
NF)rk   rl   enable_check_callback_rulesr7   rA   )rm   rn   rG   rD   rJ   rW   rC   rF   z.`st.button()` can't be used in an `st.form()`.z=`st.form_submit_button()` must be used inside an `st.form()`.ro   rp   )r   r   rY   r   r   r   existsr   r   r+   ButtonProtorv   rG   rw   rW   rn   rC   rF   rE   r   rJ   r(   rD   r-   r'   r<   r5   r   r|   r{   )r2   rG   rH   rJ   rW   rL   rN   rP   rC   rD   rE   rF   rX   rn   r~   button_protor   r   r3   r3   r4   rZ     st   


zButtonMixin._buttonc                 C  s
   t d| S )zGet our DeltaGenerator.r*   )r   )r2   r3   r3   r4   rY   .  s   
zButtonMixin.dg)NNNNN)rG   r;   rH   rI   rJ   rK   rL   rM   rN   rO   rP   rQ   rC   rR   rD   rK   rE   r/   rF   r/   r0   r/   )NNNNr\   NN)rG   r;   r]   r,   r^   rK   r_   rK   rH   rI   rJ   rK   rL   r`   rN   rO   rP   rQ   rC   rR   rD   rK   rE   r/   rF   r/   r0   r/   )rG   r;   rc   r;   rJ   rK   rC   rR   rD   rK   rE   r/   rF   r/   r0   r*   )rf   rg   rG   rK   rD   rK   rJ   rK   rE   r/   rF   r9   r0   r*   )rG   r;   r]   r,   r^   rK   r_   rK   rH   rI   rJ   rK   rL   r`   rN   rO   rP   rQ   rC   rR   rD   rK   rE   r/   rF   r/   rX   ri   r0   r/   )NNN)rG   r;   rH   rK   rJ   rK   rW   r/   rL   rM   rN   rO   rP   rQ   rC   rR   rD   rK   rE   r/   rF   r/   rX   ri   r0   r/   )r0   r*   )r=   r>   r?   r    rA   r[   rb   re   ra   rd   rh   rZ   propertyrY   r3   r3   r3   r4   r@   W   s    	 *   t{`V
\r@   coordinatesr;   r]   proto_download_buttonru   mimetyperK   r^   r0   Nonec                 C  s  t |tr| }|pd}net |tjr!| }| }|pd}nRt |tr-|}|p+d}nFt |tjrA|d |	 }|p?d}n2t |tj
rU|d | }|pSd}nt |tjrk|d | ped}|pid}ntdt| t rt jj||| |dd}nd}||_d S )	Nz
text/plainzapplication/octet-streamr       zInvalid binary data format: %sT)r^   is_for_static_downloadr7   )r   r;   encodeioTextIOWrapperreadbytesBytesIOseekgetvalueBufferedReader	RawIOBaseRuntimeErrorrC   r   r   get_instancemedia_file_mgraddrc   )r   r]   r   r   r^   data_as_bytesstring_datafile_urlr3   r3   r4   rx   4  sB   











	
rx   r1   )r   r;   r]   r,   r   ru   r   rK   r^   rK   r0   r   )P
__future__r   r   r   dataclassesr   pathlibr   textwrapr   typingr   r   r   r	   r
   r   r   typing_extensionsr   	streamlitr   !streamlit.elements.lib.form_utilsr   r   streamlit.elements.lib.policiesr   streamlit.elements.lib.utilsr   r   r   r   streamlit.errorsr   r   r   streamlit.file_utilr   r   streamlit.navigation.pager   streamlit.proto.Button_pb2r   r   "streamlit.proto.DownloadButton_pb2r   ru   streamlit.proto.LinkButton_pb2r   r   streamlit.proto.PageLink_pb2r   r   streamlit.runtime.metrics_utilr    streamlit.runtime.pages_managerr!   streamlit.runtime.scriptrunnerr"   r#   streamlit.runtime.stater$   r%   r&   r'   streamlit.string_utilr(   streamlit.url_utilr)   streamlit.delta_generatorr*   r+   __annotations__r;   r   r   r,   r-   r@   rx   r3   r3   r3   r4   <module>   sR   $
       i