1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Merge pull request #3316 from Budibase/tweaks

Tweaks for Joe
This commit is contained in:
Andrew Kingston 2021-11-10 16:23:55 +00:00 committed by GitHub
commit 57038b83f3
8 changed files with 129 additions and 50 deletions

View file

@ -31,11 +31,11 @@ export const getBindableProperties = (asset, componentId) => {
const deviceBindings = getDeviceBindings() const deviceBindings = getDeviceBindings()
const stateBindings = getStateBindings() const stateBindings = getStateBindings()
return [ return [
...stateBindings,
...deviceBindings,
...urlBindings,
...contextBindings, ...contextBindings,
...urlBindings,
...stateBindings,
...userBindings, ...userBindings,
...deviceBindings,
] ]
} }

View file

@ -3,8 +3,8 @@
"name": "Blocks", "name": "Blocks",
"icon": "Article", "icon": "Article",
"children": [ "children": [
"tablewithsearch", "tableblock",
"cardlistwithsearch" "cardsblock"
] ]
}, },
"section", "section",

View file

@ -27,7 +27,7 @@
if (!nested) { if (!nested) {
return bindings return bindings
} }
return [...(bindings || []), ...(componentBindings || [])] return [...(componentBindings || []), ...(bindings || [])]
} }
// Handle a value change of any type // Handle a value change of any type

View file

@ -2595,6 +2595,11 @@
"key": "linkURL", "key": "linkURL",
"label": "Link URL" "label": "Link URL"
}, },
{
"type": "boolean",
"key": "linkPeek",
"label": "Open link in modal"
},
{ {
"type": "boolean", "type": "boolean",
"key": "horizontal", "key": "horizontal",
@ -2617,9 +2622,9 @@
} }
] ]
}, },
"tablewithsearch": { "tableblock": {
"block": true, "block": true,
"name": "Table with search", "name": "Table block",
"icon": "Table", "icon": "Table",
"styles": ["size"], "styles": ["size"],
"info": "Only the first 3 search columns will be used.", "info": "Only the first 3 search columns will be used.",
@ -2730,18 +2735,23 @@
{ {
"type": "boolean", "type": "boolean",
"key": "showTitleButton", "key": "showTitleButton",
"label": "Show button", "label": "Show link button",
"defaultValue": false "defaultValue": false
}, },
{
"type": "boolean",
"label": "Open link in modal",
"key": "titleButtonPeek"
},
{ {
"type": "text", "type": "text",
"key": "titleButtonText", "key": "titleButtonText",
"label": "Button text" "label": "Button text"
}, },
{ {
"type": "event", "type": "url",
"label": "Button action", "label": "Button link",
"key": "titleButtonOnClick" "key": "titleButtonURL"
} }
] ]
}, },
@ -2759,9 +2769,9 @@
} }
] ]
}, },
"cardlistwithsearch": { "cardsblock": {
"block": true, "block": true,
"name": "Card list with search", "name": "Cards block",
"icon": "Table", "icon": "Table",
"styles": ["size"], "styles": ["size"],
"info": "Only the first 3 search columns will be used.", "info": "Only the first 3 search columns will be used.",
@ -2838,7 +2848,22 @@
"key": "cardImageURL", "key": "cardImageURL",
"label": "Image URL", "label": "Image URL",
"nested": true "nested": true
},
{
"type": "boolean",
"key": "linkCardTitle",
"label": "Link card title"
},
{
"type": "boolean",
"key": "cardPeek",
"label": "Open link in modal"
},
{
"type": "url",
"label": "Link screen",
"key": "cardURL",
"nested": true
}, },
{ {
"type": "boolean", "type": "boolean",
@ -2855,7 +2880,6 @@
"key": "cardButtonText", "key": "cardButtonText",
"label": "Button text", "label": "Button text",
"nested": true "nested": true
}, },
{ {
"type": "event", "type": "event",
@ -2872,7 +2896,12 @@
{ {
"type": "boolean", "type": "boolean",
"key": "showTitleButton", "key": "showTitleButton",
"label": "Show button" "label": "Show link button"
},
{
"type": "boolean",
"label": "Open link in modal",
"key": "titleButtonPeek"
}, },
{ {
"type": "text", "type": "text",
@ -2880,9 +2909,21 @@
"label": "Button text" "label": "Button text"
}, },
{ {
"type": "event", "type": "url",
"label": "Button action", "label": "Button link",
"key": "titleButtonOnClick" "key": "titleButtonURL"
}
]
},
{
"section": true,
"name": "Advanced",
"settings": [
{
"type": "field",
"label": "ID column for linking (appended to URL)",
"key": "linkColumn",
"placeholder": "Default"
} }
] ]
} }

View file

@ -8,15 +8,22 @@
export let description export let description
export let imageURL export let imageURL
export let linkURL export let linkURL
export let linkPeek
export let horizontal export let horizontal
export let showButton export let showButton
export let buttonText export let buttonText
export let buttonOnClick export let buttonOnClick
const { styleable, linkable } = getContext("sdk") const { styleable, routeStore } = getContext("sdk")
const component = getContext("component") const component = getContext("component")
$: external = linkURL && !linkURL.startsWith("/") const handleLink = e => {
if (!linkURL) {
return
}
e.preventDefault()
routeStore.actions.navigate(linkURL, linkPeek)
}
</script> </script>
<div <div
@ -37,16 +44,10 @@
<div class="spectrum-Card-header"> <div class="spectrum-Card-header">
<div <div
class="spectrum-Card-title spectrum-Heading spectrum-Heading--sizeXS" class="spectrum-Card-title spectrum-Heading spectrum-Heading--sizeXS"
on:click={handleLink}
class:link={linkURL}
> >
{#if linkURL} {title || "Card Title"}
{#if external}
<a href={linkURL}>{title || "Card Title"}</a>
{:else}
<a use:linkable href={linkURL}>{title || "Card Title"}</a>
{/if}
{:else}
{title || "Card Title"}
{/if}
</div> </div>
</div> </div>
{#if subtitle} {#if subtitle}
@ -88,11 +89,12 @@
.spectrum-Card-container { .spectrum-Card-container {
padding: var(--spectrum-global-dimension-size-50) 0; padding: var(--spectrum-global-dimension-size-50) 0;
} }
.spectrum-Card-title :global(a) { .spectrum-Card-title.link {
text-overflow: ellipsis; transition: color 130ms ease-in-out;
overflow: hidden; }
white-space: nowrap; .spectrum-Card-title.link:hover {
width: 100%; cursor: pointer;
color: var(--spectrum-link-primary-m-text-color-hover);
} }
.spectrum-Card-subtitle { .spectrum-Card-subtitle {
text-overflow: ellipsis; text-overflow: ellipsis;
@ -103,14 +105,6 @@
word-wrap: anywhere; word-wrap: anywhere;
white-space: pre-wrap; white-space: pre-wrap;
} }
a {
transition: color 130ms ease-in-out;
color: var(--spectrum-alias-text-color);
}
a:hover {
color: var(--spectrum-link-primary-m-text-color-hover);
}
.horizontal .spectrum-Card-coverPhoto { .horizontal .spectrum-Card-coverPhoto {
flex: 0 0 160px; flex: 0 0 160px;
height: auto; height: auto;

View file

@ -14,15 +14,20 @@
export let limit export let limit
export let showTitleButton export let showTitleButton
export let titleButtonText export let titleButtonText
export let titleButtonOnClick export let titleButtonURL
export let titleButtonPeek
export let cardTitle export let cardTitle
export let cardSubtitle export let cardSubtitle
export let cardDescription export let cardDescription
export let cardImageURL export let cardImageURL
export let linkCardTitle
export let cardURL
export let cardPeek
export let cardHorizontal export let cardHorizontal
export let showCardButton export let showCardButton
export let cardButtonText export let cardButtonText
export let cardButtonOnClick export let cardButtonOnClick
export let linkColumn
const { API, styleable } = getContext("sdk") const { API, styleable } = getContext("sdk")
const context = getContext("context") const context = getContext("context")
@ -37,11 +42,27 @@
let formId let formId
let dataProviderId let dataProviderId
let repeaterId
let schema let schema
$: enrichedSearchColumns = enrichSearchColumns(searchColumns, schema) $: enrichedSearchColumns = enrichSearchColumns(searchColumns, schema)
$: enrichedFilter = enrichFilter(filter, enrichedSearchColumns, formId) $: enrichedFilter = enrichFilter(filter, enrichedSearchColumns, formId)
$: cardWidth = cardHorizontal ? 420 : 300 $: cardWidth = cardHorizontal ? 420 : 300
$: fullCardURL = buildFullCardUrl(
linkCardTitle,
cardURL,
repeaterId,
linkColumn
)
$: titleButtonAction = [
{
"##eventHandlerType": "Navigate To",
parameters: {
peek: titleButtonPeek,
url: titleButtonURL,
},
},
]
// Enrich the default filter with the specified search fields // Enrich the default filter with the specified search fields
const enrichFilter = (filter, columns, formId) => { const enrichFilter = (filter, columns, formId) => {
@ -75,6 +96,16 @@
return enrichedColumns.slice(0, 3) return enrichedColumns.slice(0, 3)
} }
// Builds a full details page URL for the card title
const buildFullCardUrl = (link, url, repeaterId, linkColumn) => {
if (!link || !url || !repeaterId) {
return null
}
const col = linkColumn || "_id"
const split = url.split("/:")
return `${split[0]}/{{ [${repeaterId}].[${col}] }}`
}
// Load the datasource schema on mount so we can determine column types // Load the datasource schema on mount so we can determine column types
onMount(async () => { onMount(async () => {
if (dataSource) { if (dataSource) {
@ -114,7 +145,7 @@
<BlockComponent <BlockComponent
type="button" type="button"
props={{ props={{
onClick: titleButtonOnClick, onClick: titleButtonAction,
text: titleButtonText, text: titleButtonText,
type: "cta", type: "cta",
}} }}
@ -137,6 +168,7 @@
> >
<BlockComponent <BlockComponent
type="repeater" type="repeater"
bind:id={repeaterId}
context="repeater" context="repeater"
props={{ props={{
dataProvider: `{{ literal [${dataProviderId}] }}`, dataProvider: `{{ literal [${dataProviderId}] }}`,
@ -162,6 +194,8 @@
showButton: showCardButton, showButton: showCardButton,
buttonText: cardButtonText, buttonText: cardButtonText,
buttonOnClick: cardButtonOnClick, buttonOnClick: cardButtonOnClick,
linkURL: fullCardURL,
linkPeek: cardPeek,
}} }}
styles={{ styles={{
width: "auto", width: "auto",

View file

@ -22,7 +22,8 @@
export let linkPeek export let linkPeek
export let showTitleButton export let showTitleButton
export let titleButtonText export let titleButtonText
export let titleButtonOnClick export let titleButtonURL
export let titleButtonPeek
const { API, styleable } = getContext("sdk") const { API, styleable } = getContext("sdk")
const context = getContext("context") const context = getContext("context")
@ -41,6 +42,15 @@
$: enrichedSearchColumns = enrichSearchColumns(searchColumns, schema) $: enrichedSearchColumns = enrichSearchColumns(searchColumns, schema)
$: enrichedFilter = enrichFilter(filter, enrichedSearchColumns, formId) $: enrichedFilter = enrichFilter(filter, enrichedSearchColumns, formId)
$: titleButtonAction = [
{
"##eventHandlerType": "Navigate To",
parameters: {
peek: titleButtonPeek,
url: titleButtonURL,
},
},
]
// Enrich the default filter with the specified search fields // Enrich the default filter with the specified search fields
const enrichFilter = (filter, columns, formId) => { const enrichFilter = (filter, columns, formId) => {
@ -113,7 +123,7 @@
<BlockComponent <BlockComponent
type="button" type="button"
props={{ props={{
onClick: titleButtonOnClick, onClick: titleButtonAction,
text: titleButtonText, text: titleButtonText,
type: "cta", type: "cta",
}} }}

View file

@ -1,2 +1,2 @@
export { default as tablewithsearch } from "./TableWithSearch.svelte" export { default as tableblock } from "./TableBlock.svelte"
export { default as cardlistwithsearch } from "./CardListWithSearch.svelte" export { default as cardsblock } from "./CardsBlock.svelte"