2022-07-24 14:37:27 +02:00
|
|
|
<template>
|
|
|
|
<div style="flex: 0 0 100%">
|
2023-05-27 17:36:15 +02:00
|
|
|
<div mx-auto style="max-width: 600px" flex gap-2 :class="{ 'flex-col': styleStore.isSmallScreen }">
|
|
|
|
<n-form-item label="Dialect" label-width="500" flex-1>
|
2022-07-24 15:54:05 +02:00
|
|
|
<n-select
|
|
|
|
v-model:value="config.language"
|
|
|
|
:options="[
|
|
|
|
{ label: 'GCP BigQuery', value: 'bigquery' },
|
|
|
|
{ label: 'IBM DB2', value: 'db2' },
|
|
|
|
{ label: 'Apache Hive', value: 'hive' },
|
|
|
|
{ label: 'MariaDB', value: 'mariadb' },
|
|
|
|
{ label: 'MySQL', value: 'mysql' },
|
|
|
|
{ label: 'Couchbase N1QL', value: 'n1ql' },
|
|
|
|
{ label: 'Oracle PL/SQL', value: 'plsql' },
|
|
|
|
{ label: 'PostgreSQL', value: 'postgresql' },
|
|
|
|
{ label: 'Amazon Redshift', value: 'redshift' },
|
|
|
|
{ label: 'Spark', value: 'spark' },
|
|
|
|
{ label: 'Standard SQL', value: 'sql' },
|
|
|
|
{ label: 'sqlite', value: 'sqlite' },
|
|
|
|
{ label: 'SQL Server Transact-SQL', value: 'tsql' },
|
|
|
|
]"
|
|
|
|
/>
|
|
|
|
</n-form-item>
|
2023-05-27 17:36:15 +02:00
|
|
|
<n-form-item label="Keyword case" flex-1>
|
2022-07-24 15:54:05 +02:00
|
|
|
<n-select
|
|
|
|
v-model:value="config.keywordCase"
|
|
|
|
:options="[
|
|
|
|
{ label: 'UPPERCASE', value: 'upper' },
|
|
|
|
{ label: 'lowercase', value: 'lower' },
|
|
|
|
{ label: 'Preserve', value: 'preserve' },
|
|
|
|
]"
|
|
|
|
/>
|
|
|
|
</n-form-item>
|
2023-05-27 17:36:15 +02:00
|
|
|
<n-form-item label="Indent style" flex-1>
|
2022-07-24 15:54:05 +02:00
|
|
|
<n-select
|
|
|
|
v-model:value="config.indentStyle"
|
|
|
|
:options="[
|
|
|
|
{ label: 'Standard', value: 'standard' },
|
|
|
|
{ label: 'Tabular left', value: 'tabularLeft' },
|
|
|
|
{ label: 'Tabular right', value: 'tabularRight' },
|
|
|
|
]"
|
|
|
|
/>
|
|
|
|
</n-form-item>
|
2023-05-27 17:36:15 +02:00
|
|
|
</div>
|
2022-07-24 14:37:27 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<n-form-item label="Your SQL query">
|
|
|
|
<n-input
|
|
|
|
ref="inputElement"
|
|
|
|
v-model:value="rawSQL"
|
|
|
|
placeholder="Put your SQL query here..."
|
|
|
|
type="textarea"
|
|
|
|
rows="20"
|
|
|
|
autocomplete="off"
|
|
|
|
autocorrect="off"
|
|
|
|
autocapitalize="off"
|
|
|
|
spellcheck="false"
|
|
|
|
/>
|
|
|
|
</n-form-item>
|
|
|
|
<n-form-item label="Prettify version of your query">
|
2022-08-03 12:47:00 +02:00
|
|
|
<textarea-copyable :value="prettySQL" language="sql" :follow-height-of="inputElement" />
|
2022-07-24 14:37:27 +02:00
|
|
|
</n-form-item>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2022-08-03 12:47:00 +02:00
|
|
|
import TextareaCopyable from '@/components/TextareaCopyable.vue';
|
2022-07-24 15:54:05 +02:00
|
|
|
import { useStyleStore } from '@/stores/style.store';
|
2022-07-24 14:37:27 +02:00
|
|
|
import { format as formatSQL, type FormatFnOptions } from 'sql-formatter';
|
|
|
|
import { computed, reactive, ref } from 'vue';
|
|
|
|
|
|
|
|
const inputElement = ref<HTMLElement>();
|
2022-07-24 15:54:05 +02:00
|
|
|
const styleStore = useStyleStore();
|
2022-07-24 14:37:27 +02:00
|
|
|
const config = reactive<Partial<FormatFnOptions>>({
|
|
|
|
keywordCase: 'upper',
|
|
|
|
useTabs: false,
|
|
|
|
language: 'sql',
|
|
|
|
indentStyle: 'standard',
|
|
|
|
tabulateAlias: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
const rawSQL = ref('select field1,field2,field3 from my_table where my_condition;');
|
|
|
|
const prettySQL = computed(() => formatSQL(rawSQL.value, config));
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
.result-card {
|
|
|
|
position: relative;
|
|
|
|
.copy-button {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|