2016-10-30 14:06:43 +00:00
|
|
|
import {
|
2016-11-23 22:34:12 +00:00
|
|
|
REBLOG_REQUEST,
|
|
|
|
REBLOG_FAIL,
|
|
|
|
FAVOURITE_REQUEST,
|
|
|
|
FAVOURITE_FAIL,
|
2019-10-24 20:49:45 +00:00
|
|
|
UNFAVOURITE_SUCCESS,
|
2018-04-11 17:42:25 +00:00
|
|
|
BOOKMARK_REQUEST,
|
|
|
|
BOOKMARK_FAIL,
|
2017-12-04 07:26:40 +00:00
|
|
|
} from 'flavours/glitch/actions/interactions';
|
2018-07-15 21:24:19 +00:00
|
|
|
import {
|
Feature conversations muting (#3017)
* Add <ostatus:conversation /> tag to Atom input/output
Only uses ref attribute (not href) because href would be
the alternate link that's always included also.
Creates new conversation for every non-reply status. Carries
over conversation for every reply. Keeps remote URIs verbatim,
generates local URIs on the fly like the rest of them.
* Conversation muting - prevents notifications that reference a conversation
(including replies, favourites, reblogs) from being created. API endpoints
/api/v1/statuses/:id/mute and /api/v1/statuses/:id/unmute
Currently no way to tell when a status/conversation is muted, so the web UI
only has a "disable notifications" button, doesn't work as a toggle
* Display "Dismiss notifications" on all statuses in notifications column, not just own
* Add "muted" as a boolean attribute on statuses JSON
For now always false on contained reblogs, since it's only relevant for
statuses returned from the notifications endpoint, which are not nested
Remove "Disable notifications" from detailed status view, since it's
only relevant in the notifications column
* Up max class length
* Remove pending test for conversation mute
* Add tests, clean up
* Rename to "mute conversation" and "unmute conversation"
* Raise validation error when trying to mute/unmute status without conversation
2017-05-15 01:04:13 +00:00
|
|
|
STATUS_MUTE_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
STATUS_UNMUTE_SUCCESS,
|
2022-07-24 18:01:30 +00:00
|
|
|
STATUS_REVEAL,
|
|
|
|
STATUS_HIDE,
|
|
|
|
STATUS_COLLAPSE,
|
2022-10-20 12:35:29 +00:00
|
|
|
STATUS_FETCH_REQUEST,
|
|
|
|
STATUS_FETCH_FAIL,
|
2017-12-04 07:26:40 +00:00
|
|
|
} from 'flavours/glitch/actions/statuses';
|
2016-10-30 14:06:43 +00:00
|
|
|
import {
|
|
|
|
TIMELINE_DELETE,
|
2017-12-04 07:26:40 +00:00
|
|
|
} from 'flavours/glitch/actions/timelines';
|
2019-03-05 19:15:43 +00:00
|
|
|
import { STATUS_IMPORT, STATUSES_IMPORT } from '../actions/importer';
|
2017-07-10 23:00:14 +00:00
|
|
|
import { Map as ImmutableMap, fromJS } from 'immutable';
|
2016-10-30 14:06:43 +00:00
|
|
|
|
2019-03-05 19:15:43 +00:00
|
|
|
const importStatus = (state, status) => state.set(status.id, fromJS(status));
|
2017-04-16 14:33:38 +00:00
|
|
|
|
2019-03-05 19:15:43 +00:00
|
|
|
const importStatuses = (state, statuses) =>
|
|
|
|
state.withMutations(mutable => statuses.forEach(status => importStatus(mutable, status)));
|
2016-10-30 14:06:43 +00:00
|
|
|
|
|
|
|
const deleteStatus = (state, id, references) => {
|
|
|
|
references.forEach(ref => {
|
2020-04-28 07:53:42 +00:00
|
|
|
state = deleteStatus(state, ref, []);
|
2016-10-30 14:06:43 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return state.delete(id);
|
|
|
|
};
|
|
|
|
|
2017-07-10 23:00:14 +00:00
|
|
|
const initialState = ImmutableMap();
|
2016-10-30 14:06:43 +00:00
|
|
|
|
|
|
|
export default function statuses(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2022-10-20 12:35:29 +00:00
|
|
|
case STATUS_FETCH_REQUEST:
|
|
|
|
return state.setIn([action.id, 'isLoading'], true);
|
|
|
|
case STATUS_FETCH_FAIL:
|
|
|
|
return state.delete(action.id);
|
2019-03-05 19:15:43 +00:00
|
|
|
case STATUS_IMPORT:
|
|
|
|
return importStatus(state, action.status);
|
|
|
|
case STATUSES_IMPORT:
|
|
|
|
return importStatuses(state, action.statuses);
|
2017-01-16 12:27:58 +00:00
|
|
|
case FAVOURITE_REQUEST:
|
|
|
|
return state.setIn([action.status.get('id'), 'favourited'], true);
|
2019-10-24 20:49:45 +00:00
|
|
|
case UNFAVOURITE_SUCCESS:
|
2020-01-29 15:18:33 +00:00
|
|
|
return state.updateIn([action.status.get('id'), 'favourites_count'], x => Math.max(0, x - 1));
|
2017-01-16 12:27:58 +00:00
|
|
|
case FAVOURITE_FAIL:
|
2018-11-13 15:30:07 +00:00
|
|
|
return state.get(action.status.get('id')) === undefined ? state : state.setIn([action.status.get('id'), 'favourited'], false);
|
2018-04-11 17:42:25 +00:00
|
|
|
case BOOKMARK_REQUEST:
|
|
|
|
return state.setIn([action.status.get('id'), 'bookmarked'], true);
|
|
|
|
case BOOKMARK_FAIL:
|
2018-11-13 15:30:07 +00:00
|
|
|
return state.get(action.status.get('id')) === undefined ? state : state.setIn([action.status.get('id'), 'bookmarked'], false);
|
2017-01-16 12:27:58 +00:00
|
|
|
case REBLOG_REQUEST:
|
|
|
|
return state.setIn([action.status.get('id'), 'reblogged'], true);
|
|
|
|
case REBLOG_FAIL:
|
2018-11-13 15:30:07 +00:00
|
|
|
return state.get(action.status.get('id')) === undefined ? state : state.setIn([action.status.get('id'), 'reblogged'], false);
|
Feature conversations muting (#3017)
* Add <ostatus:conversation /> tag to Atom input/output
Only uses ref attribute (not href) because href would be
the alternate link that's always included also.
Creates new conversation for every non-reply status. Carries
over conversation for every reply. Keeps remote URIs verbatim,
generates local URIs on the fly like the rest of them.
* Conversation muting - prevents notifications that reference a conversation
(including replies, favourites, reblogs) from being created. API endpoints
/api/v1/statuses/:id/mute and /api/v1/statuses/:id/unmute
Currently no way to tell when a status/conversation is muted, so the web UI
only has a "disable notifications" button, doesn't work as a toggle
* Display "Dismiss notifications" on all statuses in notifications column, not just own
* Add "muted" as a boolean attribute on statuses JSON
For now always false on contained reblogs, since it's only relevant for
statuses returned from the notifications endpoint, which are not nested
Remove "Disable notifications" from detailed status view, since it's
only relevant in the notifications column
* Up max class length
* Remove pending test for conversation mute
* Add tests, clean up
* Rename to "mute conversation" and "unmute conversation"
* Raise validation error when trying to mute/unmute status without conversation
2017-05-15 01:04:13 +00:00
|
|
|
case STATUS_MUTE_SUCCESS:
|
|
|
|
return state.setIn([action.id, 'muted'], true);
|
|
|
|
case STATUS_UNMUTE_SUCCESS:
|
|
|
|
return state.setIn([action.id, 'muted'], false);
|
2022-07-24 18:01:30 +00:00
|
|
|
case STATUS_REVEAL:
|
|
|
|
return state.withMutations(map => {
|
|
|
|
action.ids.forEach(id => {
|
|
|
|
if (!(state.get(id) === undefined)) {
|
|
|
|
map.setIn([id, 'hidden'], false);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
case STATUS_HIDE:
|
|
|
|
return state.withMutations(map => {
|
|
|
|
action.ids.forEach(id => {
|
|
|
|
if (!(state.get(id) === undefined)) {
|
|
|
|
map.setIn([id, 'hidden'], true);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
case STATUS_COLLAPSE:
|
|
|
|
return state.setIn([action.id, 'collapsed'], action.isCollapsed);
|
2017-01-16 12:27:58 +00:00
|
|
|
case TIMELINE_DELETE:
|
|
|
|
return deleteStatus(state, action.id, action.references);
|
|
|
|
default:
|
|
|
|
return state;
|
2016-10-30 14:06:43 +00:00
|
|
|
}
|
|
|
|
};
|