created UI for adding parameters

This commit is contained in:
2025-01-07 13:20:45 +01:00
parent ea83e95a00
commit e834229cae

View File

@@ -3,12 +3,13 @@ import InsertTemplateComponent from '@components/common/InsertTemplateComponent.
import XMLButtonFormatterComponent from '@components/formatter/XMLButtonFormatterComponent.vue' import XMLButtonFormatterComponent from '@components/formatter/XMLButtonFormatterComponent.vue'
import CodeEditor from '@/components/common/CodeEditorComponent.vue' import CodeEditor from '@/components/common/CodeEditorComponent.vue'
import { ref } from 'vue' import {ref} from 'vue'
import TabComponent from "@components/xml/TabComponent.vue";
const props = defineProps( const props = defineProps(
{ {
stylizedName: {type: String, required: true}, stylizedName: {type: String, required: true},
data: {type: String}, data: {type: String},
} }
) )
const emit = defineEmits(['update:modelValue']) const emit = defineEmits(['update:modelValue'])
@@ -17,54 +18,88 @@ const data = ref('')
const inputFile = ref() const inputFile = ref()
function sendValue() { function sendValue() {
emit('update:modelValue', data.value) emit('update:modelValue', data.value)
} }
function updateData(newData: string, clearFileSelector: boolean = true) { function updateData(newData: string, clearFileSelector: boolean = true) {
data.value = newData data.value = newData
if (clearFileSelector) if (clearFileSelector)
inputFile.value.value = ''; inputFile.value.value = '';
sendValue() sendValue()
} }
function clear() { function clear() {
updateData('') updateData('')
} }
function canBeFormatted() { function canBeFormatted() {
return props.stylizedName.toLowerCase() == 'xml' || return props.stylizedName.toLowerCase() == 'xml' ||
props.stylizedName.toLowerCase() == 'xsd' || props.stylizedName.toLowerCase() == 'xsd' ||
props.stylizedName.toLowerCase() == 'xslt' props.stylizedName.toLowerCase() == 'xslt'
} }
function readFile(file : any) { function addParameters() {
return props.stylizedName?.toLowerCase() == "xslt"
const reader = new FileReader()
reader.onloadend = () => {
let result = reader.result?.toString()
if (typeof result == "string")
updateData(result, false);
}
reader.readAsText(file.target.files[0])
} }
function readFile(file: any) {
const reader = new FileReader()
reader.onloadend = () => {
let result = reader.result?.toString()
if (typeof result == "string")
updateData(result, false);
}
reader.readAsText(file.target.files[0])
}
</script> </script>
<template> <template>
<div class="flex flex-col w-full h-1/2 lg:h-1/2 flex-none xl:pr-2 2xl:pr-4 pb-2"> <div class="flex flex-col w-full h-1/2 lg:h-1/2 flex-none xl:pr-2 2xl:pr-4 pb-2">
<div class="flex place-content-between w-full items-center"> <div class="flex justify-between mb-2"></div>
<span class="dark:text-white mr-2">{{ stylizedName }}</span>
<div class="flex space-x-2 pb-2 overflow-x-auto"> <div class="flex place-content-between w-full items-center">
<div class="flex items-stretch w-64"> <span class="dark:text-white mr-2">{{ stylizedName }}</span>
<input id="fileLoader" ref="inputFile" class="file-selector" type="file" accept=".xml,.xql,.xquery,.xslt,text/xml,text/plain" @change="readFile" /> <div class="flex items-stretch w-64">
</div> <input id="fileLoader" ref="inputFile" class="file-selector" type="file" accept=".xml,.xql,.xquery,.xslt,text/xml,text/plain" @change="readFile" />
</div>
<InsertTemplateComponent :stylized-name="props.stylizedName" @update:default-data="updateData"></InsertTemplateComponent> <div class="flex space-x-2 pb-2 overflow-x-auto">
<XMLButtonFormatterComponent v-if="canBeFormatted()" :xml="data" @update:result="(data:any) => updateData(data.result)"></XMLButtonFormatterComponent> <InsertTemplateComponent :stylized-name="props.stylizedName" @update:default-data="updateData"></InsertTemplateComponent>
<button class="tool-button" @click="clear">Clear</button> <XMLButtonFormatterComponent v-if="canBeFormatted()" :xml="data" @update:result="(data:any) => updateData(data.result)"></XMLButtonFormatterComponent>
</div> <button class="tool-button" @click="clear">Clear</button>
</div> </div>
<CodeEditor @update:updated-code="updateData" v-model="data" :code="data" :config="{disabled:false, language:stylizedName}"></CodeEditor>
</div> </div>
<div class="flex place-content-between w-full items-center">
<div v-if="addParameters()" class="flex justify-end space-x-2 pb-2 overflow-x-auto ml-auto">
<select id = "myList" onchange = "favTutorial()" class = "w-full rounded-3xl" >
<option> ---Choose tutorial--- </option>
<option> w3schools </option>
<option> Javatpoint </option>
<option> tutorialspoint </option>
<option> geeksforgeeks </option>
</select>
<input
id="textInput1"
class="text-input px-2 py-1 border rounded-3xl w-1/3"
type="text"
placeholder="Input 1"
/>
<input
id="textInput2"
class="text-input px-2 py-1 border rounded-3xl w-1/3"
type="text"
placeholder="Input 2"
/>
<button class="tool-button" @click="clear">Add Variable</button>
</div>
</div>
<CodeEditor @update:updated-code="updateData" v-model="data" :code="data"
:config="{disabled:false, language:stylizedName}"></CodeEditor>
</div>
</template> </template>