front/src/routes/scene/edit-scene/actions/PlayNotification.jsx
import Select from 'react-select';
import { Component } from 'preact';
import { connect } from 'unistore/preact';
import { Text } from 'preact-i18n';
import { DEVICE_FEATURE_CATEGORIES, DEVICE_FEATURE_TYPES } from '../../../../../../server/utils/constants';
import TextWithVariablesInjected from '../../../../components/scene/TextWithVariablesInjected';
class PlayNotification extends Component {
getOptions = async () => {
try {
const devices = await this.props.httpClient.get('/api/v1/device', {
device_feature_category: DEVICE_FEATURE_CATEGORIES.MUSIC,
device_feature_type: DEVICE_FEATURE_TYPES.MUSIC.PLAY_NOTIFICATION
});
const devicesOptions = devices.map(device => ({
value: device.selector,
label: device.name
}));
await this.setState({ devicesOptions });
this.refreshSelectedOptions(this.props);
return devicesOptions;
} catch (e) {
console.error(e);
}
};
updateText = text => {
this.props.updateActionProperty(this.props.columnIndex, this.props.index, 'text', text);
};
handleDeviceChange = selectedOption => {
if (selectedOption && selectedOption.value) {
this.props.updateActionProperty(this.props.columnIndex, this.props.index, 'device', selectedOption.value);
} else {
this.props.updateActionProperty(this.props.columnIndex, this.props.index, 'device', null);
}
};
refreshSelectedOptions = nextProps => {
let selectedDeviceFeatureOption = '';
if (nextProps.action.device && this.state.devicesOptions) {
const deviceFeatureOption = this.state.devicesOptions.find(option => option.value === nextProps.action.device);
if (deviceFeatureOption) {
selectedDeviceFeatureOption = deviceFeatureOption;
}
}
this.setState({ selectedDeviceFeatureOption });
};
constructor(props) {
super(props);
this.props = props;
this.state = {
selectedDeviceFeatureOption: ''
};
}
componentDidMount() {
this.getOptions();
}
componentWillReceiveProps(nextProps) {
this.refreshSelectedOptions(nextProps);
}
render(props, { selectedDeviceFeatureOption, devicesOptions }) {
return (
<div>
<p>
<Text id="editScene.actionsCard.playNotification.description" />
</p>
<div class="form-group">
<label class="form-label">
<Text id="editScene.actionsCard.playNotification.deviceLabel" />
<span class="form-required">
<Text id="global.requiredField" />
</span>
</label>
<Select
styles={{
// Fixes the overlapping problem of the component
menu: provided => ({ ...provided, zIndex: 2 })
}}
options={devicesOptions}
value={selectedDeviceFeatureOption}
onChange={this.handleDeviceChange}
/>
</div>
<div class="form-group">
<label class="form-label">
<Text id="editScene.actionsCard.playNotification.textLabel" />{' '}
<span class="form-required">
<Text id="global.requiredField" />
</span>
</label>
<div class="mb-1 small">
<Text id="editScene.actionsCard.playNotification.variablesExplanation" />
</div>
<div className="tags-input">
<TextWithVariablesInjected
text={props.action.text}
triggersVariables={props.triggersVariables}
actionsGroupsBefore={props.actionsGroupsBefore}
variables={props.variables}
updateText={this.updateText}
/>
</div>
</div>
<p class="small">
<Text id="editScene.actionsCard.playNotification.needGladysPlus" />
</p>
</div>
);
}
}
export default connect('httpClient', {})(PlayNotification);