{{ data === null ? $t('run_sql_tips') : $t('no_data') }}
+
+
+
+
+
+
+
+
diff --git a/kyuubi-server/web-ui/src/views/editor/components/types.ts b/kyuubi-server/web-ui/src/views/editor/components/types.ts
new file mode 100644
index 00000000000..42475bf4ae8
--- /dev/null
+++ b/kyuubi-server/web-ui/src/views/editor/components/types.ts
@@ -0,0 +1,50 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+interface IResponse {
+ identifier: string
+}
+
+interface ISqlResult {
+ dataName?: string
+ dataType: string
+ value: any
+}
+
+interface IFields {
+ fields: ISqlResult[]
+}
+
+interface ILog {
+ logRowSet: string[]
+ rowCount: number
+}
+
+interface IErrorMessage {
+ title: string
+ description: string
+}
+
+interface IError extends Error {
+ response?: {
+ data?: {
+ message?: string
+ }
+ }
+}
+
+export { IResponse, ISqlResult, IFields, ILog, IErrorMessage, IError }
diff --git a/kyuubi-server/web-ui/src/views/editor/index.vue b/kyuubi-server/web-ui/src/views/editor/index.vue
new file mode 100644
index 00000000000..424d3e929c8
--- /dev/null
+++ b/kyuubi-server/web-ui/src/views/editor/index.vue
@@ -0,0 +1,141 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/kyuubi-server/web-ui/src/views/editor/styles/shared-styles.scss b/kyuubi-server/web-ui/src/views/editor/styles/shared-styles.scss
new file mode 100644
index 00000000000..9027ef69a3a
--- /dev/null
+++ b/kyuubi-server/web-ui/src/views/editor/styles/shared-styles.scss
@@ -0,0 +1,27 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+@mixin sharedNoData {
+ position: absolute;
+ left: 50%;
+ top: 50%;
+ transform: translate(-50%, -50%);
+ font-size: 14px;
+ color: #999;
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
+ text-align: center;
+}
\ No newline at end of file
diff --git a/kyuubi-server/web-ui/src/views/lab/index.vue b/kyuubi-server/web-ui/src/views/lab/index.vue
deleted file mode 100644
index 26ecfac0d87..00000000000
--- a/kyuubi-server/web-ui/src/views/lab/index.vue
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-