1
0
Fork 0
mirror of synced 2024-09-15 08:47:37 +12:00

Merge branch 'new-design-ui' of github.com:Budibase/budibase into new-design-ui

This commit is contained in:
Andrew Kingston 2022-06-15 15:32:56 +01:00
commit 6f0c18b3a5

View file

@ -1,26 +1,43 @@
<script> <script>
import { Body, Button, Layout, Heading } from "@budibase/bbui" import {
Body,
Button,
ButtonGroup,
Divider,
Layout,
Heading,
Page,
} from "@budibase/bbui"
import { flags } from "stores/backend" import { flags } from "stores/backend"
import { goto } from "@roxi/routify"
function openFeedbackApp() { function openFeedbackApp() {
window.open(`https://bb.budibase.app/betauifeedback`) window.open(
"https://bb.budibase.app/app/design-feedback-hub#/beta-questions"
)
} }
async function revertToOldBuilder() { async function revertToOldBuilder() {
await flags.toggleUiFeature("design_ui") await flags.toggleUiFeature("design_ui")
$goto("../")
window.location.reload() window.location.reload()
} }
</script> </script>
<Layout> <Page maxWidth="90ch" wide={false}>
<Heading size="M">Beta Builder</Heading> <Layout>
<Body> <Heading size="S">Beta Builder</Heading>
Your account has been given access to the budibase beta program. We would <Divider />
love to hear what you think and get your feedback and suggestions on the new <Body>
Design UI. Your account has been given access to the budibase beta program. We would
</Body> love to hear what you think and get your feedback and suggestions on the
<Button cta on:click={openFeedbackApp}>Give Feedback</Button> new Design UI.
<Button secondary on:click={revertToOldBuilder} </Body>
>Revert back to old builder</Button <ButtonGroup>
> <Button cta on:click={openFeedbackApp}>Give Feedback</Button>
</Layout> <Button secondary on:click={revertToOldBuilder}
>Revert back to old builder</Button
>
</ButtonGroup>
</Layout>
</Page>