82 lines
1.8 KiB
Svelte
82 lines
1.8 KiB
Svelte
|
<script>
|
||
|
import PlusButton from "../common/PlusButton.svelte"
|
||
|
|
||
|
export let meta = []
|
||
|
export let size = ""
|
||
|
export let values = []
|
||
|
export let propertyName
|
||
|
export let onStyleChanged = () => {}
|
||
|
|
||
|
let _values = values.map(v => v)
|
||
|
|
||
|
$: onStyleChanged(_values)
|
||
|
|
||
|
const PROPERTY_OPTIONS = {
|
||
|
Direction: {
|
||
|
vertical: ["column", "ri-layout-column-line"],
|
||
|
horizontal: ["row", "ri-layout-row-line"],
|
||
|
},
|
||
|
Align: {
|
||
|
left: ["flex-start", "ri-align-left"],
|
||
|
center: ["center", "ri-align-center"],
|
||
|
right: ["flex-end", "ri-align-right"],
|
||
|
space: ["space-between", "ri-space"],
|
||
|
},
|
||
|
Justify: {
|
||
|
left: ["flex-start", "ri-align-left"],
|
||
|
center: ["center", "ri-align-center"],
|
||
|
right: ["flex-end", "ri-align-right"],
|
||
|
space: ["space-between", "ri-space"],
|
||
|
},
|
||
|
}
|
||
|
|
||
|
$: propertyChoices = Object.entries(PROPERTY_OPTIONS[propertyName])
|
||
|
</script>
|
||
|
|
||
|
<div class="inputs {size}">
|
||
|
{#each meta as { placeholder }, i}
|
||
|
{#each propertyChoices as [displayName, [cssPropValue, icon]]}
|
||
|
<button
|
||
|
class:selected={cssPropValue === _values[i]}
|
||
|
on:click={() => {
|
||
|
const newPropertyValue = cssPropValue === _values[i] ? '' : cssPropValue
|
||
|
_values[i] = newPropertyValue
|
||
|
}}>
|
||
|
<i class={icon} />
|
||
|
</button>
|
||
|
{/each}
|
||
|
{/each}
|
||
|
</div>
|
||
|
|
||
|
<style>
|
||
|
.selected {
|
||
|
color: var(--button-text);
|
||
|
background: var(--background-button);
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
cursor: pointer;
|
||
|
outline: none;
|
||
|
border: none;
|
||
|
border-radius: 5px;
|
||
|
background: rgba(249, 249, 249, 1);
|
||
|
|
||
|
min-width: 1.8rem;
|
||
|
min-height: 1.8rem;
|
||
|
padding-bottom: 10px;
|
||
|
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
|
||
|
font-size: 1.2rem;
|
||
|
font-weight: 700;
|
||
|
color: rgba(22, 48, 87, 1);
|
||
|
}
|
||
|
|
||
|
.inputs {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
</style>
|