Этот коммит содержится в:
nickago
2015-08-18 16:14:45 -07:00
родитель c716263ca6
Коммит f0bbe4571f

Просмотреть файл

@@ -9,94 +9,114 @@ var assign = require('object-assign');
function getNotificationsStateFromStores() { function getNotificationsStateFromStores() {
var user = UserStore.getCurrentUser(); var user = UserStore.getCurrentUser();
var soundNeeded = !utils.isBrowserFirefox(); var soundNeeded = !utils.isBrowserFirefox();
var sound = (!user.notify_props || user.notify_props.desktop_sound == undefined) ? "true" : user.notify_props.desktop_sound;
var desktop = (!user.notify_props || user.notify_props.desktop == undefined) ? "all" : user.notify_props.desktop;
var email = (!user.notify_props || user.notify_props.email == undefined) ? "true" : user.notify_props.email;
var username_key = false; var sound = 'true';
var mention_key = false; if (user.notify_props && user.notify_props.desktop_sound) {
var custom_keys = ""; sound = user.notify_props.desktop_sound;
var first_name_key = false; }
var all_key = false; var desktop = 'all';
var channel_key = false; if (user.notify_props && user.notify_props.desktop) {
desktop = user.notify_props.desktop;
}
var email = 'true';
if (user.notify_props && user.notify_props.email) {
email = user.notify_props.email;
}
var usernameKey = false;
var mentionKey = false;
var customKeys = '';
var firstNameKey = false;
var allKey = false;
var channelKey = false;
if (user.notify_props) { if (user.notify_props) {
if (user.notify_props.mention_keys !== undefined) { if (user.notify_props.mention_keys) {
var keys = user.notify_props.mention_keys.split(','); var keys = user.notify_props.mention_keys.split(',');
if (keys.indexOf(user.username) !== -1) { if (keys.indexOf(user.username) !== -1) {
username_key = true; usernameKey = true;
keys.splice(keys.indexOf(user.username), 1); keys.splice(keys.indexOf(user.username), 1);
} else { } else {
username_key = false; usernameKey = false;
} }
if (keys.indexOf('@'+user.username) !== -1) { if (keys.indexOf('@' + user.username) !== -1) {
mention_key = true; mentionKey = true;
keys.splice(keys.indexOf('@'+user.username), 1); keys.splice(keys.indexOf('@' + user.username), 1);
} else { } else {
mention_key = false; mentionKey = false;
} }
custom_keys = keys.join(','); customKeys = keys.join(',');
} }
if (user.notify_props.first_name !== undefined) { if (user.notify_props.first_name) {
first_name_key = user.notify_props.first_name === "true"; firstNameKey = user.notify_props.first_name === 'true';
} }
if (user.notify_props.all !== undefined) { if (user.notify_props.all) {
all_key = user.notify_props.all === "true"; allKey = user.notify_props.all === 'true';
} }
if (user.notify_props.channel !== undefined) { if (user.notify_props.channel) {
channel_key = user.notify_props.channel === "true"; channelKey = user.notify_props.channel === 'true';
} }
} }
return { notify_level: desktop, enable_email: email, soundNeeded: soundNeeded, enable_sound: sound, username_key: username_key, mention_key: mention_key, custom_keys: custom_keys, custom_keys_checked: custom_keys.length > 0, first_name_key: first_name_key, all_key: all_key, channel_key: channel_key }; return {notifyLevel: desktop, enableEmail: email, soundNeeded: soundNeeded, enableSound: sound, usernameKey: usernameKey, mentionKey: mentionKey, customKeys: customKeys, customKeysChecked: customKeys.length > 0, firstNameKey: firstNameKey, allKey: allKey, channelKey: channelKey};
} }
module.exports = React.createClass({ module.exports = React.createClass({
displayName: 'NotificationsTab', displayName: 'NotificationsTab',
propTypes: {
user: React.PropTypes.object,
updateSection: React.PropTypes.func,
updateTab: React.PropTypes.func,
activeSection: React.PropTypes.string,
activeTab: React.PropTypes.string
},
handleSubmit: function() { handleSubmit: function() {
data = {} var data = {};
data["user_id"] = this.props.user.id; data.user_id = this.props.user.id;
data["email"] = this.state.enable_email; data.email = this.state.enableEmail;
data["desktop_sound"] = this.state.enable_sound; data.desktop_sound = this.state.enableSound;
data["desktop"] = this.state.notify_level; data.desktop = this.state.notifyLevel;
var mention_keys = []; var mentionKeys = [];
if (this.state.username_key) mention_keys.push(this.props.user.username); if (this.state.usernameKey) {
if (this.state.mention_key) mention_keys.push('@'+this.props.user.username); mentionKeys.push(this.props.user.username);
}
var string_keys = mention_keys.join(','); if (this.state.mentionKey) {
if (this.state.custom_keys.length > 0 && this.state.custom_keys_checked) { mentionKeys.push('@' + this.props.user.username);
string_keys += ',' + this.state.custom_keys;
} }
data["mention_keys"] = string_keys; var stringKeys = mentionKeys.join(',');
data["first_name"] = this.state.first_name_key ? "true" : "false"; if (this.state.customKeys.length > 0 && this.state.customKeysChecked) {
data["all"] = this.state.all_key ? "true" : "false"; stringKeys += ',' + this.state.customKeys;
data["channel"] = this.state.channel_key ? "true" : "false"; }
data.mention_keys = stringKeys;
data.first_name = this.state.firstNameKey.toString();
data.all = this.state.allKey.toString();
data.channel = this.state.channelKey.toString();
client.updateUserNotifyProps(data, client.updateUserNotifyProps(data,
function(data) { function success() {
this.props.updateSection(""); this.props.updateSection('');
AsyncClient.getMe(); AsyncClient.getMe();
}.bind(this), }.bind(this),
function(err) { function failure(err) {
this.setState({ server_error: err.message }); this.setState({serverError: err.message});
}.bind(this) }.bind(this)
); );
}, },
handleClose: function() { handleClose: function() {
$(this.getDOMNode()).find(".form-control").each(function() { $(this.getDOMNode()).find('.form-control').each(function clearField() {
this.value = ""; this.value = '';
}); });
this.setState(assign({},getNotificationsStateFromStores(),{server_error: null})); this.setState(assign({}, getNotificationsStateFromStores(), {serverError: null}));
this.props.updateTab('general'); this.props.updateTab('general');
}, },
@@ -105,15 +125,15 @@ module.exports = React.createClass({
this.props.updateSection(section); this.props.updateSection(section);
}, },
componentDidMount: function() { componentDidMount: function() {
UserStore.addChangeListener(this._onChange); UserStore.addChangeListener(this.onListenerChange);
$('#user_settings').on('hidden.bs.modal', this.handleClose); $('#user_settings').on('hidden.bs.modal', this.handleClose);
}, },
componentWillUnmount: function() { componentWillUnmount: function() {
UserStore.removeChangeListener(this._onChange); UserStore.removeChangeListener(this.onListenerChange);
$('#user_settings').off('hidden.bs.modal', this.handleClose); $('#user_settings').off('hidden.bs.modal', this.handleClose);
this.props.updateSection(''); this.props.updateSection('');
}, },
_onChange: function() { onListenerChange: function() {
var newState = getNotificationsStateFromStores(); var newState = getNotificationsStateFromStores();
if (!utils.areStatesEqual(newState, this.state)) { if (!utils.areStatesEqual(newState, this.state)) {
this.setState(newState); this.setState(newState);
@@ -123,31 +143,31 @@ module.exports = React.createClass({
return getNotificationsStateFromStores(); return getNotificationsStateFromStores();
}, },
handleNotifyRadio: function(notifyLevel) { handleNotifyRadio: function(notifyLevel) {
this.setState({ notify_level: notifyLevel }); this.setState({notifyLevel: notifyLevel});
this.refs.wrapper.getDOMNode().focus(); this.refs.wrapper.getDOMNode().focus();
}, },
handleEmailRadio: function(enableEmail) { handleEmailRadio: function(enableEmail) {
this.setState({ enable_email: enableEmail }); this.setState({enableEmail: enableEmail});
this.refs.wrapper.getDOMNode().focus(); this.refs.wrapper.getDOMNode().focus();
}, },
handleSoundRadio: function(enableSound) { handleSoundRadio: function(enableSound) {
this.setState({ enable_sound: enableSound }); this.setState({enableSound: enableSound});
this.refs.wrapper.getDOMNode().focus(); this.refs.wrapper.getDOMNode().focus();
}, },
updateUsernameKey: function(val) { updateUsernameKey: function(val) {
this.setState({ username_key: val }); this.setState({usernameKey: val});
}, },
updateMentionKey: function(val) { updateMentionKey: function(val) {
this.setState({ mention_key: val }); this.setState({mentionKey: val});
}, },
updateFirstNameKey: function(val) { updateFirstNameKey: function(val) {
this.setState({ first_name_key: val }); this.setState({firstNameKey: val});
}, },
updateAllKey: function(val) { updateAllKey: function(val) {
this.setState({ all_key: val }); this.setState({allKey: val});
}, },
updateChannelKey: function(val) { updateChannelKey: function(val) {
this.setState({ channel_key: val }); this.setState({channelKey: val});
}, },
updateCustomMentionKeys: function() { updateCustomMentionKeys: function() {
var checked = this.refs.customcheck.getDOMNode().checked; var checked = this.refs.customcheck.getDOMNode().checked;
@@ -156,9 +176,9 @@ module.exports = React.createClass({
var text = this.refs.custommentions.getDOMNode().value; var text = this.refs.custommentions.getDOMNode().value;
// remove all spaces and split string into individual keys // remove all spaces and split string into individual keys
this.setState({ custom_keys: text.replace(/ /g, ''), custom_keys_checked: true }); this.setState({customKeys: text.replace(/ /g, ''), customKeysChecked: true});
} else { } else {
this.setState({ custom_keys: "", custom_keys_checked: false }); this.setState({customKeys: '', customKeysChecked: false});
} }
}, },
onCustomChange: function() { onCustomChange: function() {
@@ -166,7 +186,10 @@ module.exports = React.createClass({
this.updateCustomMentionKeys(); this.updateCustomMentionKeys();
}, },
render: function() { render: function() {
var server_error = this.state.server_error ? this.state.server_error : null; var serverError = null;
if (this.state.serverError) {
serverError = this.state.serverError;
}
var self = this; var self = this;
@@ -175,9 +198,9 @@ module.exports = React.createClass({
var desktopSection; var desktopSection;
if (this.props.activeSection === 'desktop') { if (this.props.activeSection === 'desktop') {
var notifyActive = [false, false, false]; var notifyActive = [false, false, false];
if (this.state.notify_level === "mention") { if (this.state.notifyLevel === 'mention') {
notifyActive[1] = true; notifyActive[1] = true;
} else if (this.state.notify_level === "none") { } else if (this.state.notifyLevel === 'none') {
notifyActive[2] = true; notifyActive[2] = true;
} else { } else {
notifyActive[0] = true; notifyActive[0] = true;
@@ -187,21 +210,21 @@ module.exports = React.createClass({
inputs.push( inputs.push(
<div> <div>
<div className="radio"> <div className='radio'>
<label> <label>
<input type="radio" checked={notifyActive[0]} onClick={function(){self.handleNotifyRadio("all")}}>For all activity</input> <input type='radio' checked={notifyActive[0]} onClick={function(){self.handleNotifyRadio('all')}}>For all activity</input>
</label> </label>
<br/> <br/>
</div> </div>
<div className="radio"> <div className='radio'>
<label> <label>
<input type="radio" checked={notifyActive[1]} onClick={function(){self.handleNotifyRadio("mention")}}>Only for mentions and private messages</input> <input type='radio' checked={notifyActive[1]} onClick={function(){self.handleNotifyRadio('mention')}}>Only for mentions and private messages</input>
</label> </label>
<br/> <br/>
</div> </div>
<div className="radio"> <div className='radio'>
<label> <label>
<input type="radio" checked={notifyActive[2]} onClick={function(){self.handleNotifyRadio("none")}}>Never</input> <input type='radio' checked={notifyActive[2]} onClick={function(){self.handleNotifyRadio('none')}}>Never</input>
</label> </label>
</div> </div>
</div> </div>
@@ -209,76 +232,76 @@ module.exports = React.createClass({
desktopSection = ( desktopSection = (
<SettingItemMax <SettingItemMax
title="Send desktop notifications" title='Send desktop notifications'
inputs={inputs} inputs={inputs}
submit={this.handleSubmit} submit={this.handleSubmit}
server_error={server_error} server_error={serverError}
updateSection={function(e){self.updateSection("");e.preventDefault();}} updateSection={function(e){self.updateSection('');e.preventDefault();}}
/> />
); );
} else { } else {
var describe = ""; var describe = '';
if (this.state.notify_level === "mention") { if (this.state.notifyLevel === 'mention') {
describe = "Only for mentions and private messages"; describe = 'Only for mentions and private messages';
} else if (this.state.notify_level === "none") { } else if (this.state.notifyLevel === 'none') {
describe = "Never"; describe = 'Never';
} else { } else {
describe = "For all activity"; describe = 'For all activity';
} }
desktopSection = ( desktopSection = (
<SettingItemMin <SettingItemMin
title="Send desktop notifications" title='Send desktop notifications'
describe={describe} describe={describe}
updateSection={function(){self.updateSection("desktop");}} updateSection={function(){self.updateSection('desktop');}}
/> />
); );
} }
var soundSection; var soundSection;
if (this.props.activeSection === 'sound' && this.state.soundNeeded) { if (this.props.activeSection === 'sound' && this.state.soundNeeded) {
var soundActive = ["",""]; var soundActive = ['', ''];
if (this.state.enable_sound === "false") { if (this.state.enableSound === 'false') {
soundActive[1] = "active"; soundActive[1] = 'active';
} else { } else {
soundActive[0] = "active"; soundActive[0] = 'active';
} }
var inputs = []; var inputs = [];
inputs.push( inputs.push(
<div> <div>
<div className="btn-group" data-toggle="buttons-radio"> <div className='btn-group' data-toggle='buttons-radio'>
<button className={"btn btn-default "+soundActive[0]} onClick={function(){self.handleSoundRadio("true")}}>On</button> <button className={'btn btn-default '+soundActive[0]} onClick={function(){self.handleSoundRadio('true')}}>On</button>
<button className={"btn btn-default "+soundActive[1]} onClick={function(){self.handleSoundRadio("false")}}>Off</button> <button className={'btn btn-default '+soundActive[1]} onClick={function(){self.handleSoundRadio('false')}}>Off</button>
</div> </div>
</div> </div>
); );
soundSection = ( soundSection = (
<SettingItemMax <SettingItemMax
title="Desktop notification sounds" title='Desktop notification sounds'
inputs={inputs} inputs={inputs}
submit={this.handleSubmit} submit={this.handleSubmit}
server_error={server_error} server_error={serverError}
updateSection={function(e){self.updateSection("");e.preventDefault();}} updateSection={function(e){self.updateSection('');e.preventDefault();}}
/> />
); );
} else { } else {
var describe = ""; var describe = '';
if (!this.state.soundNeeded) { if (!this.state.soundNeeded) {
describe = "Please configure notification sounds in your browser settings" describe = 'Please configure notification sounds in your browser settings'
} else if (this.state.enable_sound === "false") { } else if (this.state.enableSound === 'false') {
describe = "Off"; describe = 'Off';
} else { } else {
describe = "On"; describe = 'On';
} }
soundSection = ( soundSection = (
<SettingItemMin <SettingItemMin
title="Desktop notification sounds" title='Desktop notification sounds'
describe={describe} describe={describe}
updateSection={function(){self.updateSection("sound");}} updateSection={function(){self.updateSection('sound');}}
disableOpen = {!this.state.soundNeeded} disableOpen = {!this.state.soundNeeded}
/> />
); );
@@ -286,47 +309,47 @@ module.exports = React.createClass({
var emailSection; var emailSection;
if (this.props.activeSection === 'email') { if (this.props.activeSection === 'email') {
var emailActive = ["",""]; var emailActive = ['',''];
if (this.state.enable_email === "false") { if (this.state.enableEmail === 'false') {
emailActive[1] = "active"; emailActive[1] = 'active';
} else { } else {
emailActive[0] = "active"; emailActive[0] = 'active';
} }
var inputs = []; var inputs = [];
inputs.push( inputs.push(
<div> <div>
<div className="btn-group" data-toggle="buttons-radio"> <div className='btn-group' data-toggle='buttons-radio'>
<button className={"btn btn-default "+emailActive[0]} onClick={function(){self.handleEmailRadio("true")}}>On</button> <button className={'btn btn-default '+emailActive[0]} onClick={function(){self.handleEmailRadio('true')}}>On</button>
<button className={"btn btn-default "+emailActive[1]} onClick={function(){self.handleEmailRadio("false")}}>Off</button> <button className={'btn btn-default '+emailActive[1]} onClick={function(){self.handleEmailRadio('false')}}>Off</button>
</div> </div>
<div><br/>{"Email notifications are sent for mentions and private messages after you have been away from " + config.SiteName + " for 5 minutes."}</div> <div><br/>{'Email notifications are sent for mentions and private messages after you have been away from ' + config.SiteName + ' for 5 minutes.'}</div>
</div> </div>
); );
emailSection = ( emailSection = (
<SettingItemMax <SettingItemMax
title="Email notifications" title='Email notifications'
inputs={inputs} inputs={inputs}
submit={this.handleSubmit} submit={this.handleSubmit}
server_error={server_error} server_error={serverError}
updateSection={function(e){self.updateSection("");e.preventDefault();}} updateSection={function(e){self.updateSection('');e.preventDefault();}}
/> />
); );
} else { } else {
var describe = ""; var describe = '';
if (this.state.enable_email === "false") { if (this.state.enableEmail === 'false') {
describe = "Off"; describe = 'Off';
} else { } else {
describe = "On"; describe = 'On';
} }
emailSection = ( emailSection = (
<SettingItemMin <SettingItemMin
title="Email notifications" title='Email notifications'
describe={describe} describe={describe}
updateSection={function(){self.updateSection("email");}} updateSection={function(){self.updateSection('email');}}
/> />
); );
} }
@@ -338,9 +361,9 @@ module.exports = React.createClass({
if (user.first_name) { if (user.first_name) {
inputs.push( inputs.push(
<div> <div>
<div className="checkbox"> <div className='checkbox'>
<label> <label>
<input type="checkbox" checked={this.state.first_name_key} onChange={function(e){self.updateFirstNameKey(e.target.checked);}}>{'Your case sensitive first name "' + user.first_name + '"'}</input> <input type='checkbox' checked={this.state.firstNameKey} onChange={function(e){self.updateFirstNameKey(e.target.checked);}}>{'Your case sensitive first name "' + user.first_name + '"'}</input>
</label> </label>
</div> </div>
</div> </div>
@@ -349,9 +372,9 @@ module.exports = React.createClass({
inputs.push( inputs.push(
<div> <div>
<div className="checkbox"> <div className='checkbox'>
<label> <label>
<input type="checkbox" checked={this.state.username_key} onChange={function(e){self.updateUsernameKey(e.target.checked);}}>{'Your non-case sensitive username "' + user.username + '"'}</input> <input type='checkbox' checked={this.state.usernameKey} onChange={function(e){self.updateUsernameKey(e.target.checked);}}>{'Your non-case sensitive username "' + user.username + '"'}</input>
</label> </label>
</div> </div>
</div> </div>
@@ -359,9 +382,9 @@ module.exports = React.createClass({
inputs.push( inputs.push(
<div> <div>
<div className="checkbox"> <div className='checkbox'>
<label> <label>
<input type="checkbox" checked={this.state.mention_key} onChange={function(e){self.updateMentionKey(e.target.checked);}}>{'Your username mentioned "@' + user.username + '"'}</input> <input type='checkbox' checked={this.state.mentionKey} onChange={function(e){self.updateMentionKey(e.target.checked);}}>{'Your username mentioned "@' + user.username + '"'}</input>
</label> </label>
</div> </div>
</div> </div>
@@ -369,9 +392,9 @@ module.exports = React.createClass({
inputs.push( inputs.push(
<div> <div>
<div className="checkbox"> <div className='checkbox'>
<label> <label>
<input type="checkbox" checked={this.state.all_key} onChange={function(e){self.updateAllKey(e.target.checked);}}>{'Team-wide mentions "@all"'}</input> <input type='checkbox' checked={this.state.allKey} onChange={function(e){self.updateAllKey(e.target.checked);}}>{'Team-wide mentions "@all"'}</input>
</label> </label>
</div> </div>
</div> </div>
@@ -379,9 +402,9 @@ module.exports = React.createClass({
inputs.push( inputs.push(
<div> <div>
<div className="checkbox"> <div className='checkbox'>
<label> <label>
<input type="checkbox" checked={this.state.channel_key} onChange={function(e){self.updateChannelKey(e.target.checked);}}>{'Channel-wide mentions "@channel"'}</input> <input type='checkbox' checked={this.state.channelKey} onChange={function(e){self.updateChannelKey(e.target.checked);}}>{'Channel-wide mentions "@channel"'}</input>
</label> </label>
</div> </div>
</div> </div>
@@ -389,34 +412,34 @@ module.exports = React.createClass({
inputs.push( inputs.push(
<div> <div>
<div className="checkbox"> <div className='checkbox'>
<label> <label>
<input ref="customcheck" type="checkbox" checked={this.state.custom_keys_checked} onChange={this.updateCustomMentionKeys}>{'Other non-case sensitive words, separated by commas:'}</input> <input ref='customcheck' type='checkbox' checked={this.state.customKeysChecked} onChange={this.updateCustomMentionKeys}>{'Other non-case sensitive words, separated by commas:'}</input>
</label> </label>
</div> </div>
<input ref="custommentions" className="form-control mentions-input" type="text" defaultValue={this.state.custom_keys} onChange={this.onCustomChange} /> <input ref='custommentions' className='form-control mentions-input' type='text' defaultValue={this.state.customKeys} onChange={this.onCustomChange} />
</div> </div>
); );
keysSection = ( keysSection = (
<SettingItemMax <SettingItemMax
title="Words that trigger mentions" title='Words that trigger mentions'
inputs={inputs} inputs={inputs}
submit={this.handleSubmit} submit={this.handleSubmit}
server_error={server_error} server_error={serverError}
updateSection={function(e){self.updateSection("");e.preventDefault();}} updateSection={function(e){self.updateSection('');e.preventDefault();}}
/> />
); );
} else { } else {
var keys = []; var keys = [];
if (this.state.first_name_key) keys.push(user.first_name); if (this.state.firstNameKey) keys.push(user.first_name);
if (this.state.username_key) keys.push(user.username); if (this.state.usernameKey) keys.push(user.username);
if (this.state.mention_key) keys.push('@'+user.username); if (this.state.mentionKey) keys.push('@'+user.username);
if (this.state.all_key) keys.push('@all'); if (this.state.allKey) keys.push('@all');
if (this.state.channel_key) keys.push('@channel'); if (this.state.channelKey) keys.push('@channel');
if (this.state.custom_keys.length > 0) keys = keys.concat(this.state.custom_keys.split(',')); if (this.state.customKeys.length > 0) keys = keys.concat(this.state.customKeys.split(','));
var describe = ""; var describe = '';
for (var i = 0; i < keys.length; i++) { for (var i = 0; i < keys.length; i++) {
describe += '"' + keys[i] + '", '; describe += '"' + keys[i] + '", ';
} }
@@ -424,35 +447,35 @@ module.exports = React.createClass({
if (describe.length > 0) { if (describe.length > 0) {
describe = describe.substring(0, describe.length - 2); describe = describe.substring(0, describe.length - 2);
} else { } else {
describe = "No words configured"; describe = 'No words configured';
} }
keysSection = ( keysSection = (
<SettingItemMin <SettingItemMin
title="Words that trigger mentions" title='Words that trigger mentions'
describe={describe} describe={describe}
updateSection={function(){self.updateSection("keys");}} updateSection={function(){self.updateSection('keys');}}
/> />
); );
} }
return ( return (
<div> <div>
<div className="modal-header"> <div className='modal-header'>
<button type="button" className="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button> <button type='button' className='close' data-dismiss='modal' aria-label='Close'><span aria-hidden='true'>&times;</span></button>
<h4 className="modal-title" ref="title"><i className="modal-back"></i>Notifications</h4> <h4 className='modal-title' ref='title'><i className='modal-back'></i>Notifications</h4>
</div> </div>
<div ref="wrapper" className="user-settings"> <div ref='wrapper' className='user-settings'>
<h3 className="tab-header">Notifications</h3> <h3 className='tab-header'>Notifications</h3>
<div className="divider-dark first"/> <div className='divider-dark first'/>
{desktopSection} {desktopSection}
<div className="divider-light"/> <div className='divider-light'/>
{soundSection} {soundSection}
<div className="divider-light"/> <div className='divider-light'/>
{emailSection} {emailSection}
<div className="divider-light"/> <div className='divider-light'/>
{keysSection} {keysSection}
<div className="divider-dark"/> <div className='divider-dark'/>
</div> </div>
</div> </div>