mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
116 lines
2.4 KiB
Vue
116 lines
2.4 KiB
Vue
<template>
|
|
<div class="content">
|
|
<ClosePageButton />
|
|
<div class="container-fluid lens-workspaces">
|
|
<div class="header sticky-top">
|
|
<h2><i class="material-icons">layers</i> Workspaces</h2>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-3" />
|
|
<div class="col-6">
|
|
<h2>New Workspace</h2>
|
|
|
|
<b-form @submit.prevent="createWorkspace">
|
|
<b-form-group
|
|
label="Name:"
|
|
label-for="input-name"
|
|
>
|
|
<b-form-input
|
|
id="input-name"
|
|
v-model="workspace.name"
|
|
trim
|
|
/>
|
|
</b-form-group>
|
|
|
|
<b-form-group
|
|
label="Description:"
|
|
label-for="input-description"
|
|
>
|
|
<b-form-input
|
|
id="input-description"
|
|
v-model="workspace.description"
|
|
trim
|
|
/>
|
|
</b-form-group>
|
|
<b-form-row>
|
|
<b-col>
|
|
<b-button variant="primary" type="submit">
|
|
Create Workspace
|
|
</b-button>
|
|
</b-col>
|
|
</b-form-row>
|
|
</b-form>
|
|
</div>
|
|
<div class="col-3" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { v4 as uuid } from "uuid";
|
|
import ClosePageButton from "@/_vue/components/common/ClosePageButton";
|
|
|
|
export default {
|
|
name: 'AddWorkspacePage',
|
|
components: {
|
|
ClosePageButton
|
|
},
|
|
data() {
|
|
return {
|
|
workspace: {
|
|
id: uuid(),
|
|
name: "",
|
|
description: ""
|
|
},
|
|
errors: {
|
|
name: null,
|
|
description: null
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
},
|
|
methods: {
|
|
createWorkspace: function() {
|
|
this.$store.commit("addWorkspace", this.workspace)
|
|
this.$router.push({
|
|
name: "workspaces-page"
|
|
})
|
|
}
|
|
},
|
|
mounted: function() {
|
|
this.$store.commit("hideMenu");
|
|
},
|
|
destroyed: function() {
|
|
this.$store.commit("showMenu");
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
#app_vue > .main-view > .content {
|
|
left: 70px;
|
|
right: 70px;
|
|
}
|
|
h2 {
|
|
i {
|
|
position: relative;
|
|
top: 6px;
|
|
}
|
|
}
|
|
.lens-workspaces {
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
& input {
|
|
background-color: #252729 !important;
|
|
border: 0px !important;
|
|
color: #87909c !important;
|
|
}
|
|
.header {
|
|
padding-top: 15px;
|
|
}
|
|
}
|
|
|
|
</style>
|