mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
state fixes; deprecation
This commit is contained in:
parent
651d67a0c6
commit
8e1577e6de
@ -844,6 +844,8 @@ class State(OutputComponent):
|
||||
Parameters:
|
||||
label (str): component name in interface (not used).
|
||||
"""
|
||||
warnings.warn("The State output component will be deprecated. Please use the "
|
||||
"new Stateful component.")
|
||||
super().__init__(label)
|
||||
|
||||
@classmethod
|
||||
|
@ -8,18 +8,17 @@ class StateHolder:
|
||||
state_dict: Dict[str, Any] = {}
|
||||
|
||||
def __init__(self, id):
|
||||
self.id = id
|
||||
self.__id = id
|
||||
|
||||
def __setattr__(self, name, value):
|
||||
if name == "state":
|
||||
StateHolder.state_dict[self.id] = value
|
||||
else:
|
||||
if name.startswith("_"):
|
||||
self.__dict__[name] = value
|
||||
|
||||
else:
|
||||
StateHolder.state_dict[(self.__id, name)] = value
|
||||
|
||||
def __getattr__(self, name):
|
||||
if name == "state":
|
||||
return StateHolder.state_dict.get(self.id, None)
|
||||
else:
|
||||
if name.startswith("_"):
|
||||
return self.__dict__[name]
|
||||
else:
|
||||
return StateHolder.state_dict.get((self.__id, name), None)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user