mirror of https://github.com/Budibase/budibase.git
10 changed files with 230 additions and 91 deletions
@ -0,0 +1,83 @@ |
|||
<script> |
|||
import { store } from "../builderStore" |
|||
import getIcon from "../common/icon" |
|||
import { CheckIcon } from "../common/Icons" |
|||
|
|||
const getPage = (s, name) => { |
|||
const props = s.pages[name] |
|||
return { name, props } |
|||
} |
|||
|
|||
const pages = [ |
|||
{ |
|||
title: "Joe", |
|||
id: "joe", |
|||
}, |
|||
{ |
|||
title: "Mike", |
|||
id: "mike", |
|||
}, |
|||
{ |
|||
title: "Martin", |
|||
id: "martin", |
|||
}, |
|||
] |
|||
|
|||
store.setCurrentPage("main") |
|||
</script> |
|||
|
|||
<div class="root"> |
|||
<ul> |
|||
{#each pages as { title, id }} |
|||
<li> |
|||
<i class="ri-user-4-line" /> |
|||
<button |
|||
class:active={id === $store.currentPageName} |
|||
on:click={() => store.setCurrentPage(id)}> |
|||
{title} |
|||
</button> |
|||
</li> |
|||
{/each} |
|||
</ul> |
|||
</div> |
|||
|
|||
<style> |
|||
.root { |
|||
padding-bottom: 10px; |
|||
font-size: 0.9rem; |
|||
color: var(--secondary50); |
|||
font-weight: bold; |
|||
position: relative; |
|||
padding-left: 1.8rem; |
|||
} |
|||
|
|||
ul { |
|||
margin: 0; |
|||
padding: 0; |
|||
list-style: none; |
|||
} |
|||
|
|||
li { |
|||
margin: 0.5rem 0; |
|||
} |
|||
|
|||
button { |
|||
margin: 0 0 0 6px; |
|||
padding: 0; |
|||
border: none; |
|||
font-family: Roboto; |
|||
font-size: 0.8rem; |
|||
outline: none; |
|||
cursor: pointer; |
|||
} |
|||
|
|||
.active { |
|||
font-weight: 500; |
|||
} |
|||
|
|||
.icon { |
|||
display: inline-block; |
|||
width: 14px; |
|||
color: #333; |
|||
} |
|||
</style> |
|||
Loading…
Reference in new issue