File size: 15,147 Bytes
71174bc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 | <template>
<span>
<!-- <div class="container-fluid"> -->
<!-- <div class="row"> -->
<!-- @onChange="onDataUpdated" -->
<!-- cls="border-0 mt-2" -->
<!-- cls="px-3" -->
<FormWrapper :label="regionsInTree ? 'Load from Sphere or Box Region' : undefined
" :disabled="disabled">
<FormSelect v-if="regionsInTree" :disabled="disabled" :options="regionsInTree"
:modelValue="selectedRegionId" @onChange="onRegionSelected">
</FormSelect>
</FormWrapper>
<FormWrapper :label="regionNameToUse + 'Dimensions (X, Y, Z)'" :disabled="disabled" v-if="isBox">
<!-- :placeHolder="placeHolder" -->
<!-- :filterFunc="filterFunc" -->
<FormVector3D v-model="modelValueToUse.dimensions" :id="'dimens-' + id" :disabled="disabled"
:description="description" @onChange="resetSelected" styl="padding-left: 12px; padding-right: 12px;"
:delayBetweenChangesDetected="0" />
</FormWrapper>
<FormWrapper :label="regionNameToUse + 'Radius'" :disabled="disabled" v-else>
<!-- :placeHolder="placeHolder" -->
<!-- :filterFunc="filterFunc" -->
<FormInput v-model="modelValueToUse.radius" :id="id + '-radius'" :disabled="disabled"
:description="description" styl="padding-left: 12px; padding-right: 12px;" @onChange="onRadiusChange"
placeHolder="Radius..." />
</FormWrapper>
<FormWrapper :label="regionNameToUse + 'Center (X, Y, Z)'" :disabled="disabled">
<!-- :placeHolder="placeHolder" -->
<!-- :filterFunc="filterFunc" -->
<FormVector3D v-model="modelValueToUse.center" :id="'center-' + id" :disabled="disabled"
:description="description" @onChange="resetSelected" styl="padding-left: 12px; padding-right: 12px;"
:delayBetweenChangesDetected="0" />
</FormWrapper>
<!-- </div> -->
<!-- </div> -->
<FormElementDescription :description="description" :warning="warningToUse"></FormElementDescription>
<!-- <FormElementDescription
v-if="regionsInTree === undefined"
description="No sphere or box regions in project. Please define a box center and dimensions below."
></FormElementDescription> -->
</span>
</template>
<script lang="ts">
/* eslint-disable @typescript-eslint/ban-types */
import { randomID } from "@/Core/Utils/MiscUtils";
import { Options, Vue } from "vue-class-component";
import { Prop, Watch } from "vue-property-decorator";
import FormElementDescription from "@/UI/Forms/FormElementDescription.vue";
import FormVector3D from "../FormVector3D.vue";
import FormWrapper from "../FormWrapper.vue";
import FormSelect from "../FormSelect.vue";
import { IUserArgOption } from "../FormFull/FormFullInterfaces";
import { TreeNodeList } from "@/TreeNodes/TreeNodeList/TreeNodeList";
import { TreeNode } from "@/TreeNodes/TreeNode/TreeNode";
import Alert from "../../Layout/Alert.vue";
import {
IBox,
ISphere,
ISphereOrBox,
RegionType,
} from "../../Navigation/TreeView/TreeInterfaces";
import FormInput from "../FormInput.vue";
import { createNaturalSortFunc } from "@/Core/Utils/StringUtils"
// const sortFunc = (a: TreeNode, b: TreeNode) => {
// if (a.title < b.title) {
// return -1;
// }
// if (a.title > b.title) {
// return 1;
// }
// return 0;
// };
const defaultVals = {
center: [0, 0, 0],
dimensions: [20, 20, 20],
radius: 20,
} as ISphereOrBox;
/**
* FormSelectRegion component
*/
@Options({
components: {
FormElementDescription,
FormVector3D,
FormWrapper,
FormSelect,
Alert,
FormInput,
},
})
export default class FormSelectRegion extends Vue {
@Prop({ required: true }) modelValue!: ISphereOrBox | null | undefined;
@Prop({ default: randomID() }) id!: string;
// @Prop({ default: "placeholder" }) placeHolder!: string;
@Prop({ default: false }) disabled!: boolean;
@Prop({}) description!: string;
@Prop({ default: false }) readonly!: boolean;
@Prop({ default: "" }) regionName!: string;
@Prop({ required: false }) warningFunc!: (val: any) => string;
// @Prop({ required: false }) filterFunc!: Function;
selectedRegionId = "noneSelected";
modelValueToUse = defaultVals;
isBox = true;
warningToUse = "";
/**
* Get the name of the region to use.
*
* @returns {string} The name of the region to use.
*/
get regionNameToUse(): string {
// If doesn't end in " ", add " " to end.
if (this.regionName.length > 0 && this.regionName.slice(-1) !== " ") {
return this.regionName + " ";
}
return this.regionName;
}
/**
* Set the warning message (this.warningToUse).
*/
setWarning() {
if (this.warningFunc) {
const modelValueForWarning = JSON.parse(
JSON.stringify(this.modelValueToUse)
);
if (this.isBox) {
delete modelValueForWarning.radius;
} else {
delete modelValueForWarning.dimensions;
}
this.warningToUse = this.warningFunc(modelValueForWarning);
return;
}
this.warningToUse = "";
}
/**
* When modelValueToUse changes, emit "update:modelValue" and "onChange".
*/
@Watch("modelValueToUse", { deep: true, immediate: true })
onModelValueToUseChanged() {
this.$emit("update:modelValue", this.modelValueToUse);
// In some circumstances (e.g., changing values in an object), not
// reactive. Emit also "onChange" to signal the value has changed.
this.$emit("onChange");
}
/**
* When modelValue changes, update modelValueToUse.
*/
@Watch("modelValue", { deep: true, immediate: true })
onModelValueChanged() {
if (this.modelValue === null || this.modelValue === undefined) {
this.modelValueToUse = JSON.parse(JSON.stringify(defaultVals));
this.selectedRegionId = 'noneSelected';
return;
}
// Make sure radius and dimensions > 0.1.
if (
(this.modelValue as ISphere).radius !== undefined &&
(this.modelValue as ISphere).radius < 0.1
) {
this.modelValue.radius = 0.1;
}
if ((this.modelValue as IBox).dimensions !== undefined) {
if ((this.modelValue as IBox).dimensions[0] < 0.1) {
(this.modelValue as IBox).dimensions[0] = 0.1;
}
if ((this.modelValue as IBox).dimensions[1] < 0.1) {
(this.modelValue as IBox).dimensions[1] = 0.1;
}
if ((this.modelValue as IBox).dimensions[2] < 0.1) {
(this.modelValue as IBox).dimensions[2] = 0.1;
}
}
this.modelValueToUse = this.modelValue;
this.setWarning();
}
/**
* If you change the values in the form, reset the selected region to be
* none selected.
*/
resetSelected() {
this.selectedRegionId = 'noneSelected';
}
/**
* Updates the dimensions based on the radius when the radius input changes.
* Also resets the selected region.
*/
onRadiusChange() {
this.resetSelected();
if (this.modelValueToUse.radius) {
const dimen = this.modelValueToUse.radius * 2;
this.modelValueToUse.dimensions = [dimen, dimen, dimen];
}
}
/**
* Runs when the region is selected.
*
* @param {string} id The id of the region that was selected.
*/
onRegionSelected(id: string) {
if (id === "noneSelected") {
this.selectedRegionId = 'noneSelected';
return;
}
const sigFigFactor = 10000;
// Get the node corresponding to that id
const region = this.$store.state["molecules"].filters.onlyId(id)
.region as ISphere | IBox;
this.modelValueToUse.center = region.center.map(
(v) => Math.round(sigFigFactor * v) / sigFigFactor
) as [number, number, number];
if (region.type === RegionType.Sphere) {
this.modelValueToUse.radius = (region as ISphere).radius;
const dimen =
Math.round(sigFigFactor * 2 * this.modelValueToUse.radius) /
sigFigFactor;
this.modelValueToUse.dimensions = [dimen, dimen, dimen];
this.isBox = false;
} else {
this.modelValueToUse.dimensions = (region as IBox).dimensions.map(
(v) => Math.round(sigFigFactor * v) / sigFigFactor
) as [number, number, number];
const halfDimens = this.modelValueToUse.dimensions.map(
(v) => v / 2
);
this.modelValueToUse.radius =
Math.round(
sigFigFactor *
Math.sqrt(
halfDimens[0] ** 2 +
halfDimens[1] ** 2 +
halfDimens[2] ** 2
)
) / sigFigFactor;
this.isBox = true;
}
this.selectedRegionId = id;
this.handleInput();
}
/**
* Get all the regions in the tree. Return as options for the select.
*
* @returns {IUserArgOption[] | undefined} The regions in the tree. Undefined
* if there are no regions in the tree.
*/
get regionsInTree(): IUserArgOption[] | undefined {
let treeNodeList: TreeNodeList = this.$store.state["molecules"];
treeNodeList = treeNodeList.filters.keepRegions(true, true);
// Keep only spheres and boxes.
treeNodeList = treeNodeList.filter((node) => {
if (node.region === undefined) {
return false;
}
return (
node.region.type === RegionType.Sphere ||
node.region.type === RegionType.Box
);
});
const visibleNotselectedRegions: TreeNodeList = treeNodeList.filters
.keepVisible(true, true)
.filters.keepSelected(false, true);
const visibleselectedRegions: TreeNodeList = treeNodeList.filters
.keepVisible(true, true)
.filters.keepSelected(true, true);
const selectedNotVisible: TreeNodeList = treeNodeList.filters
.keepVisible(false, true)
.filters.keepSelected(true, true);
const notVisibleNotSelected: TreeNodeList = treeNodeList.filters
.keepVisible(false, true)
.filters.keepSelected(false, true);
if (
visibleselectedRegions.length +
visibleNotselectedRegions.length +
selectedNotVisible.length +
notVisibleNotSelected.length ===
0
) {
return undefined;
}
// Sort visibleNotselectedRegions
// visibleNotselectedRegions.sort(sortFunc);
// visibleselectedRegions.sort(sortFunc);
// selectedNotVisible.sort(sortFunc);
// notVisibleNotSelected.sort(sortFunc);
visibleNotselectedRegions.sort(createNaturalSortFunc<TreeNode>((node: TreeNode) => { return node.title; }));
visibleselectedRegions.sort(createNaturalSortFunc<TreeNode>((node: TreeNode) => { return node.title; }));
selectedNotVisible.sort(createNaturalSortFunc<TreeNode>((node: TreeNode) => { return node.title; }));
notVisibleNotSelected.sort(createNaturalSortFunc<TreeNode>((node: TreeNode) => { return node.title; }));
const options = [] as IUserArgOption[];
options.push({
description: "Select a region to load...",
val: "noneSelected",
// disabled: true,
});
if (visibleselectedRegions.length > 0) {
options.push({
description: "Visible, selected regions",
val: undefined,
disabled: true,
});
visibleselectedRegions.forEach((node) => {
options.push({
description: node.title,
val: node.id,
});
});
}
if (visibleNotselectedRegions.length > 0) {
options.push({
description: "Visible regions",
val: undefined,
disabled: true,
});
visibleNotselectedRegions.forEach((node) => {
options.push({
description: node.title,
val: node.id,
});
});
}
if (selectedNotVisible.length > 0) {
options.push({
description: "Selected regions",
val: undefined,
disabled: true,
});
selectedNotVisible.forEach((node) => {
options.push({
description: node.title,
val: node.id,
});
});
}
if (notVisibleNotSelected.length > 0) {
options.push({
description: "Hidden, unselected regions",
val: undefined,
disabled: true,
});
notVisibleNotSelected.forEach((node) => {
options.push({
description: node.title,
val: node.id,
});
});
}
if (this.selectedRegionId === undefined) {
this.selectedRegionId = options[0].val;
this.onRegionSelected(this.selectedRegionId as string);
}
return options;
}
/**
* Let the parent component know of any changes, after user has not interacted
* for a bit (to prevent rapid updates).
*
* @param {any} e The value.
*/
handleInput(e?: ISphereOrBox): void {
if (e === undefined) {
e = this.modelValueToUse;
}
// // Get "idx" data from target
// const idx = parseInt(e.target.dataset.idx);
// const newVals = JSON.parse(JSON.stringify(newModelValue));
// let newVal = parseFloat(e.target.value);
// if (this.filterFunc) {
// // If there's a filter funciton, update everything.
// newVal = this.filterFunc(newVal);
// }
// newVals[idx] = newVal;
this.$emit("update:modelValue", e);
// // In some circumstances (e.g., changing values in an object), not reactive.
// // Emit also "onChange" to signal the value has changed.
this.$emit("onChange");
}
/**
* Runs when the component is mounted.
*/
mounted() {
this.onModelValueToUseChanged();
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style lang="scss" scoped>
// Input of type color
// .form-control-color {
// width: 100%;
// }</style>
|