-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode_setup.py
60 lines (52 loc) · 2.02 KB
/
code_setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-
import ipywidgets as widgets
import aiidalab_widgets_base as awb
from utils import utils
import pathlib
path_to_default_codes = pathlib.Path.cwd() /'utils'/ "default_codes.yaml"
class CodeSetup(widgets.VBox):
def __init__(self, plugin_name: str, new_code=False):
comp_res = awb.ComputationalResourcesWidget()
self.codes = widgets.Dropdown(
description="code",
options=utils.codes_list() + ["None"],
value=utils.fix_values(plugin_name),
style={"description_width": "initial"},
)
self.stash_address = widgets.Text(
description="Stash Address",
value=utils.read_yaml_data(path_to_default_codes, names=['stash_address'])['stash_address'],
style={"description_width": "initial"},
layout=widgets.Layout(width="40%"),
)
self.account = widgets.Text(
description="account",
value = 'em05',
style = {"description_width": "initial"},
)
self.wall_time = widgets.IntText(
description="wall time",
value = 1800,
style = {"description_width": "initial"},
)
self.default_button = widgets.Button(
description="Save as default", button_style="info"
)
if new_code:
comp_res.code_select_dropdown.layout.visibility = "hidden"
def on_click(b):
utils.update_codes(
{
plugin_name: self.codes.value,
"stash_address": self.stash_address.value,
}
)
self.default_button.on_click(on_click)
self.children = [
widgets.VBox(
children=[comp_res] * new_code
+ [widgets.HBox(children=[self.codes,self.stash_address,self.default_button]*(not new_code) )]
+ [widgets.HBox(children=[self.account,self.wall_time]*(not new_code) )]
),
]
super().__init__(children=self.children)