| <template> |
| <span> |
| |
| |
| |
| |
| |
| <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"> |
| |
| |
| <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> |
| |
| |
| <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"> |
| |
| |
| <FormVector3D v-model="modelValueToUse.center" :id="'center-' + id" :disabled="disabled" |
| :description="description" @onChange="resetSelected" styl="padding-left: 12px; padding-right: 12px;" |
| :delayBetweenChangesDetected="0" /> |
| </FormWrapper> |
| |
| |
| <FormElementDescription :description="description" :warning="warningToUse"></FormElementDescription> |
| |
| |
| |
| |
| </span> |
| </template> |
|
|
| <script lang="ts"> |
| |
| |
| 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 defaultVals = { |
| center: [0, 0, 0], |
| dimensions: [20, 20, 20], |
| radius: 20, |
| } as ISphereOrBox; |
| |
| |
| |
| |
| @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: false }) disabled!: boolean; |
| @Prop({}) description!: string; |
| @Prop({ default: false }) readonly!: boolean; |
| @Prop({ default: "" }) regionName!: string; |
| @Prop({ required: false }) warningFunc!: (val: any) => string; |
| |
| |
| selectedRegionId = "noneSelected"; |
| modelValueToUse = defaultVals; |
| isBox = true; |
| warningToUse = ""; |
| |
| |
| |
| |
| |
| |
| get regionNameToUse(): string { |
| |
| if (this.regionName.length > 0 && this.regionName.slice(-1) !== " ") { |
| return this.regionName + " "; |
| } |
| return this.regionName; |
| } |
| |
| |
| |
| |
| 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 = ""; |
| } |
| |
| |
| |
| |
| @Watch("modelValueToUse", { deep: true, immediate: true }) |
| onModelValueToUseChanged() { |
| this.$emit("update:modelValue", this.modelValueToUse); |
| |
| |
| |
| this.$emit("onChange"); |
| } |
| |
| |
| |
| |
| @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; |
| } |
| |
| |
| 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(); |
| } |
| |
| |
| |
| |
| |
| resetSelected() { |
| this.selectedRegionId = 'noneSelected'; |
| } |
| |
| |
| |
| |
| |
| onRadiusChange() { |
| this.resetSelected(); |
| if (this.modelValueToUse.radius) { |
| const dimen = this.modelValueToUse.radius * 2; |
| this.modelValueToUse.dimensions = [dimen, dimen, dimen]; |
| } |
| } |
| |
| |
| |
| |
| |
| |
| onRegionSelected(id: string) { |
| if (id === "noneSelected") { |
| this.selectedRegionId = 'noneSelected'; |
| return; |
| } |
| |
| const sigFigFactor = 10000; |
| |
| |
| 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 regionsInTree(): IUserArgOption[] | undefined { |
| let treeNodeList: TreeNodeList = this.$store.state["molecules"]; |
| treeNodeList = treeNodeList.filters.keepRegions(true, true); |
| |
| |
| 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; |
| } |
| |
| |
| |
| |
| |
| |
| |
| 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", |
| |
| }); |
| |
| 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; |
| } |
| |
| |
| |
| |
| |
| |
| |
| handleInput(e?: ISphereOrBox): void { |
| if (e === undefined) { |
| e = this.modelValueToUse; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| this.$emit("update:modelValue", e); |
| |
| |
| this.$emit("onChange"); |
| } |
| |
| |
| |
| |
| mounted() { |
| this.onModelValueToUseChanged(); |
| } |
| } |
| </script> |
|
|
| |
| <style lang="scss" scoped> |
| // Input of type color |
| // .form-control-color { |
| // width: 100%; |
| // }</style> |
|
|