Styling: theme view buttons

This commit is contained in:
Pieter Vander Vennet 2023-04-24 02:27:55 +02:00
parent c9697b7ffb
commit 652d617583
8 changed files with 160 additions and 80 deletions

View file

@ -54,6 +54,17 @@ export class MenuState {
this.highlightedLayerInFilters.setData(undefined) this.highlightedLayerInFilters.setData(undefined)
} }
}) })
this.menuIsOpened.addCallbackAndRunD((opened) => {
if (opened) {
this.themeIsOpened.setData(false)
}
})
this.themeIsOpened.addCallbackAndRunD((opened) => {
if (opened) {
this.menuIsOpened.setData(false)
}
})
} }
public openFilterView(highlightLayer?: LayerConfig | string) { public openFilterView(highlightLayer?: LayerConfig | string) {
this.themeIsOpened.setData(true) this.themeIsOpened.setData(true)

View file

@ -123,7 +123,7 @@ export default class Hotkeys {
new Table( new Table(
[t.key, t.action], [t.key, t.action],
byKey.map(([key, doc]) => { byKey.map(([key, doc]) => {
return [new FixedUiElement(key).SetClass("code"), doc] return [new FixedUiElement(key).SetClass("literal-code"), doc]
}) })
), ),
]) ])

View file

@ -8,6 +8,6 @@
</script> </script>
<div on:click={e => dispatch("click", e)} class="subtle-background rounded-full min-w-10 w-fit h-10 m-0.5 md:m-1 p-1 cursor-pointer"> <div on:click={e => dispatch("click", e)} class="subtle-background rounded-full h-fit w-fit m-0.5 md:m-1 p-0.5 sm:p-1 cursor-pointer">
<slot class="m-4"></slot> <slot/>
</div> </div>

View file

@ -69,7 +69,7 @@
</script> </script>
<div class="flex normal-background rounded-full pl-2"> <div class="flex normal-background rounded-full pl-2 justify-between">
<form> <form>
{#if isRunning} {#if isRunning}
@ -89,7 +89,7 @@
{/if} {/if}
</form> </form>
<div class="w-6 h-6" on:click={performSearch}> <div class="w-6 h-6 self-end" on:click={performSearch}>
<ToSvelte construct={Svg.search_ui}></ToSvelte> <ToSvelte construct={Svg.search_ui}></ToSvelte>
</div> </div>
</div> </div>

View file

@ -48,7 +48,7 @@ export class DefaultGuiState {
} }
} }
public closeAll() { public closeAll(except) {
for (const sourceKey in this.sources) { for (const sourceKey in this.sources) {
this.sources[sourceKey].setData(false) this.sources[sourceKey].setData(false)
} }

View file

@ -64,27 +64,37 @@
</script> </script>
<div class="h-screen w-screen absolute top-0 left-0 flex"> <div class="h-screen w-screen absolute top-0 left-0 overflow-hidden">
<MaplibreMap map={maplibremap}></MaplibreMap> <MaplibreMap map={maplibremap}></MaplibreMap>
</div> </div>
<div class="absolute top-0 left-0 mt-2 ml-2"> <div class="absolute top-0 left-0 w-full ">
<!-- Top components -->
<If condition={state.featureSwitches.featureSwitchSearch}>
<div class="sm:w-min float-right m-1 sm:m-2 max-[320px]:w-full">
<Geosearch bounds={state.mapProperties.bounds} perLayer={state.perLayer} {selectedElement}
{selectedLayer}></Geosearch>
</div>
</If>
<div class="float-left m-1 sm:m-2 md:m-4">
<MapControlButton on:click={() => state.guistate.themeIsOpened.setData(true)}> <MapControlButton on:click={() => state.guistate.themeIsOpened.setData(true)}>
<div class="flex mr-2 items-center cursor-pointer"> <div class="flex m-0.5 mx-1 sm:mx-1 md:mx-2 items-center cursor-pointer">
<img class="w-8 h-8 block mr-2" src={layout.icon}> <img class="w-4 h-4 sm:w-6 sm:h-6 md:w-8 md:h-8 block mr-0.5 sm:mr-1 md:mr-2" src={layout.icon}>
<b> <b class="mr-1">
<Tr t={layout.title}></Tr> <Tr t={layout.title}></Tr>
</b> </b>
</div> </div>
</MapControlButton> </MapControlButton>
<MapControlButton on:click={() =>state.guistate.menuIsOpened.setData(true)}> <MapControlButton on:click={() =>state.guistate.menuIsOpened.setData(true)}>
<MenuIcon class="w-8 h-8 cursor-pointer"></MenuIcon> <MenuIcon class="w-6 h-6 md:w-8 md:h-8 cursor-pointer"></MenuIcon>
</MapControlButton> </MapControlButton>
<If condition={state.featureSwitchIsTesting}> <If condition={state.featureSwitchIsTesting}>
<span class="alert"> <span class="alert">
Testmode Testmode
</span> </span>
</If> </If>
</div>
</div> </div>
<div class="absolute bottom-0 left-0 mb-4 ml-4"> <div class="absolute bottom-0 left-0 mb-4 ml-4">
@ -93,26 +103,19 @@
<div class="absolute bottom-0 right-0 mb-4 mr-4"> <div class="absolute bottom-0 right-0 mb-4 mr-4">
<MapControlButton on:click={() => mapproperties.zoom.update(z => z+1)}> <MapControlButton on:click={() => mapproperties.zoom.update(z => z+1)}>
<ToSvelte construct={Svg.plus_ui}></ToSvelte> <img src="./assets/svg/plus.svg" class="w-6 h-6 md:w-8 md:h-8"/>
</MapControlButton> </MapControlButton>
<MapControlButton on:click={() => mapproperties.zoom.update(z => z-1)}> <MapControlButton on:click={() => mapproperties.zoom.update(z => z-1)}>
<ToSvelte construct={Svg.min_ui}></ToSvelte> <img src="./assets/svg/min.svg" class="w-6 h-6 md:w-8 md:h-8"/>
</MapControlButton> </MapControlButton>
<If condition={featureSwitches.featureSwitchGeolocation}> <If condition={featureSwitches.featureSwitchGeolocation}>
<MapControlButton> <MapControlButton>
<ToSvelte <ToSvelte
construct={new GeolocationControl(state.geolocation, mapproperties).SetClass("block w-8 h-8")}></ToSvelte> construct={new GeolocationControl(state.geolocation, mapproperties).SetClass("block w-6 h-6 md:w-8 md:h-8")}></ToSvelte>
</MapControlButton> </MapControlButton>
</If> </If>
</div> </div>
<div class="absolute top-0 right-0 mt-4 mr-4">
<If condition={state.featureSwitches.featureSwitchSearch}>
<Geosearch bounds={state.mapProperties.bounds} perLayer={state.perLayer} {selectedElement}
{selectedLayer}></Geosearch>
</If>
</div>
<If condition={selectedViewElement.map(v => v !== undefined)}> <If condition={selectedViewElement.map(v => v !== undefined)}>
<ModalRight on:close={() => {selectedElement.setData(undefined)}}> <ModalRight on:close={() => {selectedElement.setData(undefined)}}>
<ToSvelte construct={new VariableUiElement(selectedViewElement)}></ToSvelte> <ToSvelte construct={new VariableUiElement(selectedViewElement)}></ToSvelte>

View file

@ -23,7 +23,7 @@
"calculatedTags": [ "calculatedTags": [
"_waste_amount=Object.values(Object.keys(feat.properties).filter((key) => key.startsWith('recycling:')).reduce((cur, key) => { return Object.assign(cur, { [key]: feat.properties[key] })}, {})).reduce((n, x) => n + (x == \"yes\"), 0);" "_waste_amount=Object.values(Object.keys(feat.properties).filter((key) => key.startsWith('recycling:')).reduce((cur, key) => { return Object.assign(cur, { [key]: feat.properties[key] })}, {})).reduce((n, x) => n + (x == \"yes\"), 0);"
], ],
"minzoom": 12, "minzoom": 11,
"title": { "title": {
"render": { "render": {
"en": "Recycling facility", "en": "Recycling facility",
@ -36,12 +36,7 @@
{ {
"if": "name~*", "if": "name~*",
"then": { "then": {
"*": "{name}", "*": "{name}"
"en": "Recycling centre",
"nl": "Recyclingcentrum",
"de": "Wertstoffhof",
"es": "Centro de reciclaje",
"it": "Centro di riciclo rifiuti"
} }
}, },
{ {

View file

@ -787,14 +787,14 @@ video {
margin: 0.5rem; margin: 0.5rem;
} }
.m-4 {
margin: 1rem;
}
.m-1 { .m-1 {
margin: 0.25rem; margin: 0.25rem;
} }
.m-4 {
margin: 1rem;
}
.m-6 { .m-6 {
margin: 1.5rem; margin: 1.5rem;
} }
@ -803,16 +803,16 @@ video {
margin: 1px; margin: 1px;
} }
.my-2 {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
.mx-1 { .mx-1 {
margin-left: 0.25rem; margin-left: 0.25rem;
margin-right: 0.25rem; margin-right: 0.25rem;
} }
.my-2 {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
.my-4 { .my-4 {
margin-top: 1rem; margin-top: 1rem;
margin-bottom: 1rem; margin-bottom: 1rem;
@ -833,10 +833,6 @@ video {
margin-bottom: 0.75rem; margin-bottom: 0.75rem;
} }
.mb-4 {
margin-bottom: 1rem;
}
.mr-2 { .mr-2 {
margin-right: 0.5rem; margin-right: 0.5rem;
} }
@ -857,18 +853,30 @@ video {
margin-top: 1.5rem; margin-top: 1.5rem;
} }
.mt-2 { .mr-0\.5 {
margin-top: 0.5rem; margin-right: 0.125rem;
} }
.ml-2 { .mr-0 {
margin-left: 0.5rem; margin-right: 0px;
}
.mr-1 {
margin-right: 0.25rem;
}
.mb-4 {
margin-bottom: 1rem;
} }
.ml-4 { .ml-4 {
margin-left: 1rem; margin-left: 1rem;
} }
.mt-2 {
margin-top: 0.5rem;
}
.mb-24 { .mb-24 {
margin-bottom: 6rem; margin-bottom: 6rem;
} }
@ -877,6 +885,10 @@ video {
margin-left: 0.25rem; margin-left: 0.25rem;
} }
.ml-2 {
margin-left: 0.5rem;
}
.mb-2 { .mb-2 {
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
} }
@ -889,10 +901,6 @@ video {
margin-bottom: 2.5rem; margin-bottom: 2.5rem;
} }
.mr-1 {
margin-right: 0.25rem;
}
.mt-0 { .mt-0 {
margin-top: 0px; margin-top: 0px;
} }
@ -917,10 +925,6 @@ video {
margin-bottom: 0.25rem; margin-bottom: 0.25rem;
} }
.mr-0 {
margin-right: 0px;
}
.-ml-6 { .-ml-6 {
margin-left: -1.5rem; margin-left: -1.5rem;
} }
@ -1025,6 +1029,12 @@ video {
height: 0.75rem; height: 0.75rem;
} }
.h-fit {
height: -webkit-fit-content;
height: -moz-fit-content;
height: fit-content;
}
.h-11 { .h-11 {
height: 2.75rem; height: 2.75rem;
} }
@ -1331,26 +1341,26 @@ video {
word-break: break-all; word-break: break-all;
} }
.rounded-xl { .rounded {
border-radius: 0.75rem; border-radius: 0.25rem;
}
.rounded-lg {
border-radius: 0.5rem;
} }
.rounded-3xl { .rounded-3xl {
border-radius: 1.5rem; border-radius: 1.5rem;
} }
.rounded {
border-radius: 0.25rem;
}
.rounded-full { .rounded-full {
border-radius: 9999px; border-radius: 9999px;
} }
.rounded-xl {
border-radius: 0.75rem;
}
.rounded-lg {
border-radius: 0.5rem;
}
.rounded-md { .rounded-md {
border-radius: 0.375rem; border-radius: 0.375rem;
} }
@ -1505,10 +1515,6 @@ video {
padding: 0.5rem; padding: 0.5rem;
} }
.p-3 {
padding: 0.75rem;
}
.p-0\.5 { .p-0\.5 {
padding: 0.125rem; padding: 0.125rem;
} }
@ -1517,6 +1523,10 @@ video {
padding: 0px; padding: 0px;
} }
.p-3 {
padding: 0.75rem;
}
.p-8 { .p-8 {
padding: 2rem; padding: 2rem;
} }
@ -2282,16 +2292,35 @@ input {
color: var(--unsubtle-detail-color-contrast); color: var(--unsubtle-detail-color-contrast);
} }
@media (max-width: 320px) {
.max-\[320px\]\:w-full {
width: 100%;
}
}
@media (min-width: 640px) { @media (min-width: 640px) {
.sm\:m-2 {
margin: 0.5rem;
}
.sm\:m-6 { .sm\:m-6 {
margin: 1.5rem; margin: 1.5rem;
} }
.sm\:mx-1 {
margin-left: 0.25rem;
margin-right: 0.25rem;
}
.sm\:mx-auto { .sm\:mx-auto {
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
} }
.sm\:mr-1 {
margin-right: 0.25rem;
}
.sm\:mt-5 { .sm\:mt-5 {
margin-top: 1.25rem; margin-top: 1.25rem;
} }
@ -2308,10 +2337,23 @@ input {
height: 6rem; height: 6rem;
} }
.sm\:h-6 {
height: 1.5rem;
}
.sm\:w-24 { .sm\:w-24 {
width: 6rem; width: 6rem;
} }
.sm\:w-min {
width: -webkit-min-content;
width: min-content;
}
.sm\:w-6 {
width: 1.5rem;
}
.sm\:max-w-xl { .sm\:max-w-xl {
max-width: 36rem; max-width: 36rem;
} }
@ -2336,6 +2378,10 @@ input {
padding: 1.5rem; padding: 1.5rem;
} }
.sm\:p-1 {
padding: 0.25rem;
}
.sm\:p-2 { .sm\:p-2 {
padding: 0.5rem; padding: 0.5rem;
} }
@ -2364,6 +2410,10 @@ input {
margin: 0.25rem; margin: 0.25rem;
} }
.md\:m-4 {
margin: 1rem;
}
.md\:m-8 { .md\:m-8 {
margin: 2rem; margin: 2rem;
} }
@ -2372,14 +2422,27 @@ input {
margin: 0.5rem; margin: 0.5rem;
} }
.md\:mt-5 { .md\:mx-2 {
margin-top: 1.25rem; margin-left: 0.5rem;
margin-right: 0.5rem;
}
.md\:mr-2 {
margin-right: 0.5rem;
}
.md\:mr-4 {
margin-right: 1rem;
} }
.md\:mt-4 { .md\:mt-4 {
margin-top: 1rem; margin-top: 1rem;
} }
.md\:mt-5 {
margin-top: 1.25rem;
}
.md\:flex { .md\:flex {
display: flex; display: flex;
} }
@ -2388,10 +2451,18 @@ input {
display: grid; display: grid;
} }
.md\:h-8 {
height: 2rem;
}
.md\:h-12 { .md\:h-12 {
height: 3rem; height: 3rem;
} }
.md\:w-8 {
width: 2rem;
}
.md\:w-2\/6 { .md\:w-2\/6 {
width: 33.333333%; width: 33.333333%;
} }