frequi_origin/src/components/ftbot/PlotConfigurator.vue

337 lines
8.5 KiB
Vue
Raw Normal View History

<template>
2020-07-01 18:22:29 +00:00
<div v-if="columns">
<div class="col-mb-3 ml-2">
2020-08-01 18:43:14 +00:00
<b-form-radio-group
class="w-100"
v-model="plotOption"
:options="plotOptions"
buttons
button-variant="outline-primary"
>
</b-form-radio-group>
</div>
2020-08-01 18:43:14 +00:00
<div class="col-mb-3" v-if="plotOption == 'subplots'">
<hr />
<b-form-group label="Subplot" label-for="FieldSel">
<b-form-select id="FieldSel" :options="subplots" v-model="selSubPlot" :select-size="4">
2020-07-01 18:22:29 +00:00
</b-form-select>
</b-form-group>
</div>
<b-form-group v-if="plotOption == 'subplots'" label="New subplot" label-for="newSubplot">
2020-08-01 18:43:14 +00:00
<b-input-group size="sm">
2020-07-01 18:39:03 +00:00
<b-form-input class="addPlot" id="newSubplot" v-model="newSubplotName"></b-form-input>
<b-input-group-append>
<b-button @click="addSubplot">+</b-button>
2020-08-01 18:43:14 +00:00
<b-button @click="delSubplot" v-if="selSubPlot">-</b-button>
2020-07-01 18:39:03 +00:00
</b-input-group-append>
</b-input-group>
2020-07-01 18:22:29 +00:00
</b-form-group>
2020-07-01 18:39:03 +00:00
<hr />
2020-08-01 18:43:14 +00:00
<b-form-group label="Used indicators" label-for="selectedIndicators">
<b-form-select
id="selectedIndicators"
:options="usedColumns"
v-model="selIndicator"
:select-size="4"
>
</b-form-select>
</b-form-group>
<b-form-group label="Add indicator" label-for="indicatorSelector">
<b-form-select
id="indicatorSelector"
:options="columns"
v-model="selAvailableIndicator"
:select-size="4"
>
</b-form-select>
2020-07-01 18:22:29 +00:00
</b-form-group>
2020-07-01 18:59:45 +00:00
2020-08-01 18:43:14 +00:00
<b-form-group label="Choose type" label-for="plotTypeSelector">
2020-07-01 18:59:45 +00:00
<b-form-select id="plotTypeSelector" :options="availableGraphTypes" v-model="graphType">
</b-form-select>
</b-form-group>
2020-07-01 18:39:03 +00:00
<hr />
2020-07-01 18:22:29 +00:00
2020-08-01 18:43:14 +00:00
<b-form-group label="Color" label-for="colsel" size="sm">
2020-07-01 18:39:03 +00:00
<b-input-group>
<b-input-group-prepend>
<div v-bind:style="{ 'background-color': selColor }" class="colorbox mr-2"></div>
</b-input-group-prepend>
2020-08-01 18:43:14 +00:00
<b-form-input id="colsel" v-model="selColor" size="sm"> </b-form-input>
2020-07-01 18:39:03 +00:00
<b-input-group-append>
2020-07-01 18:22:29 +00:00
<b-button variant="primary" @click="newColor" size="sm">&#x21bb;</b-button>
2020-07-01 18:39:03 +00:00
</b-input-group-append>
</b-input-group>
2020-07-01 18:22:29 +00:00
</b-form-group>
2020-07-01 18:39:03 +00:00
<hr />
2020-07-01 18:22:29 +00:00
<div class="row">
<b-button
2020-08-01 18:43:14 +00:00
class="ml-1"
variant="primary"
2020-08-01 18:43:14 +00:00
@click="addIndicator"
title="Add indicator to plot"
size="sm"
2020-08-01 18:43:14 +00:00
:disabled="!selAvailableIndicator"
>
Add
</b-button>
2020-08-01 18:43:14 +00:00
<b-button
class="ml-1"
variant="primary"
@click="removeIndicator"
title="Remove indicator to plot"
size="sm"
:disabled="!selIndicator"
>
Remove
</b-button>
<b-button class="ml-1" variant="primary" @click="loadPlotConfig" size="sm">Load</b-button>
<b-button class="ml-1" variant="primary" @click="loadPlotConfigFromStrategy" size="sm">
Load from strategy
</b-button>
<b-button
2020-08-01 18:43:14 +00:00
class="ml-1"
variant="primary"
@click="savePlotConfig"
size="sm"
data-toggle="tooltip"
title="Save configuration"
>Save</b-button
>
<b-button
2020-08-01 18:43:14 +00:00
class="ml-1"
id="showButton"
variant="primary"
@click="showConfig = !showConfig"
size="sm"
title="Show configuration for easy transfer to a strategy"
>Show</b-button
>
<b-button
2020-08-01 18:43:14 +00:00
class="ml-1"
variant="primary"
@click="loadConfigFromString"
size="sm"
v-if="showConfig"
title="Load configuration from text box below"
>Load from String</b-button
>
</div>
<div class="col-mb-5 ml-2 mt-2" v-if="showConfig">
<b-textarea
id="TextArea"
class="textArea"
v-model="plotConfigJson"
size="sm"
:state="tempPlotConfigValid"
>
</b-textarea>
2020-07-01 18:22:29 +00:00
</div>
</div>
</template>
<script lang="ts">
import { Component, Vue, Prop, Emit } from 'vue-property-decorator';
import { namespace } from 'vuex-class';
2020-07-24 05:57:14 +00:00
import { PlotConfig, EMPTY_PLOTCONFIG } from '@/store/types';
import randomColor from '@/shared/randomColor';
import { loadCustomPlotConfig } from '@/shared/storage';
const ftbot = namespace('ftbot');
@Component({})
export default class PlotConfigurator extends Vue {
@Prop({ required: true }) value!: PlotConfig;
@Prop({ required: true }) columns!: Array<string>;
@Emit('input')
emitPlotConfig() {
return this.plotConfig;
}
2020-08-07 04:57:05 +00:00
@ftbot.Action getStrategyPlotConfig;
@ftbot.State strategyPlotConfig;
plotConfig: PlotConfig = EMPTY_PLOTCONFIG;
2020-08-01 18:43:14 +00:00
plotOptions = [
{ text: 'Main Plot', value: 'main_plot' },
{ text: 'Subplots', value: 'subplots' },
];
plotOption = 'main_plot';
newSubplotName = '';
2020-08-01 18:43:14 +00:00
selAvailableIndicator = '';
selIndicator = '';
2020-07-01 18:59:45 +00:00
graphType = 'line';
availableGraphTypes = ['line', 'bar', 'scatter'];
showConfig = false;
2020-08-01 18:43:14 +00:00
selSubPlot = '';
tempPlotConfig?: PlotConfig = undefined;
tempPlotConfigValid = true;
selColor = randomColor();
@ftbot.Mutation
saveCustomPlotConfig;
get plotConfigJson() {
return JSON.stringify(this.plotConfig, null, 2);
}
set plotConfigJson(newValue: string) {
try {
this.tempPlotConfig = JSON.parse(newValue);
// TODO: Should Validate schema validity (should be PlotConfig type...)
this.tempPlotConfigValid = true;
} catch (err) {
this.tempPlotConfigValid = false;
}
}
get subplots() {
// Subplot keys (for selection window)
return Object.keys(this.plotConfig.subplots);
}
2020-08-01 18:43:14 +00:00
get usedColumns() {
if (this.isMainPlot) {
return Object.keys(this.plotConfig.main_plot);
}
if (this.selSubPlot in this.plotConfig[this.plotOption]) {
return Object.keys(this.plotConfig[this.plotOption][this.selSubPlot]);
}
return [];
}
get isMainPlot() {
return this.plotOption === 'main_plot';
}
mounted() {
console.log('mounted');
this.plotConfig = this.value;
}
2020-07-01 18:22:29 +00:00
newColor() {
this.selColor = randomColor();
}
2020-08-01 18:43:14 +00:00
addIndicator() {
console.log(this.plotConfig);
const { plotConfig } = this;
2020-08-01 18:43:14 +00:00
if (this.isMainPlot) {
console.log(`Adding ${this.selAvailableIndicator} to MainPlot`);
plotConfig[this.plotOption][this.selAvailableIndicator] = {
color: this.selColor,
type: this.graphType,
};
} else {
2020-08-01 18:43:14 +00:00
console.log(`Adding ${this.selAvailableIndicator} to ${this.selSubPlot}`);
plotConfig[this.plotOption][this.selSubPlot][this.selAvailableIndicator] = {
2020-07-01 18:59:45 +00:00
color: this.selColor,
type: this.graphType,
};
}
this.plotConfig = { ...plotConfig };
2020-08-01 18:43:14 +00:00
this.selAvailableIndicator = '';
// Reset random color
2020-07-01 18:22:29 +00:00
this.newColor();
2020-08-01 18:43:14 +00:00
this.emitPlotConfig();
}
removeIndicator() {
console.log(this.plotConfig);
2020-08-01 18:43:14 +00:00
const { plotConfig } = this;
if (this.isMainPlot) {
console.log(`Removing ${this.selIndicator} from MainPlot`);
delete plotConfig[this.plotOption][this.selIndicator];
} else {
console.log(`Removing ${this.selIndicator} from ${this.selSubPlot}`);
delete plotConfig[this.plotOption][this.selSubPlot][this.selIndicator];
}
this.plotConfig = { ...plotConfig };
console.log(this.plotConfig);
this.selIndicator = '';
this.emitPlotConfig();
}
addSubplot() {
this.plotConfig.subplots = {
...this.plotConfig.subplots,
[this.newSubplotName]: {},
};
2020-08-01 18:43:14 +00:00
this.selSubPlot = this.newSubplotName;
this.newSubplotName = '';
console.log(this.plotConfig);
this.emitPlotConfig();
}
2020-07-01 18:22:29 +00:00
delSubplot() {
2020-08-01 18:43:14 +00:00
delete this.plotConfig.subplots[this.selSubPlot];
2020-07-01 18:22:29 +00:00
this.plotConfig.subplots = { ...this.plotConfig.subplots };
}
savePlotConfig() {
this.saveCustomPlotConfig(this.plotConfig);
}
loadPlotConfig() {
this.plotConfig = loadCustomPlotConfig();
console.log(this.plotConfig);
console.log('loading config');
this.emitPlotConfig();
}
loadConfigFromString() {
// this.plotConfig = JSON.parse();
if (this.tempPlotConfig !== undefined && this.tempPlotConfigValid) {
this.plotConfig = this.tempPlotConfig;
this.emitPlotConfig();
}
}
async loadPlotConfigFromStrategy() {
2020-08-07 04:57:05 +00:00
await this.getStrategyPlotConfig();
this.plotConfig = this.strategyPlotConfig;
}
}
</script>
2020-07-01 18:22:29 +00:00
<style scoped>
.textArea {
min-height: 250px;
}
.colorbox {
2020-07-01 18:39:03 +00:00
border-radius: 50%;
2020-08-01 18:43:14 +00:00
margin-top: auto;
margin-bottom: auto;
2020-07-01 18:22:29 +00:00
height: 25px;
width: 25px;
2020-07-01 18:39:03 +00:00
vertical-align: center;
2020-07-01 18:22:29 +00:00
}
2020-08-01 18:43:14 +00:00
.form-group {
margin-bottom: 0.5rem;
}
hr {
margin-bottom: 0.5rem;
margin-top: 0.5rem;
}
</style>