revisit 0.0.7__py2.py3-none-any.whl → 0.0.8__py2.py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
revisit/revisit.py
CHANGED
@@ -58,6 +58,9 @@ class _WrappedResponse(_JSONableBaseModel):
|
|
58
58
|
self.root = _validate_response(self.root.__dict__)
|
59
59
|
return self
|
60
60
|
|
61
|
+
def clone(self):
|
62
|
+
return response(**self.root.__dict__)
|
63
|
+
|
61
64
|
|
62
65
|
# Private
|
63
66
|
class _WrappedComponent(_JSONableBaseModel):
|
@@ -85,9 +88,20 @@ class _WrappedComponent(_JSONableBaseModel):
|
|
85
88
|
return None
|
86
89
|
|
87
90
|
def edit_response(self, id: str, **kwargs) -> _WrappedComponent:
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
+
print(self.root.response)
|
92
|
+
for r in self.root.response:
|
93
|
+
if r.root.id == id:
|
94
|
+
# Get dict
|
95
|
+
response_dict = r.root.__dict__
|
96
|
+
# Create new response
|
97
|
+
new_response = response(**response_dict)
|
98
|
+
# Set with new values
|
99
|
+
new_response.set(**kwargs)
|
100
|
+
# Filter out old response
|
101
|
+
self.root.response = [_r for _r in self.root.response if _r.root.id != id]
|
102
|
+
# Add new response
|
103
|
+
self.root.response.append(new_response)
|
104
|
+
# Return component
|
91
105
|
return self
|
92
106
|
|
93
107
|
raise ValueError('No response with given ID found.')
|
@@ -105,6 +119,9 @@ class _WrappedComponent(_JSONableBaseModel):
|
|
105
119
|
|
106
120
|
return self
|
107
121
|
|
122
|
+
def clone(self, component_name__):
|
123
|
+
return component(**self.root.__dict__, component_name__=component_name__)
|
124
|
+
|
108
125
|
|
109
126
|
class _WrappedStudyMetadata(_JSONableBaseModel):
|
110
127
|
root: rvt_models.StudyMetadata
|
@@ -1,9 +1,9 @@
|
|
1
1
|
revisit/__init__.py,sha256=QCvYt8m9QwpjcK4dv6GlLMUDCzRXGy16cua1r2biNCg,255
|
2
2
|
revisit/models.py,sha256=c-Hsd6XqeIP-hybH6MUovHG65XXueRhaMEVJZW1ViX0,120701
|
3
|
-
revisit/revisit.py,sha256=
|
3
|
+
revisit/revisit.py,sha256=huYhGnzG5gL2KA3Lw0dIDCI8erm82uP6k5XDcoo_Q38,22683
|
4
4
|
revisit/widget.py,sha256=qx1xehXLLYlSdR44lDJ_nnb5czljsvGFBZNEV79G77I,1850
|
5
5
|
revisit/static/widget.css,sha256=TLu5F6k0CvowQtmApPswG-JZUXYszo7a10dVWKnZsIg,647
|
6
6
|
revisit/static/widget.js,sha256=MlZ2jHlh_ADsUKMC5nZaSAmW73-4y2B57NcS3E5Jh3Q,187153
|
7
|
-
revisit-0.0.
|
8
|
-
revisit-0.0.
|
9
|
-
revisit-0.0.
|
7
|
+
revisit-0.0.8.dist-info/METADATA,sha256=RShPLubx2i7A4ZKXmPy0uzGocBhkZHZmbpdDk4iobhQ,1712
|
8
|
+
revisit-0.0.8.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
|
9
|
+
revisit-0.0.8.dist-info/RECORD,,
|
File without changes
|