1
0
Fork 0
mirror of synced 2024-07-05 06:20:55 +12:00

Merge branch 'develop' of github.com:Budibase/budibase into develop

This commit is contained in:
mike12345567 2021-08-06 13:16:04 +01:00
commit 6414614312
5 changed files with 46 additions and 5 deletions

View file

@ -9,6 +9,7 @@
export let text = null
export let disabled = false
export let error = null
export let size = "M"
const dispatch = createEventDispatcher()
const onChange = e => {
@ -18,5 +19,5 @@
</script>
<Field {label} {labelPosition} {error}>
<Checkbox {error} {disabled} {text} {value} on:change={onChange} />
<Checkbox {error} {disabled} {text} {value} {size} on:change={onChange} />
</Field>

View file

@ -8,6 +8,7 @@
export let id = null
export let text = null
export let disabled = false
export let size = null
const dispatch = createEventDispatcher()
const onChange = event => {
@ -16,7 +17,7 @@
</script>
<label
class="spectrum-Checkbox spectrum-Checkbox--sizeM spectrum-Checkbox--emphasized"
class="spectrum-Checkbox spectrum-Checkbox--size{size} spectrum-Checkbox--emphasized"
class:is-invalid={!!error}
>
<input

View file

@ -27,6 +27,7 @@ module.exports.definition = {
requestMethod: "POST",
url: "http://",
requestBody: "{}",
headers: "{}",
},
schema: {
inputs: {
@ -45,6 +46,11 @@ module.exports.definition = {
title: "JSON Body",
customType: "wide",
},
headers: {
type: "string",
title: "Headers",
customType: "wide",
},
},
required: ["requestMethod", "url"],
},
@ -65,7 +71,7 @@ module.exports.definition = {
}
module.exports.run = async function ({ inputs }) {
let { requestMethod, url, requestBody } = inputs
let { requestMethod, url, requestBody, headers } = inputs
if (!url.startsWith("http")) {
url = `http://${url}`
}
@ -84,6 +90,15 @@ module.exports.run = async function ({ inputs }) {
request.headers = {
"Content-Type": "application/json",
}
if (headers && headers.length !== 0) {
try {
const customHeaders = JSON.parse(headers)
request.headers = { ...request.headers, ...customHeaders }
} catch (err) {
console.error(err)
}
}
}
try {

View file

@ -1868,7 +1868,6 @@
"booleanfield": {
"name": "Checkbox",
"icon": "Checkmark",
"styles": ["size"],
"illegalChildren": ["section"],
"settings": [
{
@ -1886,6 +1885,30 @@
"label": "Text",
"key": "text"
},
{
"type": "select",
"label": "Size",
"key": "size",
"options": [
{
"label": "Small",
"value": "S"
},
{
"label": "Medium",
"value": "M"
},
{
"label": "Large",
"value": "L"
},
{
"label": "Extra large",
"value": "XL"
}
],
"defaultValue": "M"
},
{
"type": "boolean",
"label": "Disabled",

View file

@ -6,7 +6,7 @@
export let label
export let text
export let disabled = false
export let size
let fieldState
let fieldApi
</script>
@ -26,6 +26,7 @@
disabled={$fieldState.disabled}
error={$fieldState.error}
id={$fieldState.fieldId}
{size}
on:change={e => fieldApi.setValue(e.detail)}
{text}
/>