Browse Source

Rename key to path in actions and reducers for settings (#6105)

pull/4/head
Akihiko Odaki 6 years ago
committed by Eugen Rochko
parent
commit
3ba7cde38d
7 changed files with 15 additions and 15 deletions
  1. +2
    -2
      app/javascript/mastodon/actions/push_notifications/index.js
  2. +2
    -2
      app/javascript/mastodon/actions/push_notifications/setter.js
  3. +3
    -3
      app/javascript/mastodon/actions/settings.js
  4. +2
    -2
      app/javascript/mastodon/features/notifications/components/column_settings.js
  5. +4
    -4
      app/javascript/mastodon/features/notifications/containers/column_settings_container.js
  6. +1
    -1
      app/javascript/mastodon/reducers/push_notifications.js
  7. +1
    -1
      app/javascript/mastodon/reducers/settings.js

+ 2
- 2
app/javascript/mastodon/actions/push_notifications/index.js View File

@ -15,9 +15,9 @@ export {
register,
};
export function changeAlerts(key, value) {
export function changeAlerts(path, value) {
return dispatch => {
dispatch(setAlerts(key, value));
dispatch(setAlerts(path, value));
dispatch(saveSettings());
};
}

+ 2
- 2
app/javascript/mastodon/actions/push_notifications/setter.js View File

@ -23,11 +23,11 @@ export function clearSubscription () {
};
}
export function setAlerts (key, value) {
export function setAlerts (path, value) {
return dispatch => {
dispatch({
type: SET_ALERTS,
key,
path,
value,
});
};

+ 3
- 3
app/javascript/mastodon/actions/settings.js View File

@ -4,11 +4,11 @@ import { debounce } from 'lodash';
export const SETTING_CHANGE = 'SETTING_CHANGE';
export const SETTING_SAVE = 'SETTING_SAVE';
export function changeSetting(key, value) {
export function changeSetting(path, value) {
return dispatch => {
dispatch({
type: SETTING_CHANGE,
key,
path,
value,
});
@ -21,7 +21,7 @@ const debouncedSave = debounce((dispatch, getState) => {
return;
}
const data = getState().get('settings').filter((_, key) => key !== 'saved').toJS();
const data = getState().get('settings').filter((_, path) => path !== 'saved').toJS();
axios.put('/api/web/settings', { data }).then(() => dispatch({ type: SETTING_SAVE }));
}, 5000, { trailing: true });

+ 2
- 2
app/javascript/mastodon/features/notifications/components/column_settings.js View File

@ -14,8 +14,8 @@ export default class ColumnSettings extends React.PureComponent {
onClear: PropTypes.func.isRequired,
};
onPushChange = (key, checked) => {
this.props.onChange(['push', ...key], checked);
onPushChange = (path, checked) => {
this.props.onChange(['push', ...path], checked);
}
render () {

+ 4
- 4
app/javascript/mastodon/features/notifications/containers/column_settings_container.js View File

@ -18,11 +18,11 @@ const mapStateToProps = state => ({
const mapDispatchToProps = (dispatch, { intl }) => ({
onChange (key, checked) {
if (key[0] === 'push') {
dispatch(changePushNotifications(key.slice(1), checked));
onChange (path, checked) {
if (path[0] === 'push') {
dispatch(changePushNotifications(path.slice(1), checked));
} else {
dispatch(changeSetting(['notifications', ...key], checked));
dispatch(changeSetting(['notifications', ...path], checked));
}
},

+ 1
- 1
app/javascript/mastodon/reducers/push_notifications.js View File

@ -44,7 +44,7 @@ export default function push_subscriptions(state = initialState, action) {
case CLEAR_SUBSCRIPTION:
return initialState;
case SET_ALERTS:
return state.setIn(action.key, action.value);
return state.setIn(action.path, action.value);
default:
return state;
}

+ 1
- 1
app/javascript/mastodon/reducers/settings.js View File

@ -93,7 +93,7 @@ export default function settings(state = initialState, action) {
return hydrate(state, action.state.get('settings'));
case SETTING_CHANGE:
return state
.setIn(action.key, action.value)
.setIn(action.path, action.value)
.set('saved', false);
case COLUMN_ADD:
return state

Loading…
Cancel
Save