import classNames = require("classnames"); import { observer } from "mobx-react"; import * as React from "react"; import { Form, List } from "semantic-ui-react"; import { DurationView, SectionChooser } from "@app/components/index"; import { Duration } from "@common/Duration"; import { ProgramItem, Section } from "@common/sprinklersRpc"; @observer class ProgramSequenceItem extends React.Component<{ sequenceItem: ProgramItem, sections: Section[], onChange?: (newItem: ProgramItem) => void, }> { renderContent() { const { sequenceItem, sections } = this.props; const editing = this.props.onChange != null; const section = sections[sequenceItem.section]; const duration = Duration.fromSeconds(sequenceItem.duration); if (editing) { return ( ); } else { return ( {section.toString()} for {duration.toString()} ); } } render() { return ( {this.renderContent()} ); } private onSectionChange = (newSection: Section) => { if (!this.props.onChange) { return; } this.props.onChange(new ProgramItem({ ...this.props.sequenceItem, section: newSection.id, })); } private onDurationChange = (newDuration: Duration) => { if (!this.props.onChange) { return; } this.props.onChange(new ProgramItem({ ...this.props.sequenceItem, duration: newDuration.toSeconds(), })); } } @observer export default class ProgramSequenceView extends React.Component<{ sequence: ProgramItem[], sections: Section[], editing?: boolean, }> { render() { const { sequence, sections } = this.props; const editing = this.props.editing || false; const className = classNames("programSequence", { editing }); const sequenceItems = sequence.map((item, index) => { const onChange = editing ? (newItem: ProgramItem) => this.changeItem(newItem, index) : undefined; return ; }); return {sequenceItems}; } private changeItem = (newItem: ProgramItem, index: number) => { this.props.sequence[index] = newItem; } }