X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=turbot%2Fblocks.py;h=cdce64a2f99aa3b83aa230418e0338f4589e9211;hb=c6ce6535d35284aad823b9f325e54ddb67ea1f3e;hp=a18c0558a072cb18e7284123b4311d55a2537916;hpb=48b4faf7c1e15cf1db658dcf906bd9b8e7a0949d;p=turbot diff --git a/turbot/blocks.py b/turbot/blocks.py index a18c055..cdce64a 100644 --- a/turbot/blocks.py +++ b/turbot/blocks.py @@ -1,3 +1,8 @@ +def divider_block(): + return { + "type": "divider" + } + def text_block(body): return { "text": { @@ -6,20 +11,63 @@ def text_block(body): } } -def section_block(block): - return { +def section_block(block, block_id=None): + + block = { "type": "section", **block } + if block_id: + block['block_id'] = block_id + + return block + def actions_block(*elements): return { "type": "actions", "elements": list(elements) } -def button_block(label, name): +def checkbox_block(label, text, name, checked=False): + + element = { + "type": "checkboxes", + "action_id": name, + "options": [ + { + "value": name, + "text": { + "type": "plain_text", + "text": text + } + } + ] + } + + if checked: + element["initial_options"] = [{ + "value": name, + "text": { + "type": "plain_text", + "text": text + } + }] + return { + "type": "input", + "block_id": name, + "element": element, + "optional": True, + "label": { + "type": "plain_text", + "text": label + } + } + +def button_block(label, name, extra=None): + + block = { "type": "button", "text": { "type": "plain_text", @@ -29,21 +77,77 @@ def button_block(label, name): "value": name } -def input_block(label, name, placeholder, optional=False): + if extra: + block['action_id'] = extra + + return block + +def accessory_block(main, accessory): + return { + **main, + "accessory": { + **accessory + } + } + +def input_block(label, name, placeholder, initial_value=None, optional=False): + + element = { + "type": "plain_text_input", + "action_id": name, + "placeholder": { + "type": "plain_text", + "text": placeholder, + } + } + + if initial_value: + element["initial_value"] = initial_value + return { "type": "input", "block_id": name, "optional": optional, - "element": { - "type": "plain_text_input", - "action_id": name, - "placeholder": { - "type": "plain_text", - "text": placeholder, - } - }, + "element": element, "label": { "type": "plain_text", "text": label } } + +def multi_select_block(label, name, placeholder, options, + initial_options=None): + + multi_select = { + "action_id": name, + "type": "multi_static_select", + "placeholder": { + "type": "plain_text", + "text": placeholder + }, + "options": [ + { + "text": { + "type": "plain_text", + "text": option + }, + "value": option + } for option in options + ] + } + + if initial_options: + multi_select["initial_options"] = [ + { + "text": { + "type": "plain_text", + "text": option + }, + "value": option + } for option in initial_options + ] + + return accessory_block( + section_block(text_block("*{}*".format(label)), block_id=name), + multi_select + )