Skip to content

Commit

Permalink
Merge pull request #37 from smucclaw/performance
Browse files Browse the repository at this point in the history
Performance Improvements and Add D3
  • Loading branch information
tws4793 committed Mar 15, 2022
2 parents d5ab03f + cdc834a commit 95413a3
Show file tree
Hide file tree
Showing 10 changed files with 27,941 additions and 18,232 deletions.
45,739 changes: 27,736 additions & 18,003 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 2 additions & 6 deletions src/components/Nav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,10 @@ export default {
isNavActive: false,
appName: 'Dolores',
menuItems: [
{
/* {
name: 'About',
link: '/about',
},
{
name: 'Editor',
link: '/editor',
},
}, */
],
};
},
Expand Down
194 changes: 194 additions & 0 deletions src/components/viz/D3.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,194 @@
<template lang="pug">
.card
button#zoomin +
svg#tree.tree
// preserveAspectRatio="xMinYMin meet">
clippath#clip
</template>

<script>
// import { mapGetters } from 'vuex';
// import { mapFields } from 'vuex-map-fields';
import * as d3 from 'd3';
export default {
name: 'D3',
props: {
qroot: Object,
},
data() {
return {
width: window.innerWidth,
i: 0,
};
},
methods: {
addObject(target, obj) {
return Object.assign(target, obj);
},
reformatdata(data) {
const viewChild = (
data.andOr.children.filter((child) => child.shouldView === 'View')
)[0].andOr;
const getObject = { ...viewChild };
const newTree = data;
const newChildren = data.andOr.children
.filter((child) => child.shouldView === 'Ask');
newChildren.map((leaf) => this.addObject(leaf.andOr, getObject));
newTree.andOr.children = newChildren;
return newTree;
},
init(data) {
// this.reformatdata(data);
let nodes = d3.hierarchy((data), (d) => d.andOr.children);
// set the dimensions and margins of the diagram
const margin = {
top: 10, right: 15, bottom: 10, left: 100,
};
const width = this.width - margin.left - margin.right;
const height = (nodes.children.length * (width / nodes.children.length))
- margin.top - margin.bottom;
console.log(nodes);
// declares a tree layout and assigns the size
const treemap = d3.tree()
.size([width, height]);
// maps the node data to the tree layout
nodes = treemap(nodes);
let x0 = Infinity;
let x1 = -x0;
nodes.each((d) => {
if (d.x > x1) x1 = d.x;
if (d.x < x0) x0 = d.x;
});
const svg = d3.select('#tree')
.attr('width', width + margin.right + margin.left)
.attr('height', height + margin.top + margin.bottom)
.attr('viewBox', [0, 0, width, height]);
// appends a 'group' element to 'svg'
const g = svg.append('g')
.attr('font-family', 'sans-serif')
.attr('font-size', 10)
// root node has depth of zero, leaf nodes have height of zero
// but it looks better at nodes.height + 1
.attr('transform', `translate(${nodes.x / (nodes.height + 1)},0)`);
function zoomed({ transform }) {
g.attr('transform', transform);
}
function dragStart() {
d3.select(this).raise();
g.attr('cursor', 'grab');
}
function dragDo(e) {
const { x } = e;
const { y } = e;
d3.select(this)
.attr('x', x)
.attr('y', y);
}
function dragEnd() {
g.attr('cursor', 'grab');
}
function drag() {
svg.call(d3.drag()
.on('start', dragStart)
.on('drag', dragDo)
.on('end', dragEnd));
}
function zoom() {
svg.call(d3.zoom()
.extent([[0, 0], [width, height]])
.scaleExtent([1, 8])
.on('zoom', zoomed));
}
zoom();
drag();
function chooseColors(d, tags, color) {
for (let i = 0; i < tags.length; i += 1) {
if (d.data.andOr.tag === tags[i]) {
return color[i];
}
}
return 'black';
}
const link = g.append('g')
.attr('fill', 'none')
.selectAll('path')
.data(nodes.links())
.join('path')
.attr('stroke', (d) => chooseColors(d.source, ['All', 'Any'], ['red', 'blue']))
.attr('stroke-width', 2)
.attr('d', d3.linkHorizontal()
.x((d) => d.y)
.y((d) => d.x))
.attr('id', (d, i) => (`path${i + 1}`));
link
.append('textPath')
.attr('x', (d) => (d.target.x - d.source.x) / 2)
.attr('y', (d) => (d.target.y - d.source.y) / 2)
.attr('fill', (d) => chooseColors(d.source, ['All', 'Any'], ['red', 'blue']))
.style('text-anchor', 'middle')
.attr('href', (d, i) => (`#path${i + 1}`))
.text((d) => d.source.data.andOr.nl.en);
// adds each node as a group
const node = g.append('g')
.selectAll('g')
.data(nodes.descendants())
.join('g')
.attr('transform', (d) => `translate(${d.y},${d.x})`);
// adds the circle to the node
node.append('circle')
.attr('fill', (d) => {
if (d.parent) { return chooseColors(d.parent, ['All', 'Any'], ['red', 'blue']); }
return 'black';
})
.attr('fill-opacity', 0.5)
.attr('r', 10);
// adds the text to the node
node.append('text')
.attr('dy', '.35em')
.attr('y', (d) => (d.children ? -20 : 20))
.style('text-anchor', 'middle')
.text((d) => d.data.andOr.nl.en);
},
},
computed: {
// ...mapFields(['marking', 'anyallform', 'formTitle']),
// ...mapGetters(['qrootExample1']),
},
components: {
// Q,
// HelloWorld,
},
mounted() {
this.init(this.qroot);
},
};
</script>

<style scoped>
.tree {
overflow-x: scroll;
width: 100%;
}
</style>
59 changes: 0 additions & 59 deletions src/grammars/calc.jison

This file was deleted.

27 changes: 3 additions & 24 deletions src/router/index.js
Original file line number Diff line number Diff line change
@@ -1,33 +1,12 @@
import { createRouter, createWebHistory } from 'vue-router';
import Home from '../views/Home.vue';
import Questions from '../views/Questions.vue';
import Editor from '../views/Editor.vue';

const rtHome = () => import('@/views/Home.vue');

const routes = [
{
path: '/',
name: 'Home',
component: Home,
},
{
path: '/about',
name: 'About',
// route level code-splitting
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component() {
return import(/* webpackChunkName: "about" */ '../views/About.vue');
},
},
{
path: '/questions',
name: 'Questions',
component: Questions,
},
{
path: '/editor',
name: 'Editor',
component: Editor,
component: rtHome,
},
];

Expand Down
6 changes: 0 additions & 6 deletions src/store/index.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
import { createStore } from 'vuex';
import { getField, updateField } from 'vuex-map-fields';
import { str } from '../index.purs';
import * as AnyAll from '../AnyAll.purs';
import * as PDPA from '../RuleLib/PDPADBNO.purs';

const isMustSing = false;

export default createStore({
state: {
pur_str: AnyAll.fromNode2(str),
anyallform: AnyAll.anyallform1,
marking: AnyAll.emptyMarking,
rulesExample1: AnyAll.example1,
nlExample1: AnyAll.example1_nl,
rulesPDPA: PDPA.schedule1_part1,
rulesPDPA_nl: PDPA.schedule1_part1_nl,
editor_str: 'press eval to parse input according to calc.jison grammar',
},
getters: {
getField,
Expand All @@ -33,8 +29,6 @@ export default createStore({
},
mutations: {
/* eslint no-param-reassign: ["error", { "props": false }] */
reset_editor_str(s) { s.editor_str = ''; },
append_editor_str(s, x) { s.editor_str += x; },
updateField,
updateMarkingField(state, payload) {
state.marking[payload.mField] = payload.vValue;
Expand Down
4 changes: 0 additions & 4 deletions src/views/About.vue

This file was deleted.

Loading

0 comments on commit 95413a3

Please sign in to comment.