blob: 293678d9757092f5d86811df143f66d47d95fdcf [file] [log] [blame]
<!-- Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. -->
<template>
<div class="flex-h btn-box">
<div class="rk-dashboard-bar-btn">
<span v-tooltip:bottom="{ content: rocketGlobal.edit ? 'view' : 'edit' }">
<svg
class="icon lg vm cp rk-btn ghost"
:style="`color:${!rocketGlobal.edit ? '' : '#ffc107'}`"
@click="handleSetEdit"
>
<use :xlink:href="!rocketGlobal.edit ? '#lock' : '#lock-open'"></use>
</svg>
</span>
</div>
<div class="rk-dashboard-bar-btn">
<span v-tooltip:bottom="{ content: 'import' }">
<input id="tool-bar-file" type="file" name="file" title="" accept=".json" @change="importData" />
<label class="rk-btn ghost input-label" for="tool-bar-file">
<svg class="icon lg vm cp " :style="`marginTop: 0px`">
<use :xlink:href="'#folder_open'"></use>
</svg>
</label>
</span>
</div>
<div class="rk-dashboard-bar-btn">
<span v-tooltip:bottom="{ content: 'export' }">
<svg class="icon lg vm cp rk-btn ghost" @click="exportData">
<use :xlink:href="'#save_alt'"></use>
</svg>
</span>
</div>
<div class="rk-dashboard-bar-btn">
<svg class="icon lg vm cp rk-btn ghost" @click="handleOption">
<use xlink:href="#retry"></use>
</svg>
</div>
</div>
</template>
<script lang="ts">
import { Vue, Component, Prop } from 'vue-property-decorator';
import { Action, Mutation } from 'vuex-class';
import { readFile } from '@/utils/readFile';
import { saveFile } from '@/utils/saveFile';
@Component({})
export default class ToolBarBtns extends Vue {
@Prop() private compType!: any;
@Prop() private dashboardType!: any;
@Prop() private rocketGlobal!: any;
@Prop() private rocketComps!: any;
@Prop() private durationTime!: any;
@Prop() private rocketOption: any;
@Mutation('SET_COMPS_TREE') private SET_COMPS_TREE: any;
@Mutation('IMPORT_TREE') private IMPORT_TREE: any;
@Action('SET_EDIT') private SET_EDIT: any;
@Action('MIXHANDLE_GET_OPTION') private MIXHANDLE_GET_OPTION: any;
private handleOption() {
return this.MIXHANDLE_GET_OPTION({
compType: this.compType,
duration: this.durationTime,
keywordServiceName:
this.rocketComps.tree[this.rocketComps.group] && this.rocketComps.tree[this.rocketComps.group].serviceFilter,
});
}
private handleSetEdit() {
this.SET_EDIT(!this.rocketGlobal.edit);
}
private async importData(event: any) {
try {
const data: any = await readFile(event);
if (!Array.isArray(data)) {
throw new Error();
}
const [{ children, name, type }] = data;
if (children && name && type) {
this.IMPORT_TREE(data);
} else {
throw new Error('error');
}
const el: any = document.getElementById('tool-bar-file');
el!.value = '';
} catch (e) {
this.$modal.show('dialog', { text: 'ERROR' });
}
}
private exportData() {
const group = this.rocketComps.tree[this.rocketComps.group];
delete group.query;
const name = 'dashboard.json';
saveFile([group], name);
}
}
</script>
<style lang="scss" scoped>
.rk-dashboard-bar-btn {
padding: 0 5px;
border-right: 2px solid #252a2f;
height: 19px;
}
#tool-bar-file {
display: none;
}
.input-label {
display: inline;
line-height: inherit;
}
.btn-box {
height: 58px;
}
</style>