Expanding the focus behaviour to more component types in the builder. Minor fix for cypress test
This commit is contained in:
parent
8a189f3451
commit
663a4ee7c7
|
@ -13,6 +13,10 @@
|
|||
export let size = "M"
|
||||
export let active = false
|
||||
export let fullWidth = false
|
||||
export let autofocus = false
|
||||
|
||||
let focus = false
|
||||
$: focus = autofocus
|
||||
|
||||
function longPress(element) {
|
||||
if (!longPressable) return
|
||||
|
@ -44,9 +48,16 @@
|
|||
class:fullWidth
|
||||
class="spectrum-ActionButton spectrum-ActionButton--size{size}"
|
||||
class:active
|
||||
class:is-focused={focus}
|
||||
{disabled}
|
||||
on:longPress
|
||||
on:click|preventDefault
|
||||
on:focus={() => {
|
||||
focus = true
|
||||
}}
|
||||
on:blur={() => {
|
||||
focus = false
|
||||
}}
|
||||
>
|
||||
{#if longPressable}
|
||||
<svg
|
||||
|
@ -80,4 +91,10 @@
|
|||
.active svg {
|
||||
color: var(--spectrum-global-color-blue-600);
|
||||
}
|
||||
button.is-focused {
|
||||
border-color: var(
|
||||
--spectrum-textfield-m-border-color-down,
|
||||
var(--spectrum-alias-border-color-mouse-focus)
|
||||
);
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -56,8 +56,12 @@
|
|||
bind:this={comboInput}
|
||||
{id}
|
||||
type="text"
|
||||
on:focus={() => (focus = true)}
|
||||
on:blur={() => (focus = false)}
|
||||
on:focus={() => {
|
||||
focus = true
|
||||
}}
|
||||
on:blur={() => {
|
||||
focus = false
|
||||
}}
|
||||
on:change={onType}
|
||||
value={value || ""}
|
||||
placeholder={placeholder || ""}
|
||||
|
|
|
@ -118,20 +118,14 @@ filterTests(['all'], () => {
|
|||
cy.get("[data-cy=setting-field] .spectrum-InputGroup")
|
||||
.should("have.class", "is-focused").within(() => {
|
||||
cy.get("input").should(($input) => {
|
||||
expect($input).to.have.length(1)
|
||||
inputClasses = Cypress.$($input).attr('class')
|
||||
})
|
||||
})
|
||||
|
||||
cy.focused().then(($focused) => {
|
||||
const focusedClasses = Cypress.$($focused).attr('class')
|
||||
expect(inputClasses).to.equal(focusedClasses)
|
||||
})
|
||||
}
|
||||
|
||||
const testFieldFocusOnCreate = (componentLabel) => {
|
||||
let inputClasses
|
||||
|
||||
cy.log("Adding: " + componentLabel)
|
||||
cy.addComponent("Form", componentLabel).then((componentId) => {
|
||||
|
||||
refocusTest(componentId)
|
||||
|
@ -139,15 +133,10 @@ filterTests(['all'], () => {
|
|||
cy.get("[data-cy=setting-field] .spectrum-InputGroup")
|
||||
.should("have.class", "is-focused").within(() => {
|
||||
cy.get("input").should(($input) => {
|
||||
expect($input).to.have.length(1)
|
||||
inputClasses = Cypress.$($input).attr('class')
|
||||
})
|
||||
})
|
||||
})
|
||||
cy.focused().then(($focused) => {
|
||||
const focusedClasses = Cypress.$($focused).attr('class')
|
||||
expect(inputClasses).to.equal(focusedClasses)
|
||||
})
|
||||
}
|
||||
|
||||
componentTypeLabels.forEach( testFieldFocusOnCreate )
|
||||
|
|
|
@ -425,8 +425,10 @@ export const getFrontendStore = () => {
|
|||
state.currentView = "component"
|
||||
state.selectedComponentId = componentInstance._id
|
||||
|
||||
const focusSetting = definition.settings.filter((setting) => { return setting.required })
|
||||
const mappedSettings = focusSetting.map((setting) => {
|
||||
const focusSetting = definition.settings.filter(setting => {
|
||||
return setting.required
|
||||
})
|
||||
const mappedSettings = focusSetting.map(setting => {
|
||||
return {
|
||||
key: setting.key,
|
||||
target: state.selectedComponentId,
|
||||
|
@ -434,7 +436,7 @@ export const getFrontendStore = () => {
|
|||
}
|
||||
})
|
||||
|
||||
if(focusSetting.length){
|
||||
if (focusSetting.length) {
|
||||
state.builderFocus = mappedSettings
|
||||
}
|
||||
return state
|
||||
|
|
|
@ -210,7 +210,7 @@
|
|||
store.update(state => ({
|
||||
...state,
|
||||
builderFocus :
|
||||
[{...data}]
|
||||
[...data]
|
||||
}))
|
||||
} else {
|
||||
console.warn(`Client sent unknown event type: ${type}`)
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
|
||||
export let value = ""
|
||||
export let maxIconsPerPage = 30
|
||||
export let autofocus = false
|
||||
|
||||
let searchTerm = ""
|
||||
let selectedLetter = "A"
|
||||
|
@ -117,7 +118,9 @@
|
|||
</script>
|
||||
|
||||
<div bind:this={buttonAnchor}>
|
||||
<ActionButton on:click={dropdown.show}>{displayValue}</ActionButton>
|
||||
<ActionButton on:click={dropdown.show} {autofocus}>
|
||||
{displayValue}
|
||||
</ActionButton>
|
||||
</div>
|
||||
<Popover bind:this={dropdown} on:open={setSelectedUI} anchor={buttonAnchor}>
|
||||
<div class="container">
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
export let value
|
||||
export let bindings
|
||||
export let autofocus
|
||||
|
||||
$: urlOptions = $store.screens
|
||||
.map(screen => screen.routing?.route)
|
||||
|
@ -16,4 +17,5 @@
|
|||
on:change
|
||||
options={urlOptions}
|
||||
appendBindingsAsOptions={false}
|
||||
{autofocus}
|
||||
/>
|
||||
|
|
|
@ -201,7 +201,6 @@
|
|||
class="components-pane"
|
||||
use:clickOutside={() => {
|
||||
if ($store?.builderFocus) {
|
||||
console.log($store?.builderFocus)
|
||||
const otherSettings = $store?.builderFocus?.filter(field => {
|
||||
return field.location !== "component_settings"
|
||||
})
|
||||
|
|
|
@ -1034,7 +1034,8 @@
|
|||
{
|
||||
"type": "icon",
|
||||
"label": "Icon",
|
||||
"key": "icon"
|
||||
"key": "icon",
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"type": "select",
|
||||
|
|
|
@ -34,11 +34,13 @@
|
|||
<span
|
||||
class="showMe spectrum-Link"
|
||||
on:click={() => {
|
||||
builderStore.actions.setFocus({
|
||||
location: "component_settings",
|
||||
key: "url",
|
||||
target: $component.id,
|
||||
})
|
||||
builderStore.actions.setFocus([
|
||||
{
|
||||
location: "component_settings",
|
||||
key: "url",
|
||||
target: $component.id,
|
||||
},
|
||||
])
|
||||
}}
|
||||
>
|
||||
Show me
|
||||
|
|
|
@ -28,14 +28,29 @@
|
|||
/>
|
||||
{:else if $builderStore.inBuilder}
|
||||
<div use:styleable={styles}>
|
||||
<Placeholder />
|
||||
<Placeholder>
|
||||
<div slot="content">
|
||||
Add the <mark>Icon</mark> in the settings menu
|
||||
<span
|
||||
class="showMe spectrum-Link"
|
||||
on:click={() => {
|
||||
builderStore.actions.setFocus([
|
||||
{
|
||||
location: "component_settings",
|
||||
key: "icon",
|
||||
target: $component.id,
|
||||
},
|
||||
])
|
||||
}}
|
||||
>
|
||||
Show me
|
||||
</span>
|
||||
</div>
|
||||
</Placeholder>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<style>
|
||||
div {
|
||||
font-style: italic;
|
||||
}
|
||||
@media (hover: hover) {
|
||||
.hoverable:hover {
|
||||
color: var(--spectrum-alias-icon-color-selected-hover) !important;
|
||||
|
|
|
@ -21,11 +21,13 @@
|
|||
<span
|
||||
class="showMe spectrum-Link"
|
||||
on:click={() => {
|
||||
builderStore.actions.setFocus({
|
||||
location: "component_settings",
|
||||
key: "url",
|
||||
target: $component.id,
|
||||
})
|
||||
builderStore.actions.setFocus([
|
||||
{
|
||||
location: "component_settings",
|
||||
key: "url",
|
||||
target: $component.id,
|
||||
},
|
||||
])
|
||||
}}
|
||||
>
|
||||
Show me
|
||||
|
|
|
@ -21,11 +21,13 @@
|
|||
<span
|
||||
class="showMe spectrum-Link"
|
||||
on:click={() => {
|
||||
builderStore.actions.setFocus({
|
||||
location: "component_settings",
|
||||
key: "value",
|
||||
target: $component.id,
|
||||
})
|
||||
builderStore.actions.setFocus([
|
||||
{
|
||||
location: "component_settings",
|
||||
key: "value",
|
||||
target: $component.id,
|
||||
},
|
||||
])
|
||||
}}
|
||||
>
|
||||
Show me
|
||||
|
|
|
@ -15,16 +15,27 @@
|
|||
<div use:styleable={$component.styles}>
|
||||
<Placeholder>
|
||||
<div slot="content">
|
||||
Use the settings panel to select a <mark>Provider</mark> and start
|
||||
building your chart
|
||||
Use the settings panel start building your chart
|
||||
<span
|
||||
class="showMe spectrum-Link"
|
||||
on:click={() => {
|
||||
builderStore.actions.setFocus({
|
||||
location: "component_settings",
|
||||
key: "dataProvider",
|
||||
target: $component.id,
|
||||
})
|
||||
builderStore.actions.setFocus([
|
||||
{
|
||||
location: "component_settings",
|
||||
key: "dataProvider",
|
||||
target: $component.id,
|
||||
},
|
||||
{
|
||||
location: "component_settings",
|
||||
key: "valueColumns",
|
||||
target: $component.id,
|
||||
},
|
||||
{
|
||||
location: "component_settings",
|
||||
key: "dataColumns",
|
||||
target: $component.id,
|
||||
},
|
||||
])
|
||||
}}
|
||||
>
|
||||
Show me
|
||||
|
|
|
@ -84,11 +84,13 @@
|
|||
<span
|
||||
class="showMe spectrum-Link"
|
||||
on:click={() => {
|
||||
builderStore.actions.setFocus({
|
||||
location: "component_settings",
|
||||
key: "field",
|
||||
target: $component.id,
|
||||
})
|
||||
builderStore.actions.setFocus([
|
||||
{
|
||||
location: "component_settings",
|
||||
key: "field",
|
||||
target: $component.id,
|
||||
},
|
||||
])
|
||||
}}
|
||||
>
|
||||
Show me
|
||||
|
|
|
@ -78,7 +78,7 @@ const createBuilderStore = () => {
|
|||
},
|
||||
setFocus: data => {
|
||||
window.parent.postMessage({ type: "builder-focus", data })
|
||||
}
|
||||
},
|
||||
}
|
||||
return {
|
||||
...store,
|
||||
|
|
Loading…
Reference in New Issue