mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
PushRules settings: Applied new wordings: On, Loud, Off
This commit is contained in:
parent
7fc5ab3c6e
commit
ac87830e4e
@ -32,7 +32,7 @@ var PushRuleState = {
|
|||||||
ON: "on",
|
ON: "on",
|
||||||
/** The user will receive push notification for this rule with sound and
|
/** The user will receive push notification for this rule with sound and
|
||||||
highlight if this is legitimate */
|
highlight if this is legitimate */
|
||||||
STRONG: "strong",
|
LOUD: "loud",
|
||||||
/** The push rule is disabled */
|
/** The push rule is disabled */
|
||||||
OFF: "off"
|
OFF: "off"
|
||||||
};
|
};
|
||||||
@ -101,9 +101,9 @@ module.exports = React.createClass({
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case PushRuleState.STRONG:
|
case PushRuleState.LOUD:
|
||||||
if (rule.actions.length !== 3) {
|
if (rule.actions.length !== 3) {
|
||||||
actions = this._actionsFor(PushRuleState.STRONG);
|
actions = this._actionsFor(PushRuleState.LOUD);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.state.vectorContentRules.state === PushRuleState.OFF) {
|
if (this.state.vectorContentRules.state === PushRuleState.OFF) {
|
||||||
@ -141,7 +141,7 @@ module.exports = React.createClass({
|
|||||||
var rule = this.getRule(vectorRuleId);
|
var rule = this.getRule(vectorRuleId);
|
||||||
|
|
||||||
// For now, we support only enabled/disabled for hs default rules
|
// For now, we support only enabled/disabled for hs default rules
|
||||||
// Translate ON, STRONG, OFF to one of the 2.
|
// Translate ON, LOUD, OFF to one of the 2.
|
||||||
if (rule && rule.state !== newPushRuleState) {
|
if (rule && rule.state !== newPushRuleState) {
|
||||||
|
|
||||||
this.setState({
|
this.setState({
|
||||||
@ -268,7 +268,7 @@ module.exports = React.createClass({
|
|||||||
if (pushRuleState === PushRuleState.ON) {
|
if (pushRuleState === PushRuleState.ON) {
|
||||||
return ['notify'];
|
return ['notify'];
|
||||||
}
|
}
|
||||||
else if (pushRuleState === PushRuleState.STRONG) {
|
else if (pushRuleState === PushRuleState.LOUD) {
|
||||||
return ['notify',
|
return ['notify',
|
||||||
{'set_tweak': 'sound', 'value': 'default'},
|
{'set_tweak': 'sound', 'value': 'default'},
|
||||||
{'set_tweak': 'highlight', 'value': 'true'}
|
{'set_tweak': 'highlight', 'value': 'true'}
|
||||||
@ -295,7 +295,7 @@ module.exports = React.createClass({
|
|||||||
// HS default rules
|
// HS default rules
|
||||||
var defaultRules = {master: [], vector: {}, additional: [], fallthrough: [], suppression: []};
|
var defaultRules = {master: [], vector: {}, additional: [], fallthrough: [], suppression: []};
|
||||||
// Content/keyword rules
|
// Content/keyword rules
|
||||||
var contentRules = {on: [], on_but_disabled:[], strong: [], strong_but_disabled: [], other: []};
|
var contentRules = {on: [], on_but_disabled:[], loud: [], loud_but_disabled: [], other: []};
|
||||||
|
|
||||||
for (var kind in rulesets.global) {
|
for (var kind in rulesets.global) {
|
||||||
for (var i = 0; i < Object.keys(rulesets.global[kind]).length; ++i) {
|
for (var i = 0; i < Object.keys(rulesets.global[kind]).length; ++i) {
|
||||||
@ -317,7 +317,7 @@ module.exports = React.createClass({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (kind === 'content') {
|
else if (kind === 'content') {
|
||||||
// Count tweaks to determine if it is a ON or STRONG rule
|
// Count tweaks to determine if it is a ON or LOUD rule
|
||||||
var tweaks = 0;
|
var tweaks = 0;
|
||||||
for (var j in r.actions) {
|
for (var j in r.actions) {
|
||||||
var action = r.actions[j];
|
var action = r.actions[j];
|
||||||
@ -338,10 +338,10 @@ module.exports = React.createClass({
|
|||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
if (r.enabled) {
|
if (r.enabled) {
|
||||||
contentRules.strong.push(r);
|
contentRules.loud.push(r);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
contentRules.strong_but_disabled.push(r);
|
contentRules.loud_but_disabled.push(r);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@ -355,7 +355,7 @@ module.exports = React.createClass({
|
|||||||
// Decide which content/keyword rules to display in Vector UI.
|
// Decide which content/keyword rules to display in Vector UI.
|
||||||
// Vector displays a single global rule for a list of keywords
|
// Vector displays a single global rule for a list of keywords
|
||||||
// whereas Matrix has a push rule per keyword.
|
// whereas Matrix has a push rule per keyword.
|
||||||
// Vector can set the unique rule in ON, STRONG or OFF state.
|
// Vector can set the unique rule in ON, LOUD or OFF state.
|
||||||
// Matrix has enabled/disabled plus a combination of (highlight, sound) tweaks.
|
// Matrix has enabled/disabled plus a combination of (highlight, sound) tweaks.
|
||||||
|
|
||||||
// The code below determines which set of user's content push rules can be
|
// The code below determines which set of user's content push rules can be
|
||||||
@ -363,19 +363,19 @@ module.exports = React.createClass({
|
|||||||
// Push rules that does not fir, ie defined by another Matrix client, ends
|
// Push rules that does not fir, ie defined by another Matrix client, ends
|
||||||
// in self.state.externalContentRules.
|
// in self.state.externalContentRules.
|
||||||
// There is priority in the determination of which set will be the displayed one.
|
// There is priority in the determination of which set will be the displayed one.
|
||||||
// The set with rules that have STRONG tweaks is the first choice. Then, the ones
|
// The set with rules that have LOUD tweaks is the first choice. Then, the ones
|
||||||
// with ON tweaks (no tweaks).
|
// with ON tweaks (no tweaks).
|
||||||
if (contentRules.strong.length) {
|
if (contentRules.loud.length) {
|
||||||
self.state.vectorContentRules = {
|
self.state.vectorContentRules = {
|
||||||
state: PushRuleState.STRONG,
|
state: PushRuleState.LOUD,
|
||||||
rules: contentRules.strong
|
rules: contentRules.loud
|
||||||
}
|
}
|
||||||
self.state.externalContentRules = [].concat(contentRules.strong_but_disabled, contentRules.on, contentRules.on_but_disabled, contentRules.other);
|
self.state.externalContentRules = [].concat(contentRules.loud_but_disabled, contentRules.on, contentRules.on_but_disabled, contentRules.other);
|
||||||
}
|
}
|
||||||
else if (contentRules.strong_but_disabled.length) {
|
else if (contentRules.loud_but_disabled.length) {
|
||||||
self.state.vectorContentRules = {
|
self.state.vectorContentRules = {
|
||||||
state: PushRuleState.OFF,
|
state: PushRuleState.OFF,
|
||||||
rules: contentRules.strong_but_disabled
|
rules: contentRules.loud_but_disabled
|
||||||
}
|
}
|
||||||
self.state.externalContentRules = [].concat(contentRules.on, contentRules.on_but_disabled, contentRules.other);
|
self.state.externalContentRules = [].concat(contentRules.on, contentRules.on_but_disabled, contentRules.other);
|
||||||
}
|
}
|
||||||
@ -404,7 +404,7 @@ module.exports = React.createClass({
|
|||||||
// Messages containing user's display name
|
// Messages containing user's display name
|
||||||
// (skip contains_user_name which is too geeky)
|
// (skip contains_user_name which is too geeky)
|
||||||
rule = defaultRules.vector['.m.rule.contains_display_name'];
|
rule = defaultRules.vector['.m.rule.contains_display_name'];
|
||||||
state = (rule && rule.enabled) ? PushRuleState.STRONG : PushRuleState.OFF;
|
state = (rule && rule.enabled) ? PushRuleState.LOUD : PushRuleState.OFF;
|
||||||
self.state.vectorPushRules.push({
|
self.state.vectorPushRules.push({
|
||||||
"vectorRuleId": "contains_display_name",
|
"vectorRuleId": "contains_display_name",
|
||||||
"description" : "Messages containing my name",
|
"description" : "Messages containing my name",
|
||||||
@ -424,7 +424,7 @@ module.exports = React.createClass({
|
|||||||
|
|
||||||
// Messages just sent to the user
|
// Messages just sent to the user
|
||||||
rule = defaultRules.vector['.m.rule.room_one_to_one'];
|
rule = defaultRules.vector['.m.rule.room_one_to_one'];
|
||||||
state = (rule && rule.enabled) ? PushRuleState.STRONG : PushRuleState.OFF;
|
state = (rule && rule.enabled) ? PushRuleState.LOUD : PushRuleState.OFF;
|
||||||
self.state.vectorPushRules.push({
|
self.state.vectorPushRules.push({
|
||||||
"vectorRuleId": "room_one_to_one",
|
"vectorRuleId": "room_one_to_one",
|
||||||
"description" : "Messages just sent to me",
|
"description" : "Messages just sent to me",
|
||||||
@ -435,7 +435,7 @@ module.exports = React.createClass({
|
|||||||
|
|
||||||
// Invitation for the user
|
// Invitation for the user
|
||||||
rule = defaultRules.vector['.m.rule.invite_for_me'];
|
rule = defaultRules.vector['.m.rule.invite_for_me'];
|
||||||
state = (rule && rule.enabled) ? PushRuleState.STRONG : PushRuleState.OFF;
|
state = (rule && rule.enabled) ? PushRuleState.LOUD : PushRuleState.OFF;
|
||||||
self.state.vectorPushRules.push({
|
self.state.vectorPushRules.push({
|
||||||
"vectorRuleId": "invite_for_me",
|
"vectorRuleId": "invite_for_me",
|
||||||
"description" : "When I'm invited to a room",
|
"description" : "When I'm invited to a room",
|
||||||
@ -452,12 +452,12 @@ module.exports = React.createClass({
|
|||||||
"description" : "When people join or leave a room",
|
"description" : "When people join or leave a room",
|
||||||
"rule": rule,
|
"rule": rule,
|
||||||
"state": state,
|
"state": state,
|
||||||
"disabled": PushRuleState.STRONG
|
"disabled": PushRuleState.LOUD
|
||||||
});
|
});
|
||||||
|
|
||||||
// Incoming call
|
// Incoming call
|
||||||
rule = defaultRules.vector['.m.rule.call'];
|
rule = defaultRules.vector['.m.rule.call'];
|
||||||
state = (rule && rule.enabled) ? PushRuleState.STRONG : PushRuleState.OFF;
|
state = (rule && rule.enabled) ? PushRuleState.LOUD : PushRuleState.OFF;
|
||||||
self.state.vectorPushRules.push({
|
self.state.vectorPushRules.push({
|
||||||
"vectorRuleId": "call",
|
"vectorRuleId": "call",
|
||||||
"description" : "Call invitation",
|
"description" : "Call invitation",
|
||||||
@ -510,10 +510,10 @@ module.exports = React.createClass({
|
|||||||
</th>
|
</th>
|
||||||
|
|
||||||
<th>
|
<th>
|
||||||
<input className= {className + "-" + PushRuleState.STRONG}
|
<input className= {className + "-" + PushRuleState.LOUD}
|
||||||
type="radio"
|
type="radio"
|
||||||
checked={ pushRuleState === PushRuleState.STRONG }
|
checked={ pushRuleState === PushRuleState.LOUD }
|
||||||
disabled= { (disabled === PushRuleState.STRONG) ? "disabled" : false }
|
disabled= { (disabled === PushRuleState.LOUD) ? "disabled" : false }
|
||||||
onChange={ this.onNotifStateButtonClicked } />
|
onChange={ this.onNotifStateButtonClicked } />
|
||||||
</th>
|
</th>
|
||||||
|
|
||||||
@ -586,8 +586,8 @@ module.exports = React.createClass({
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th width="55%"></th>
|
<th width="55%"></th>
|
||||||
<th width="15%">Normal</th>
|
<th width="15%">On</th>
|
||||||
<th width="15%">Strong</th>
|
<th width="15%">Loud</th>
|
||||||
<th width="15%">Off</th>
|
<th width="15%">Off</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
Loading…
Reference in New Issue
Block a user