wg-backend-django/dell-env/lib/python3.11/site-packages/dash/dcc/LogoutButton.py
2023-10-30 14:40:43 +07:00

108 lines
3.1 KiB
Python

# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class LogoutButton(Component):
"""A LogoutButton component.
Logout button to submit a form post request to the `logout_url` prop.
Usage is intended for dash-deployment-server authentication.
DDS usage:
`dcc.LogoutButton(logout_url=os.getenv('DASH_LOGOUT_URL'))`
Custom usage:
- Implement a login mechanism.
- Create a flask route with a post method handler.
`@app.server.route('/logout', methods=['POST'])`
- The logout route should perform what's necessary for the user to logout.
- If you store the session in a cookie, clear the cookie:
`rep = flask.Response(); rep.set_cookie('session', '', expires=0)`
- Create a logout button component and assign it the logout_url
`dcc.LogoutButton(logout_url='/logout')`
See https://dash.plotly.com/dash-core-components/logout_button
for more documentation and examples.
Keyword arguments:
- id (string; optional):
Id of the button.
- className (string; optional):
CSS class for the button.
- label (string; default 'Logout'):
Text of the button.
- loading_state (dict; optional):
Object that holds the loading state object coming from
dash-renderer.
`loading_state` is a dict with keys:
- component_name (string; optional):
Holds the name of the component that is loading.
- is_loading (boolean; optional):
Determines if the component is loading or not.
- prop_name (string; optional):
Holds which property is loading.
- logout_url (string; optional):
Url to submit a post logout request.
- method (string; default 'post'):
Http method to submit the logout form.
- style (dict; optional):
Style of the button."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_core_components"
_type = "LogoutButton"
@_explicitize_args
def __init__(
self,
id=Component.UNDEFINED,
label=Component.UNDEFINED,
logout_url=Component.UNDEFINED,
style=Component.UNDEFINED,
method=Component.UNDEFINED,
className=Component.UNDEFINED,
loading_state=Component.UNDEFINED,
**kwargs
):
self._prop_names = [
"id",
"className",
"label",
"loading_state",
"logout_url",
"method",
"style",
]
self._valid_wildcard_attributes = []
self.available_properties = [
"id",
"className",
"label",
"loading_state",
"logout_url",
"method",
"style",
]
self.available_wildcard_properties = []
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args}
super(LogoutButton, self).__init__(**args)