mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
199 lines
5.1 KiB
199 lines
5.1 KiB
3 years ago
|
<template>
|
||
3 years ago
|
<div style="height: 100vh">
|
||
2 years ago
|
<splitpanes style="height: calc(100% - 25px); position: relative" class="xc-theme">
|
||
3 years ago
|
<pane
|
||
2 years ago
|
:min-size="showProjectTree ? 10 : 1.5"
|
||
3 years ago
|
:size="showProjectTree ? paneSize : 1.5"
|
||
2 years ago
|
:max-size="showProjectTree ? 50 : 1.5"
|
||
|
style="position: relative; overflow-x: hidden"
|
||
3 years ago
|
>
|
||
3 years ago
|
<ProjectTreeView v-show="showProjectTree" ref="treeview" shared-base />
|
||
3 years ago
|
<v-btn
|
||
|
x-small
|
||
|
icon
|
||
|
color="grey"
|
||
|
class="pane-toggle"
|
||
2 years ago
|
style="transition: all 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); right: -8px"
|
||
|
:class="{ 'pane-toggle-active': showProjectTree }"
|
||
3 years ago
|
@click="toggleTreeView"
|
||
|
>
|
||
|
<v-icon x-small color="rgba(127,130,139)">
|
||
|
{{ showProjectTree ? 'mdi-arrow-left' : 'mdi-arrow-right' }}
|
||
|
</v-icon>
|
||
|
</v-btn>
|
||
|
</pane>
|
||
|
<pane :size="showProjectTree ? 100 - paneSize : 100">
|
||
|
<ProjectTabs :key="pid" @tableCreate="tableCreate" />
|
||
|
</pane>
|
||
|
</splitpanes>
|
||
3 years ago
|
<div class="nc-embedded-options d-flex align-center px-3">
|
||
|
<v-spacer />
|
||
2 years ago
|
<a href="https://github.com/nocodb/nocodb" target="_blank" class="d-inline-flex align-center caption">
|
||
2 years ago
|
<img src="favicon-32.png" height="15" class="mr-2" />
|
||
2 years ago
|
<span>Built with </span> <span class=""><span class="font-weight-bold"> NocoDB</span> </span></a
|
||
|
>
|
||
|
<span v-if="embed" class="caption pointer ml-4" @click="showLargerVersion"
|
||
|
><v-icon small>mdi-arrow-expand</v-icon> Expand</span
|
||
|
>
|
||
3 years ago
|
</div>
|
||
|
</div>
|
||
3 years ago
|
</template>
|
||
|
<script>
|
||
2 years ago
|
import { Splitpanes, Pane } from 'splitpanes';
|
||
|
import ProjectTabs from '~/components/ProjectTabs';
|
||
|
import ProjectTreeView from '@/components/ProjectTreeView';
|
||
3 years ago
|
|
||
|
export default {
|
||
|
components: {
|
||
|
ProjectTreeView,
|
||
|
ProjectTabs,
|
||
|
Splitpanes,
|
||
2 years ago
|
Pane,
|
||
3 years ago
|
},
|
||
3 years ago
|
layout: 'shared',
|
||
3 years ago
|
data() {
|
||
|
return {
|
||
|
paneSize: 18,
|
||
|
mainPanelSize: 82,
|
||
2 years ago
|
showProjectTree: true,
|
||
|
};
|
||
3 years ago
|
},
|
||
|
computed: {
|
||
|
pid() {
|
||
2 years ago
|
return this.$route.params.project_id;
|
||
3 years ago
|
},
|
||
|
embed() {
|
||
2 years ago
|
return this.$store.state.embed;
|
||
|
},
|
||
3 years ago
|
},
|
||
|
async created() {
|
||
|
this.$store.watch(
|
||
|
state => state.panelSize.treeView && state.panelSize.treeView.size,
|
||
2 years ago
|
newSize => {
|
||
|
this.paneSize = newSize;
|
||
3 years ago
|
}
|
||
2 years ago
|
);
|
||
3 years ago
|
},
|
||
|
|
||
|
mounted() {
|
||
|
if ('new' in this.$route.query) {
|
||
2 years ago
|
this.simpleAnim();
|
||
|
this.$router.replace({ query: {} });
|
||
3 years ago
|
}
|
||
|
try {
|
||
|
// eslint-disable-next-line no-undef
|
||
2 years ago
|
hj('stateChange', `${this.$axios.defaults.baseURL}/dashboard/#/nc/`);
|
||
|
} catch (e) {}
|
||
3 years ago
|
},
|
||
|
methods: {
|
||
3 years ago
|
showLargerVersion() {
|
||
2 years ago
|
window.open(location.href.replace(/([?&])embed&?/, '$1'), '_blank');
|
||
3 years ago
|
},
|
||
3 years ago
|
tableCreate(table) {
|
||
|
if (this.$refs.treeview) {
|
||
2 years ago
|
this.$refs.treeview.mtdTableCreate(table);
|
||
3 years ago
|
}
|
||
|
},
|
||
|
simpleAnim() {
|
||
2 years ago
|
const count = 200;
|
||
3 years ago
|
const defaults = {
|
||
2 years ago
|
origin: { y: 0.7 },
|
||
|
};
|
||
3 years ago
|
|
||
|
function fire(particleRatio, opts) {
|
||
2 years ago
|
window.confetti(
|
||
|
Object.assign({}, defaults, opts, {
|
||
|
particleCount: Math.floor(count * particleRatio),
|
||
|
})
|
||
|
);
|
||
3 years ago
|
}
|
||
|
|
||
|
fire(0.25, {
|
||
|
spread: 26,
|
||
2 years ago
|
startVelocity: 55,
|
||
|
});
|
||
3 years ago
|
fire(0.2, {
|
||
2 years ago
|
spread: 60,
|
||
|
});
|
||
3 years ago
|
fire(0.35, {
|
||
|
spread: 100,
|
||
|
decay: 0.91,
|
||
2 years ago
|
scalar: 0.8,
|
||
|
});
|
||
3 years ago
|
fire(0.1, {
|
||
|
spread: 120,
|
||
|
startVelocity: 25,
|
||
|
decay: 0.92,
|
||
2 years ago
|
scalar: 1.2,
|
||
|
});
|
||
3 years ago
|
fire(0.1, {
|
||
|
spread: 120,
|
||
2 years ago
|
startVelocity: 45,
|
||
|
});
|
||
3 years ago
|
},
|
||
|
toggleTreeView() {
|
||
2 years ago
|
this.showProjectTree = !this.showProjectTree;
|
||
|
},
|
||
|
},
|
||
|
};
|
||
3 years ago
|
</script>
|
||
|
<style scoped>
|
||
|
/deep/ .splitpanes__splitter {
|
||
|
background: #7f828b33 !important;
|
||
|
border: #7f828b33 !important;
|
||
|
}
|
||
3 years ago
|
|
||
3 years ago
|
.pane-toggle {
|
||
|
position: absolute;
|
||
|
right: 0;
|
||
|
top: 50%;
|
||
|
bottom: 50%;
|
||
|
z-index: 2;
|
||
|
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), all 0s;
|
||
|
}
|
||
|
|
||
|
.pane-toggle-active {
|
||
|
}
|
||
|
|
||
|
.theme--light .pane-toggle {
|
||
2 years ago
|
background-color: #ffffff;
|
||
3 years ago
|
border: 2px solid rgba(0, 0, 0, 0.12);
|
||
|
}
|
||
|
|
||
|
.theme--dark .pane-toggle {
|
||
|
background-color: #363636;
|
||
|
}
|
||
3 years ago
|
|
||
2 years ago
|
.nc-embedded-options {
|
||
3 years ago
|
height: 25px;
|
||
|
width: 100%;
|
||
|
border: 1px solid #bbb;
|
||
|
}
|
||
3 years ago
|
</style>
|
||
|
<!--
|
||
|
/**
|
||
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd
|
||
|
*
|
||
|
* @author Naveen MR <oof1lab@gmail.com>
|
||
|
* @author Pranav C Balan <pranavxc@gmail.com>
|
||
|
* @author Wing-Kam Wong <wingkwong.code@gmail.com>
|
||
|
* @author Liel Fridman <lielft@gmail.com>
|
||
|
*
|
||
|
* @license GNU AGPL version 3 or any later version
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Affero General Public License as
|
||
|
* published by the Free Software Foundation, either version 3 of the
|
||
|
* License, or (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU Affero General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Affero General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*
|
||
|
*/
|
||
|
-->
|