implemented creation of companies
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
@@ -1,20 +1,38 @@
|
||||
<script>
|
||||
import {onMount} from 'svelte';
|
||||
import {api} from '../../urls.svelte.js';
|
||||
import {t} from '../../translations.svelte.js';
|
||||
import {onMount} from 'svelte';
|
||||
import {api} from '../../urls.svelte.js';
|
||||
import {t} from '../../translations.svelte.js';
|
||||
|
||||
import Editor from './Editor.svelte';
|
||||
import Editor from './Editor.svelte';
|
||||
import LineEditor from '../../Components/LineEditor.svelte';
|
||||
|
||||
let companies = $state(null);
|
||||
let error = $state(null);
|
||||
let selected = $state(0);
|
||||
let error = $state(null);
|
||||
let companies = $state(null);
|
||||
let new_company = $state({name:null,email:null});
|
||||
let selected = $state(0);
|
||||
let missing_fields = $derived(!new_company.name || !new_company.email?.includes('@'));
|
||||
|
||||
async function create_company(){
|
||||
const url = api('company');
|
||||
const resp = await fetch(url,{
|
||||
credentials : 'include',
|
||||
method : 'POST',
|
||||
body : JSON.stringify(new_company)
|
||||
});
|
||||
if (resp.ok){
|
||||
const company = await resp.json();
|
||||
companies[company.id] = company;
|
||||
error = null;
|
||||
} else {
|
||||
error = await resp.text();
|
||||
}
|
||||
}
|
||||
|
||||
async function loadCompanies(){
|
||||
const url = api('company/list');
|
||||
const resp = await fetch(url,{credentials:'include'});
|
||||
if (resp.ok){
|
||||
companies = await resp.json();
|
||||
console.log(companies);
|
||||
error = null;
|
||||
} else {
|
||||
error = await resp.text();
|
||||
@@ -29,7 +47,9 @@
|
||||
</script>
|
||||
|
||||
<fieldset>
|
||||
<legend>{t('companies')}</legend>
|
||||
<legend>
|
||||
{t('companies')}
|
||||
</legend>
|
||||
{#if error}
|
||||
<span class="error">{error}</span>
|
||||
{/if}
|
||||
@@ -49,6 +69,17 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<input type="text" bind:value={new_company.name} />
|
||||
</td>
|
||||
<td>
|
||||
<input type="email" bind:value={new_company.email} />
|
||||
</td>
|
||||
<td>
|
||||
<button disabled={missing_fields} onclick={create_company}>{t('create_new_object',{object:t('company')})}</button>
|
||||
</td>
|
||||
</tr>
|
||||
{#each Object.entries(companies) as [cid, company]}
|
||||
<tr onclick={e => showDetail(cid)}>
|
||||
<td>{company.name}</td>
|
||||
|
||||
Reference in New Issue
Block a user