Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UI: set correct menu #30

Merged
merged 1 commit into from
Aug 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions browser/goliac-ui/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
BASE_URL=""
VUE_APP_API_URL="http://127.0.0.1:18000/api/v1"
1 change: 1 addition & 0 deletions browser/goliac-ui/.env.production
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VUE_APP_API_URL="api/v1"
23 changes: 23 additions & 0 deletions browser/goliac-ui/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.DS_Store
node_modules
/dist


# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
3 changes: 2 additions & 1 deletion browser/goliac-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
"lint": "vue-cli-service lint"
},
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"axios": "^1.5.0",
"core-js": "^3.8.3",
"element-plus": "^1.0.2-beta.28",
"element-plus": "^2.3.12",
"vue": "^3.2.13",
"vue-router": "^4.0.13"
},
Expand Down
Binary file modified browser/goliac-ui/public/favicon.ico
Binary file not shown.
Binary file added browser/goliac-ui/public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
78 changes: 48 additions & 30 deletions browser/goliac-ui/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,41 +1,59 @@
<script setup>
import { User, MessageBox, Folder } from '@element-plus/icons-vue'
</script>

<template>
<div id="app">
<el-row style="background-color:#000000; height:40px;">
<el-col :span="22" :offset="2" style="margin-top:8px;">
<router-link :to="{ name: 'dashboard' }">
<span style="color:#ffffff;">Goliac</span>
</router-link>
</el-col>
</el-row>
<el-row>
&nbsp;
</el-row>
<div class="router-view-container">
<router-view></router-view>
</div>
<div id="app">
<el-container>
<el-aside width="130px">
<el-menu>
<el-menu-item index="1" style="justify-content: center">
<template #title>
<img src="/logo.png">
</template>
</el-menu-item>
<el-menu-item index="2">
<template #title>
<el-icon :size="16"><User /></el-icon>Users
</template>
</el-menu-item>
<el-menu-item index="3">
<template #title>
<el-icon :size="16"><MessageBox /></el-icon>Teams
</template>
</el-menu-item>
<el-menu-item index="4">
<template #title>
<el-icon :size="16"><Folder /></el-icon>Repositories
</template>
</el-menu-item>
</el-menu>
</el-aside>

<el-container>
<el-main>
<router-view></router-view>
</el-main>
</el-container>
</el-container>
</div>
</template>

<script>

export default {
name: 'App',
}

</script>

<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: left;
color: #2c3e50;
<style scoped>
.layout-container .el-header {
position: relative;
background-color: var(--el-color-primary-light-7);
color: var(--el-text-color-primary);
}

a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }


</style>
.layout-container .el-aside {
color: var(--el-text-color-primary);
background: var(--el-color-primary-light-8);
}
</style>
Binary file modified browser/goliac-ui/src/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 8 additions & 1 deletion browser/goliac-ui/src/components/DashboardApp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@
</span>
</template>
</el-dialog>
test

<el-breadcrumb separator="/">
<el-breadcrumb-item :to="{ path: '/' }">dashboard</el-breadcrumb-item>
</el-breadcrumb>
<el-divider />

test
<el-button @click="flushcache">Flush cache</el-button>
</template>

<script>
Expand Down
2 changes: 1 addition & 1 deletion browser/goliac-ui/src/plugins/element.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ElementPlus from 'element-plus'
import 'element-plus/lib/theme-chalk/index.css'
import 'element-plus/dist/index.css'

export default (app) => {
app.use(ElementPlus)
Expand Down
Loading