Merge branch 'main' of github.com:hackku22/Mathy

qi
Garrett Mills 2 years ago
commit 1def341c03

@ -1,27 +1,37 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref } from "vue"; import { ref } from "vue";
import { RichTextBox } from "../types.ts";
import { stepX, stepY } from "../support/const.ts";
const props = defineProps({ const props = defineProps({
statement: { type: String, required: true }, value: {
}) type: RichTextBox,
},
});
</script> </script>
<template> <template>
<Draggable :grid="[25, 25]"> <Draggable
<div style="display: flex"> :grid="[stepX, stepY]"
:default-position="{ x: props.value.x, y: props.value.y }"
>
<div>
<q-card flat bordered> <q-card flat bordered>
<q-card-section style="padding:0"> <q-card-section style="padding: 0">
<div class="row items-center no-wrap"> <div class="row items-center no-wrap">
<q-card-section v-html="props.statement" /> <q-card-section v-html="props.value.text" />
<div class="col-auto"> <div class="col-auto">
<q-btn color="grey-7" round flat icon="more_vert"> <q-btn color="grey-7" round flat icon="more_vert">
<q-menu cover auto-close> <q-menu cover auto-close>
<q-list> <q-list>
<q-item clickable> <q-item clickable>
<q-item-section @click="() => $emit('edit')">Edit</q-item-section> <q-item-section @click="() => $emit('edit')"
>Edit</q-item-section
>
</q-item> </q-item>
<q-item clickable> <q-item clickable>
<q-item-section @click="() => $emit('remove')">Remove</q-item-section> <q-item-section @click="() => $emit('remove')"
>Remove</q-item-section
>
</q-item> </q-item>
</q-list> </q-list>
</q-menu> </q-menu>

@ -10,6 +10,8 @@ import Statement from '../components/Statement.vue'
import VarDeclEditor from './VarDeclEditor.vue' import VarDeclEditor from './VarDeclEditor.vue'
import ExpressionEditor from './ExpressionEditor.vue' import ExpressionEditor from './ExpressionEditor.vue'
import TextBox from '../components/TextBox.vue' import TextBox from '../components/TextBox.vue'
import {RichTextBox} from "../types.ts";
import { stepX, stepY } from "../support/const.ts";
const math = new MathPage(uuidv4()) const math = new MathPage(uuidv4())
const statements = ref<MathStatement[]>([]) const statements = ref<MathStatement[]>([])
@ -95,10 +97,10 @@ const saveNewExpression = (stmt: MathStatement) => {
*/ */
const richTextStatements = ref([ const richTextStatements = ref([
{ text: "test" }, new RichTextBox('newText'),
{ text: "test2" }, new RichTextBox('newText', 0,100)
{ text: "test3" },
]); ]);
const richEditModal = ref(false); const richEditModal = ref(false);
const richEditExpression = ref(""); const richEditExpression = ref("");
@ -190,18 +192,21 @@ function richUpdateValue() {
<!-- drawer content --> <!-- drawer content -->
</q-drawer> </q-drawer>
<q-page-container id="editor" style="display: flex"> <q-page-container id="editor" >
<!-- <WrapperBox />--> <!-- <WrapperBox />-->
<span v-for="statement in statements"> <span v-for="statement in statements" style="display: flex">
<Draggable <Draggable
:grid="[25, 25]" :grid="[stepX, stepY]"
> >
<div>
<Statement <Statement
:key="statementsKey" :key="statementsKey"
:statement="statement" :statement="statement"
:evaluation="evaluation" :evaluation="evaluation"
/> />
</div>
</Draggable> </Draggable>
</span> </span>
@ -245,12 +250,13 @@ function richUpdateValue() {
</q-card-actions> </q-card-actions>
</q-card> </q-card>
</q-dialog> </q-dialog>
<span v-for="(item, index) in richTextStatements"> <div v-for="(item, index) in richTextStatements" style="display: flex">
<TextBox <TextBox
:statement="item.text" :value="item"
v-on:edit="() => (item.text ? richEditStatement(index) : {})" v-on:edit="() => (item.text ? richEditStatement(index) : {})"
></TextBox> />
</span>
</div>
</q-page-container> </q-page-container>
<q-footer reveal elevated class="bg-grey-8 text-white"> <q-footer reveal elevated class="bg-grey-8 text-white">

@ -0,0 +1,2 @@
export const stepX = 5
export const stepY = 5

@ -269,6 +269,9 @@ export class MathStatement {
/** The raw statement input by the user. */ /** The raw statement input by the user. */
public readonly raw: string, public readonly raw: string,
public x: Number = 0,
public y: Number = 0,
) {} ) {}
/** Parse the raw statement to an AST. */ /** Parse the raw statement to an AST. */

@ -91,3 +91,14 @@ export interface EvaluationResult {
variables: Record<VariableName, any> variables: Record<VariableName, any>
statements: Record<StatementID, any> statements: Record<StatementID, any>
} }
export class RichTextBox {
constructor(
public text: string = '',
public x: Number = 0,
public y: Number = 0,
) {
}
}
Loading…
Cancel
Save