1
0
Fork 0
mirror of synced 2024-10-01 17:47:46 +13:00

Merge pull request #1480 from Budibase/restapi_fix

Rest api fix & desktop deprecation banner
This commit is contained in:
Michael Shanks 2021-05-13 10:20:02 +01:00 committed by GitHub
commit 92d79a67dd
2 changed files with 97 additions and 2 deletions

View file

@ -55,5 +55,6 @@
height={200}
{query}
schema={fetchQueryDefinition(query)}
editable={false} />
editable={false}
{datasource} />
{/if}

View file

@ -1,5 +1,5 @@
<script>
import { Home as Link } from "@budibase/bbui"
import { Home as Link, Button } from "@budibase/bbui"
import {
AppsIcon,
HostingIcon,
@ -10,8 +10,31 @@
import BuilderSettingsButton from "components/start/BuilderSettingsButton.svelte"
let modal
$: deprecationWarning = true
</script>
{#if deprecationWarning}
<div class="deprecation-root">
<div class="deprecation-inner">
<div class="deprecation-text">
From the 25th of May, Budibase is moving to a self-hosted web experience in the browser.<br/>
We will cease development on the current Electron based desktop builder.
</div>
<div class="deprecation-actions">
<a href="https://github.com/Budibase/budibase/discussions/1487" target="_blank">read more</a>
<button on:click={() => deprecationWarning = false}>
Close
</button>
</div>
</div>
</div>
{/if}
<div class="root">
<div class="ui-nav">
<div class="home-logo">
@ -49,6 +72,77 @@
</div>
<style>
.deprecation-root {
padding: 20px;
background-color: var(--yellow-light);
display: flex;
justify-content: center;
}
.deprecation-inner {
display: flex;
max-width: 900px;
align-items: center;
}
.deprecation-text {
flex: 1 1 auto;
color: black;
text-align: center;
}
.deprecation-actions {
flex: 0 0 auto;
padding-left: 40px;
}
.deprecation-actions > a {
color: white;
border-color: black;
background-color: black;
font-size: var(--font-size-xs);
padding: var(--spacing-xs) var(--spacing-m);
font-family: var(--font-sans);
cursor: pointer;
font-weight: 600;
box-sizing: border-box;
overflow: hidden;
border-radius: var(--border-radius-s);
transition: all 0.2s ease 0s;
display: inline-flex;
text-rendering: optimizeLegibility;
text-decoration: none;
min-width: auto;
outline: none;
font-feature-settings: "case" 1, "rlig" 1, "calt" 0;
-webkit-box-align: center;
user-select: none;
flex-shrink: 0;
align-items: center;
justify-content: center;
margin: 0;
border-width: 2px;
border-style: solid;
}
.deprecation-actions > a:hover {
background-color: white;
color: black;
}
.deprecation-actions > button {
border-style: none;
background-color: rgba(0,0,0,0);
color: rgb(117, 117, 117);
cursor: pointer;
margin-left: 10px;
}
.deprecation-actions > button:hover {
color: black;
}
.root {
display: grid;
grid-template-columns: 260px 1fr;