1
0
Fork 0
mirror of synced 2024-09-21 11:53:49 +12:00
budibase/packages/builder/src/components/start/CreateAppModal.svelte

198 lines
4.3 KiB
Svelte
Raw Normal View History

2020-05-27 02:25:37 +12:00
<script>
2020-05-27 22:54:53 +12:00
import Spinner from "components/common/Spinner.svelte"
2020-05-27 03:37:11 +12:00
import { Input, TextArea, Button } from "@budibase/bbui"
2020-05-27 22:54:53 +12:00
import { goto } from "@sveltech/routify"
2020-05-27 02:25:37 +12:00
import { AppsIcon, InfoIcon, CloseIcon } from "components/common/Icons/"
import { getContext } from "svelte"
2020-05-27 22:54:53 +12:00
import { fade } from "svelte/transition"
import { post } from "builderStore/api"
import analytics from "../../analytics"
2020-05-27 22:54:53 +12:00
const { open, close } = getContext("simple-modal")
2020-05-27 02:25:37 +12:00
2020-05-27 21:44:15 +12:00
let name = ""
let description = ""
2020-05-27 22:54:53 +12:00
let loading = false
2020-05-27 23:48:38 +12:00
let error = {}
2020-05-27 22:54:53 +12:00
2020-05-27 21:44:15 +12:00
const createNewApp = async () => {
2020-05-27 23:48:38 +12:00
if ((name.length > 100 || name.length < 1) && description.length < 1) {
error = {
name: true,
description: true,
}
} else if (description.length < 1) {
error = {
name: false,
description: true,
}
} else if (name.length > 100 || name.length < 1) {
error = {
name: true,
}
} else {
error = {}
const data = { name, description }
loading = true
try {
const response = await post("/api/applications", data)
2020-05-27 22:54:53 +12:00
2020-05-27 23:48:38 +12:00
const res = await response.json()
2020-05-27 22:54:53 +12:00
analytics.captureEvent("web_app_created", {
name,
description,
2020-07-16 04:27:33 +12:00
appId: res._id,
})
2020-05-27 23:48:38 +12:00
$goto(`./${res._id}`)
} catch (error) {
console.error(error)
}
2020-05-27 21:44:15 +12:00
}
}
2020-05-27 02:25:37 +12:00
let value
let onChange = () => {}
function _onCancel() {
close()
}
2020-05-27 21:44:15 +12:00
async function _onOkay() {
await createNewApp()
2020-05-27 02:25:37 +12:00
}
</script>
<div class="container">
<div class="body">
<div class="heading">
2020-05-27 22:54:53 +12:00
<span class="icon">
<AppsIcon />
</span>
<h3 class="header">Create new web app</h3>
2020-05-27 02:25:37 +12:00
</div>
2020-05-27 22:54:53 +12:00
<Input
name="name"
label="Name"
placeholder="Enter application name"
on:change={e => (name = e.target.value)}
on:input={e => (name = e.target.value)} />
2020-05-27 23:48:38 +12:00
{#if error.name}
<span class="error">You need to enter a name for your application.</span>
{/if}
2020-05-27 02:25:37 +12:00
<TextArea
2020-05-27 21:44:15 +12:00
bind:value={description}
2020-05-27 02:25:37 +12:00
name="description"
label="Description"
placeholder="Describe your application" />
2020-05-27 23:48:38 +12:00
{#if error.description}
<span class="error">
Please enter a short description of your application
</span>
{/if}
2020-05-27 02:25:37 +12:00
</div>
<div class="footer">
2020-05-27 22:54:53 +12:00
<a href="./#" class="info">
<InfoIcon />
How to get started
</a>
<Button secondary thin on:click={_onCancel}>Cancel</Button>
2020-05-27 22:54:53 +12:00
<Button primary thin on:click={_onOkay}>Save</Button>
</div>
<div class="close-button" on:click={_onCancel}>
<CloseIcon />
2020-05-27 02:25:37 +12:00
</div>
2020-05-27 22:54:53 +12:00
{#if loading}
<div in:fade class="spinner-container">
<Spinner />
<span class="spinner-text">Creating your app...</span>
</div>
{/if}
2020-05-27 02:25:37 +12:00
</div>
<style>
2020-05-27 22:54:53 +12:00
.container {
position: relative;
}
2020-05-27 02:25:37 +12:00
.close-button {
cursor: pointer;
position: absolute;
top: 20px;
right: 20px;
}
.close-button :global(svg) {
width: 24px;
height: 24px;
}
.heading {
display: flex;
flex-direction: row;
align-items: center;
2020-05-27 03:37:11 +12:00
margin-bottom: 20px;
2020-05-27 02:25:37 +12:00
}
.header {
2020-05-27 02:25:37 +12:00
margin: 0;
font-size: 24px;
font-weight: 600;
font-family: inter;
2020-05-27 02:25:37 +12:00
}
.icon {
display: grid;
border-radius: 3px;
align-content: center;
justify-content: center;
margin-right: 12px;
height: 20px;
width: 20px;
padding: 10px;
background-color: var(--blue-light);
}
.info {
color: var(--blue);
text-decoration-color: var(--blue);
2020-05-27 02:25:37 +12:00
}
.info :global(svg) {
fill: var(--blue);
2020-05-27 02:25:37 +12:00
margin-right: 8px;
width: 24px;
height: 24px;
}
.body {
padding: 40px 40px 80px 40px;
display: grid;
grid-gap: 20px;
}
.footer {
display: grid;
2020-05-27 03:37:11 +12:00
grid-gap: 20px;
2020-05-27 02:25:37 +12:00
align-items: center;
grid-template-columns: 1fr auto auto;
padding: 30px 40px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 50px;
background-color: var(--grey-1);
2020-05-27 02:25:37 +12:00
}
2020-05-27 22:54:53 +12:00
.spinner-container {
background: white;
position: absolute;
border-radius: 5px;
left: 0;
top: 0;
right: 0;
bottom: 0;
display: grid;
justify-items: center;
align-content: center;
grid-gap: 50px;
}
.spinner-text {
font-size: 2em;
}
2020-05-27 23:48:38 +12:00
.error {
color: var(--red);
2020-05-27 23:48:38 +12:00
font-weight: bold;
font-size: 0.8em;
}
2020-05-27 02:25:37 +12:00
</style>