Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Timeseries wizard react conversion #1013

Merged
merged 8 commits into from
Feb 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
59 changes: 59 additions & 0 deletions web-server/components/ModalContent.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
import * as React from "react";

/**
* @member closingCallBack callback function for cleanup when closing the modal
* @member title test for the top of the modal
*/
export interface ModalContentProps {
modalId: string,
closingCallBack: Function;
title: string;
body: JSX.Element;
footer: JSX.Element[];
}

/**
* not used
*/
export interface ModalContentState {}

export default class ModalContent extends React.Component<
ModalContentProps,
ModalContentState
> {
public constructor(props: ModalContentProps) {
super(props);
this.state = {};
}

/**
*close the modal and call the cleanup function
* @memberof ModalContent
*/
closeModal = (e: React.MouseEvent): void => {
this.props.closingCallBack();
($("#" + this.props.modalId) as any).modal("hide");
};

render() {
return (
<div>
<div className="modal-header">
<h3 className="modal-title">{this.props.title}</h3>
<button
type="button"
className="close"
aria-label="Close"
onClick={this.closeModal}
>
<span aria-hidden="true">&times;</span>
</button>
</div>
<div className="modal-body" id="slycat-wizard">
{this.props.body}
</div>
<div className="modal-footer">{this.props.footer}</div>
</div>
);
}
}
51 changes: 51 additions & 0 deletions web-server/components/SlycatFormDropDown.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
'use strict';
import * as React from 'react';

/**
*/
export interface SlycatFormDropDownProps {
checked: boolean
onChange: Function
value: string
text: string
style: any
label: string
}

/**
* not used
*/
export interface SlycatFormDropDownState {
}
/**
* class that creates a a form with checkboxes
* some other process
*/
export default class SlycatFormDropDown extends React.Component<SlycatFormDropDownProps, SlycatFormDropDownState> {
/**
* not used
*/
public constructor(props:SlycatFormDropDownProps) {
super(props)
this.state = {}
}

onValueChange = (value) => {
// localStorage.setItem("slycat-remote-controls-username", value);
this.setState({value: value});
};

public render () {
return (
<div className='form-group row mb-3'>
<label className='col-sm-2 col-form-label'>{this.props.label}</label>
<div className='col-sm-9'>
<select
className='form-control' type='text'
value={this.state.value?this.state.value:""}
onChange={(e)=>this.onValueChange(e.target.value)} />
</div>
</div>
);
}
}
2 changes: 1 addition & 1 deletion web-server/components/SlycatFormRadioCheckbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface SlycatFormRadioCheckboxProps {
onChange: Function
value: string
text: string
style: any
style?: any
}

/**
Expand Down
63 changes: 63 additions & 0 deletions web-server/components/SlycatNumberInput.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
'use strict';
import * as React from 'react';

/**
*/
export interface SlycatNumberInputProps {
value: number
style?: any
label: string
callBack: Function
id?: string
warning?: string
}

/**
* not used
*/
export interface SlycatNumberInputState {
value: number
}
/**
* class that creates a a form with checkboxes
* some other process
*/
export default class SlycatNumberInput extends React.Component<SlycatNumberInputProps, SlycatNumberInputState> {
/**
* not used
*/
public constructor(props:SlycatNumberInputProps) {
super(props)
this.state = {
value: props.value
}
}

onValueChange = (value:number) => {
// localStorage.setItem("slycat-remote-controls-username", value);
if(value === '') {
value = 1;
}
this.setState({value: value});
this.props.callBack(value);
};

public render () {
return (
<div className='form-group row mb-3'>
<label className='col-sm-2 col-form-label'>{this.props.label}</label>
<div className='col-sm-9'>
<input
id={this.props.id}
className='form-control' type='number' min={1}
value={this.state.value}
onChange={(e)=>this.onValueChange(e.target.value)}
/>
<div className="invalid-feedback">
{this.props.warning}
</div>
</div>
</div>
);
}
}
8 changes: 7 additions & 1 deletion web-server/components/SlycatSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export interface SlycatSelectorProps {
onSelectCallBack: Function
options: Option[]
label: string
disabled?: boolean
}

/**
Expand Down Expand Up @@ -56,9 +57,14 @@ export default class SlycatSelector extends React.Component<SlycatSelectorProps,
{this.props.label}
</label>
<div className='col-sm-9'>
<select className="form-control" onChange={(e)=>this.props.onSelectCallBack(e.target.value)}>
{this.props.disabled === true ?
<select className="form-control" onChange={(e)=>this.props.onSelectCallBack(e.target.value)} disabled>
{this.getOptions()}
</select>
:
<select className="form-control" onChange={(e)=>this.props.onSelectCallBack(e.target.value)} >
{this.getOptions()}
</select> }
</div>
</div>
)
Expand Down
62 changes: 62 additions & 0 deletions web-server/components/SlycatTextInput.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
'use strict';
import * as React from 'react';

/**
*/
export interface SlycatTextInputProps {
onChange?: Function
value: string
style?: any
label: string
callBack: Function
id?: string
warning?: string
}

/**
* not used
*/
export interface SlycatTextInputState {
value: string
}
/**
* class that creates a a form with checkboxes
* some other process
*/
export default class SlycatTextInput extends React.Component<SlycatTextInputProps, SlycatTextInputState> {
/**
* not used
*/
public constructor(props:SlycatTextInputProps) {
super(props)
this.state = {
value: props.value
}
}

onValueChange = (value:string) => {
// localStorage.setItem("slycat-remote-controls-username", value);
// this.setState({value: value});
this.setState({value:value});
this.props.callBack(value);
};

public render () {
return (
<div className='form-group row mb-3'>
<label className='col-sm-2 col-form-label'>{this.props.label}</label>
<div className='col-sm-9'>
<input
id={this.props.id}
className='form-control' type='text'
value={this.state.value}
onChange={(e)=>this.onValueChange(e.target.value)}
/>
<div className="invalid-feedback">
{this.props.warning}
</div>
</div>
</div>
);
}
}
77 changes: 77 additions & 0 deletions web-server/components/SlycatTimeInput.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
'use strict';
import * as React from 'react';

/**
*/
export interface SlycatTimeInputProps {
hours: number
minutes: number
minCallBack: Function
hourCallBack: Function
label: string
}

/**
* not used
*/
export interface SlycatTimeInputState {
hours: number
minutes: number
}
/**
* class that creates a a form with checkboxes
* some other process
*/
export default class SlycatTimeInput extends React.Component<SlycatTimeInputProps, SlycatTimeInputState> {
/**
* not used
*/
public constructor(props:SlycatTimeInputProps) {
super(props)
this.state = {
hours: props.hours,
minutes: props.minutes
}
}

onHourChange = (value) => {
// localStorage.setItem("slycat-remote-controls-username", value);
// this.setState({value: value});
if (value === '') {
value = 0;
}
this.setState({hours:value});
this.props.hourCallBack(value);
};

onMinuteChange = (value) => {
if (value === '') {
value = 0;
}
this.setState({minutes:value});
this.props.minCallBack(value);
}

public render () {
return (
<div className='form-group row mb-3'>
<label className='col-sm-2 col-form-label'>{this.props.label}</label>
<div className='col-sm-2'>
<input
className='form-control' type='number' min={0}
value={this.state.hours}
onChange={(e)=>this.onHourChange(e.target.value)}
/>
Hours
</div>
<div className='col-sm-2'>
<input className='form-control' type='number' min={0}
value={this.state.minutes}
onChange={(e)=>this.onMinuteChange(e.target.value)}
/>
Minutes
</div>
</div>
);
}
}