多维表格
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.
 
 
 
 
 
 

198 lines
5.1 KiB

<template>
<div style="height: 100vh">
<splitpanes style="height: calc(100% - 25px); position: relative" class="xc-theme">
<pane
:min-size="showProjectTree ? 10 : 1.5"
:size="showProjectTree ? paneSize : 1.5"
:max-size="showProjectTree ? 50 : 1.5"
style="position: relative; overflow-x: hidden"
>
<ProjectTreeView v-show="showProjectTree" ref="treeview" shared-base />
<v-btn
x-small
icon
color="grey"
class="pane-toggle"
style="transition: all 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); right: -8px"
:class="{ 'pane-toggle-active': showProjectTree }"
@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>
<div class="nc-embedded-options d-flex align-center px-3">
<v-spacer />
<a href="https://github.com/nocodb/nocodb" target="_blank" class="d-inline-flex align-center caption">
<img src="favicon-32.png" height="15" class="mr-2" />
<span>Built with </span> &nbsp; <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
>
</div>
</div>
</template>
<script>
import { Splitpanes, Pane } from 'splitpanes';
import ProjectTabs from '~/components/ProjectTabs';
import ProjectTreeView from '@/components/ProjectTreeView';
export default {
components: {
ProjectTreeView,
ProjectTabs,
Splitpanes,
Pane,
},
layout: 'shared',
data() {
return {
paneSize: 18,
mainPanelSize: 82,
showProjectTree: true,
};
},
computed: {
pid() {
return this.$route.params.project_id;
},
embed() {
return this.$store.state.embed;
},
},
async created() {
this.$store.watch(
state => state.panelSize.treeView && state.panelSize.treeView.size,
newSize => {
this.paneSize = newSize;
}
);
},
mounted() {
if ('new' in this.$route.query) {
this.simpleAnim();
this.$router.replace({ query: {} });
}
try {
// eslint-disable-next-line no-undef
hj('stateChange', `${this.$axios.defaults.baseURL}/dashboard/#/nc/`);
} catch (e) {}
},
methods: {
showLargerVersion() {
window.open(location.href.replace(/([?&])embed&?/, '$1'), '_blank');
},
tableCreate(table) {
if (this.$refs.treeview) {
this.$refs.treeview.mtdTableCreate(table);
}
},
simpleAnim() {
const count = 200;
const defaults = {
origin: { y: 0.7 },
};
function fire(particleRatio, opts) {
window.confetti(
Object.assign({}, defaults, opts, {
particleCount: Math.floor(count * particleRatio),
})
);
}
fire(0.25, {
spread: 26,
startVelocity: 55,
});
fire(0.2, {
spread: 60,
});
fire(0.35, {
spread: 100,
decay: 0.91,
scalar: 0.8,
});
fire(0.1, {
spread: 120,
startVelocity: 25,
decay: 0.92,
scalar: 1.2,
});
fire(0.1, {
spread: 120,
startVelocity: 45,
});
},
toggleTreeView() {
this.showProjectTree = !this.showProjectTree;
},
},
};
</script>
<style scoped>
/deep/ .splitpanes__splitter {
background: #7f828b33 !important;
border: #7f828b33 !important;
}
.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 {
background-color: #ffffff;
border: 2px solid rgba(0, 0, 0, 0.12);
}
.theme--dark .pane-toggle {
background-color: #363636;
}
.nc-embedded-options {
height: 25px;
width: 100%;
border: 1px solid #bbb;
}
</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/>.
*
*/
-->