84 lines
2.7 KiB
Svelte
84 lines
2.7 KiB
Svelte
<script>
|
|
import { onMount } from 'svelte';
|
|
import { useTinyRouter } from 'svelte-tiny-router';
|
|
|
|
import { logout, user } from '../user.svelte.js';
|
|
import { t } from '../translations.svelte.js';
|
|
|
|
import TimeRecorder from './TimeRecorder.svelte';
|
|
|
|
let key = $state(null);
|
|
const router = useTinyRouter();
|
|
const modules = $state([]);
|
|
let expand = $state(false);
|
|
|
|
async function fetchModules(){
|
|
const url = `${location.protocol}//${location.host.replace('5173','8080')}/legacy/user/modules`;
|
|
const resp = await fetch(url,{credentials:'include'});
|
|
if (resp.ok){
|
|
const arr = await resp.json();
|
|
for (let entry of arr) {
|
|
let name = t('module.'+entry.module);
|
|
if (name) modules.push({name:name,url:entry.url});
|
|
}
|
|
} else {
|
|
console.log('error');
|
|
}
|
|
}
|
|
|
|
function onclick(e){
|
|
e.preventDefault();
|
|
expand = false;
|
|
let href = e.target.getAttribute('href');
|
|
if (href) router.navigate(href);
|
|
return false;
|
|
}
|
|
|
|
async function search(e){
|
|
e.preventDefault();
|
|
expand = false;
|
|
router.navigate(`/search?key=${key}`);
|
|
return false;
|
|
}
|
|
|
|
onMount(fetchModules);
|
|
</script>
|
|
|
|
<style>
|
|
nav a{
|
|
padding: 3px;
|
|
}
|
|
</style>
|
|
|
|
<nav class={expand?"expanded":"collapsed"}>
|
|
<form onsubmit={search}>
|
|
<input type="text" bind:value={key} />
|
|
<button type="submit">{t('search')}</button>
|
|
</form>
|
|
<button class="symbol" onclick={e => expand = !expand}></button>
|
|
<a href="/user" {onclick} class="user">{t('users')}</a>
|
|
<a href="/company" {onclick} class="company">{t('companies')}</a>
|
|
<a href="/project" {onclick} class="project">{t('projects')}</a>
|
|
<a href="/task" {onclick} class="task">{t('tasks')}</a>
|
|
<a href="/tags" {onclick} class="tags">{t('tags')}</a>
|
|
<a href="/document" {onclick} class="doc">{t('documents')}</a>
|
|
<a href="/bookmark" {onclick} class="mark">{t('bookmarks')}</a>
|
|
<a href="/notes" {onclick} class="note">{t('notes')}</a>
|
|
<a href="/files" {onclick} class="file">{t('files')}</a>
|
|
<a href="/time" {onclick} class="time">{t('timetracking')}</a>
|
|
<a href="/wiki" {onclick} class="wiki">{t('wiki')}</a>
|
|
<a href="/contact" {onclick} class="contact">{t('contacts')}</a>
|
|
<a href="/stock" {onclick} class="stock">{t('stock')}</a>
|
|
<a href="/message" {onclick} class="message">{@html t('messages')}</a>
|
|
{#if user.id == 2}
|
|
<a href="https://svelte.dev/tutorial/svelte/state" target="_blank">{t('tutorial')}</a>
|
|
{/if}
|
|
{#each modules as module,i}
|
|
{#if module.name.trim()}<a href={module.url}>{module.name}</a>{/if}
|
|
{/each}
|
|
{#if user.name }
|
|
<a class="logout" onclick={logout}>{t('logout_user',{user:user.name})}</a>
|
|
{/if}
|
|
<TimeRecorder />
|
|
</nav>
|