aboutsummaryrefslogtreecommitdiff
path: root/src_frontend/Components/ModeList/Mode.svelte
diff options
context:
space:
mode:
authorJakob Stendahl <jakob.stendahl@outlook.com>2021-09-19 19:43:11 +0200
committerJakob Stendahl <jakob.stendahl@outlook.com>2021-09-19 19:43:11 +0200
commit7bdce37fd3f18e2712e18c4e2c64cac69af0aca1 (patch)
treeb7ad3f1cca92e2dfd2664ae9e65652bd03ff58b2 /src_frontend/Components/ModeList/Mode.svelte
parente6880cd8ccf82d993f222cb14b4860581654acb8 (diff)
downloadLuxcena-Neo-7bdce37fd3f18e2712e18c4e2c64cac69af0aca1.tar.gz
Luxcena-Neo-7bdce37fd3f18e2712e18c4e2c64cac69af0aca1.zip
:boom: Introduce new UI based on svelte, and rewrite a lot of the node app and the NeoRuntime
Diffstat (limited to 'src_frontend/Components/ModeList/Mode.svelte')
-rw-r--r--src_frontend/Components/ModeList/Mode.svelte57
1 files changed, 57 insertions, 0 deletions
diff --git a/src_frontend/Components/ModeList/Mode.svelte b/src_frontend/Components/ModeList/Mode.svelte
new file mode 100644
index 0000000..67752c2
--- /dev/null
+++ b/src_frontend/Components/ModeList/Mode.svelte
@@ -0,0 +1,57 @@
+<script>
+ import { push } from "svelte-spa-router";
+ import ConfirmActionDialog from "../Dialogs/ConfirmActionDialog.svelte";
+ import { authorizedSocket } from "../../stores/socketStore.js";
+ import { notif } from "../../stores/notifs";
+ export let id;
+
+ function deleteMode() {
+ authorizedSocket.emit("mode:delete", `user/${id}`, (res) => {
+ if (!res.success) {
+ notif({title: "Error", text: "Could not delete mode...", type: "danger"})
+ console.log(res);
+ }
+ });
+ }
+</script>
+
+<style>
+ .wrapper {
+ width: 100%;
+ padding: var(--theme-padding);
+ box-sizing: border-box;
+ border-radius: 15px;
+
+ display: flex;
+ align-items: center;
+ }
+ .right {
+ margin-left: auto;
+ }
+ button {
+ border: none;
+ background-color: white;
+ background-color: transparent;
+ border: none;
+ padding: 10px;
+ border-radius: 15px;
+ }
+ button:hover {
+ background-color: var(--grey-300);
+ }
+ button:active {
+ background-color: var(--grey-400);
+ }
+</style>
+
+<div class="wrapper drop-shadow">
+ {id}
+ <div class="right">
+ <ConfirmActionDialog title="Are you sure?" text="Are you sure you want to delete {id}" action={deleteMode}>
+ <svelte:fragment slot="trigger" let:open>
+ <button on:click={open}><i class="fas fa-trash"></i></button>
+ </svelte:fragment>
+ </ConfirmActionDialog>
+ <button on:click={() => {push(`/editor/${id}`)}}><i class="fas fa-edit"></i></button>
+ </div>
+</div> \ No newline at end of file