浏览代码

feat(AdvancedTable): Draggable columns dropdown and a few minor tweaks

Owen Diffey 3 年之前
父节点
当前提交
74c1e32f13
共有 3 个文件被更改,包括 61 次插入35 次删除
  1. 6 1
      frontend/src/App.vue
  2. 48 34
      frontend/src/components/AdvancedTable.vue
  3. 7 0
      frontend/src/pages/Station/index.vue

+ 6 - 1
frontend/src/App.vue

@@ -1054,7 +1054,7 @@ img {
 	.nav-dropdown-items {
 		max-height: 220px;
 		overflow-y: auto;
-		padding: 10px 10px 0 10px;
+		padding: 10px;
 
 		.nav-item {
 			width: 100%;
@@ -1935,4 +1935,9 @@ html {
 ::-webkit-scrollbar-corner {
 	background-color: transparent;
 }
+
+:disabled,
+.disabled {
+	cursor: not-allowed;
+}
 </style>

+ 48 - 34
frontend/src/components/AdvancedTable.vue

@@ -34,12 +34,12 @@
 						</div>
 						<p class="control is-expanded">
 							<input
-								v-if="query.filter.type === 'regex'"
 								v-model="query.data"
 								class="input"
 								type="text"
 								placeholder="Search value"
 								@keyup.enter="getData()"
+								:disabled="!query.filter.type"
 							/>
 						</p>
 						<div class="control">
@@ -71,44 +71,57 @@
 				:interactive="true"
 				placement="bottom"
 				theme="dropdown"
-				ref="toggleColumns"
+				ref="editColumns"
 				trigger="click"
 			>
 				<a class="button is-info" @click.prevent="true">
-					<i class="material-icons icon-with-button">visibility</i>
-					Toggle Columns
+					<i class="material-icons icon-with-button">tune</i>
+					Columns
 				</a>
 
 				<template #content>
-					<div class="nav-dropdown-items">
-						<button
-							v-for="(column, index) in hidableSortedColumns"
-							:key="column.name"
-							class="nav-item"
-							@click.prevent="toggleColumnVisibility(column)"
-							:title="column.displayName"
-						>
-							<p class="control is-expanded checkbox-control">
-								<label class="switch">
-									<input
-										type="checkbox"
-										:id="index"
-										:checked="
-											shownColumns.indexOf(
-												column.name
-											) !== -1
-										"
-										@click="toggleColumnVisibility(column)"
-									/>
-									<span class="slider round"></span>
-								</label>
-								<label :for="index">
-									<span></span>
-									<p>{{ column.displayName }}</p>
-								</label>
-							</p>
-						</button>
-					</div>
+					<draggable
+						item-key="name"
+						v-model="orderedColumns"
+						v-bind="columnDragOptions"
+						tag="div"
+						draggable=".item-draggable"
+						class="nav-dropdown-items"
+					>
+						<template #item="{ element: column }">
+							<button
+								v-if="column.name !== 'select'"
+								:class="{
+									sortable: column.sortable,
+									'item-draggable': column.draggable,
+									'nav-item': true
+								}"
+							>
+								<p class="control is-expanded checkbox-control">
+									<label class="switch">
+										<input
+											v-if="column.hidable"
+											type="checkbox"
+											:id="index"
+											:checked="
+												shownColumns.indexOf(
+													column.name
+												) !== -1
+											"
+											@click="
+												toggleColumnVisibility(column)
+											"
+										/>
+										<span class="slider round"></span>
+									</label>
+									<label :for="index">
+										<span></span>
+										<p>{{ column.displayName }}</p>
+									</label>
+								</p>
+							</button>
+						</template>
+					</draggable>
 				</template>
 			</tippy>
 		</div>
@@ -534,7 +547,8 @@ export default {
 				});
 		},
 		removeQueryItem(index) {
-			this.advancedQuery.splice(index, 1);
+			if (this.advancedQuery.length > 1)
+				this.advancedQuery.splice(index, 1);
 		}
 	}
 };

+ 7 - 0
frontend/src/pages/Station/index.vue

@@ -2406,6 +2406,13 @@ export default {
 		}
 	}
 }
+
+#control-bar-container
+	#right-buttons
+	.tippy-box[data-theme~="dropdown"]
+	.nav-dropdown-items {
+	padding-bottom: 0 !important;
+}
 </style>
 
 <style lang="scss" scoped>