mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-30 00:00:13 +01:00

- Grouping js files based on the elements of the data model instead of parent js class - All js files providing functionality for one element of the data model are now in one folder; this makes is easier to implement changes for one element in all affected files/ classes - js files which are common to multiple elements are in the common folder - The new structure is more in alignment with the new Go backend code base structure - This commit does not contain any changes in functionality of the frontend
146 lines
4.3 KiB
JavaScript
146 lines
4.3 KiB
JavaScript
/**
|
|
* File: edit-widget.js
|
|
* Author: Markus Grigull <mgrigull@eonerc.rwth-aachen.de>
|
|
* Date: 08.03.2017
|
|
*
|
|
* This file is part of VILLASweb.
|
|
*
|
|
* VILLASweb is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* VILLASweb is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with VILLASweb. If not, see <http://www.gnu.org/licenses/>.
|
|
******************************************************************************/
|
|
|
|
import React from 'react';
|
|
//import { FormGroup, FormControl, FormLabel } from 'react-bootstrap';
|
|
|
|
import Dialog from '../common/dialogs/dialog';
|
|
|
|
import createControls from './edit-widget-control-creator';
|
|
|
|
class EditWidgetDialog extends React.Component {
|
|
valid = true;
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
temporal: {
|
|
name: '',
|
|
simulationModel: '',
|
|
signal: 0
|
|
}
|
|
};
|
|
}
|
|
|
|
onClose(canceled) {
|
|
if (canceled === false) {
|
|
if (this.valid) {
|
|
this.props.onClose(this.state.temporal);
|
|
}
|
|
} else {
|
|
this.props.onClose();
|
|
}
|
|
}
|
|
|
|
assignAspectRatio(changeObject, fileId) {
|
|
// get aspect ratio of file
|
|
const file = this.props.files.find(element => element._id === fileId);
|
|
|
|
// scale width to match aspect
|
|
const aspectRatio = file.dimensions.width / file.dimensions.height;
|
|
changeObject.width = this.state.temporal.height * aspectRatio;
|
|
|
|
return changeObject;
|
|
}
|
|
|
|
handleChange(e) {
|
|
if (e.constructor === Array) {
|
|
// Every property in the array will be updated
|
|
let changes = e.reduce( (changesObject, event) => {
|
|
changesObject[event.target.id] = event.target.value;
|
|
|
|
return changesObject;
|
|
}, {});
|
|
|
|
this.setState({ temporal: Object.assign({}, this.state.temporal, changes ) });
|
|
} else {
|
|
let changeObject = {};
|
|
if (e.target.id === 'lockAspect') {
|
|
changeObject[e.target.id] = e.target.checked;
|
|
|
|
// correct image aspect if turned on
|
|
if (e.target.checked) {
|
|
changeObject = this.assignAspectRatio(changeObject, this.state.temporal.file);
|
|
}
|
|
} else if (e.target.id === 'file') {
|
|
changeObject[e.target.id] = e.target.value;
|
|
|
|
// get file and update size (if it's an image)
|
|
if ('lockAspect' in this.state.temporal && this.state.temporal.lockAspect) {
|
|
changeObject = this.assignAspectRatio(changeObject, e.target.value);
|
|
}
|
|
} else if (e.target.type === 'checkbox') {
|
|
changeObject[e.target.id] = e.target.checked;
|
|
} else if (e.target.type === 'number') {
|
|
changeObject[e.target.id] = Number(e.target.value);
|
|
} else {
|
|
changeObject[e.target.id] = e.target.value;
|
|
}
|
|
|
|
this.setState({ temporal: Object.assign({}, this.state.temporal, changeObject ) });
|
|
}
|
|
}
|
|
|
|
resetState() {
|
|
var widget_data = Object.assign({}, this.props.widget);
|
|
this.setState({ temporal: widget_data });
|
|
}
|
|
|
|
validateForm(target) {
|
|
// check all controls
|
|
var name = true;
|
|
|
|
if (this.state.name === '') {
|
|
name = false;
|
|
}
|
|
|
|
//this.valid = name;
|
|
this.valid = true;
|
|
|
|
// return state to control
|
|
if (target === 'name') return name ? "success" : "error";
|
|
}
|
|
|
|
render() {
|
|
let controls = null;
|
|
if (this.props.widget) {
|
|
controls = createControls(
|
|
this.props.widget.type,
|
|
this.state.temporal,
|
|
this.props.sessionToken,
|
|
this.props.files,
|
|
(id) => this.validateForm(id),
|
|
this.props.simulationModels,
|
|
(e) => this.handleChange(e));
|
|
}
|
|
|
|
return (
|
|
<Dialog show={this.props.show} title="Edit Widget" buttonTitle="Save" onClose={(c) => this.onClose(c)} onReset={() => this.resetState()} valid={this.valid}>
|
|
<form encType='multipart/form-data'>
|
|
{ controls || '' }
|
|
</form>
|
|
</Dialog>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default EditWidgetDialog;
|