Backport: add other presets into room presets
This commit is contained in:
parent
a4cbbf0d92
commit
f3b30477ce
1 changed files with 11 additions and 12 deletions
|
@ -18,24 +18,23 @@ limitations under the License.
|
||||||
|
|
||||||
var React = require('react');
|
var React = require('react');
|
||||||
|
|
||||||
|
var Presets = {
|
||||||
|
PrivateChat: "private_chat",
|
||||||
|
PublicChat: "public_chat",
|
||||||
|
Custom: "custom",
|
||||||
|
};
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
propTypes: {
|
propTypes: {
|
||||||
default_preset: React.PropTypes.string
|
onChange: React.PropTypes.func,
|
||||||
|
preset: React.PropTypes.string
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Presets: Presets,
|
||||||
|
|
||||||
getDefaultProps: function() {
|
getDefaultProps: function() {
|
||||||
return {
|
return {
|
||||||
default_preset: 'private_chat',
|
onChange: function() {},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
getInitialState: function() {
|
|
||||||
return {
|
|
||||||
preset: this.props.default_preset,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
getPreset: function() {
|
|
||||||
return this.state.preset;
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue