forked from surister/cratedb-admin-alt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add drop table functionality - Add dialog to accept dropping the table - Make it, so you cannot try to delete system tables - Minor refactoring such as variable renaming
- Loading branch information
Showing
14 changed files
with
161 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
### Improvements over old admin panel | ||
|
||
#### General | ||
1. Tech stack is more modern and agile to work with (Vue3 + vuetify) | ||
2. More settings (theme, console sizes, master node url..) | ||
3. Improved visibility of shard allocation issues (https://github.com/crate/crate-admin/issues/799) | ||
4. Better Node Health message https://github.com/crate/crate-admin/issues/679 | ||
5. User notifications when the panel cannot connect to the node | ||
|
||
#### Console | ||
1. Button to cancel current query (https://github.com/crate/crate-admin/issues/811) | ||
2. Query History component that allows to add, remove and reuse queries. | ||
3. Console shows line number. (https://github.com/crate/crate-admin/issues/813) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<script setup> | ||
import {use_global_store} from "@/store/globalStore"; | ||
const global_store = use_global_store() | ||
</script> | ||
|
||
<template> | ||
<v-snackbar :timeout="global_store.snackbar_opts.duration_ms" | ||
:title="global_store.snackbar_opts.title" | ||
v-model="global_store.show_snackbar" | ||
:color="global_store.snackbar_opts.color" | ||
:variant="'outlined'" | ||
location="right bottom" | ||
> | ||
<div class="text-subtitle-1 pb-2"> | ||
<v-icon>{{ global_store.snackbar_opts.icon }}</v-icon> | ||
<span class="ml-2"> {{ global_store.snackbar_opts.title }}</span> | ||
</div> | ||
|
||
<p>{{ global_store.snackbar_opts.message }}</p> | ||
</v-snackbar> | ||
</template> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters