mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Merge pull request #1557 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
This commit is contained in:
commit
ff3626269e
@ -22,13 +22,20 @@ export const PICTURE_IN_PICTURE_REMOVE = 'PICTURE_IN_PICTURE_REMOVE';
|
|||||||
* @param {MediaProps} props
|
* @param {MediaProps} props
|
||||||
* @return {object}
|
* @return {object}
|
||||||
*/
|
*/
|
||||||
export const deployPictureInPicture = (statusId, accountId, playerType, props) => ({
|
export const deployPictureInPicture = (statusId, accountId, playerType, props) => {
|
||||||
|
return (dispatch, getState) => {
|
||||||
|
// Do not open a player for a toot that does not exist
|
||||||
|
if (getState().hasIn(['statuses', statusId])) {
|
||||||
|
dispatch({
|
||||||
type: PICTURE_IN_PICTURE_DEPLOY,
|
type: PICTURE_IN_PICTURE_DEPLOY,
|
||||||
statusId,
|
statusId,
|
||||||
accountId,
|
accountId,
|
||||||
playerType,
|
playerType,
|
||||||
props,
|
props,
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @return {object}
|
* @return {object}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { PICTURE_IN_PICTURE_DEPLOY, PICTURE_IN_PICTURE_REMOVE } from 'mastodon/actions/picture_in_picture';
|
import { PICTURE_IN_PICTURE_DEPLOY, PICTURE_IN_PICTURE_REMOVE } from 'mastodon/actions/picture_in_picture';
|
||||||
|
import { TIMELINE_DELETE } from '../actions/timelines';
|
||||||
|
|
||||||
const initialState = {
|
const initialState = {
|
||||||
statusId: null,
|
statusId: null,
|
||||||
@ -16,6 +17,8 @@ export default function pictureInPicture(state = initialState, action) {
|
|||||||
return { statusId: action.statusId, accountId: action.accountId, type: action.playerType, ...action.props };
|
return { statusId: action.statusId, accountId: action.accountId, type: action.playerType, ...action.props };
|
||||||
case PICTURE_IN_PICTURE_REMOVE:
|
case PICTURE_IN_PICTURE_REMOVE:
|
||||||
return { ...initialState };
|
return { ...initialState };
|
||||||
|
case TIMELINE_DELETE:
|
||||||
|
return (state.statusId === action.id) ? { ...initialState } : state;
|
||||||
default:
|
default:
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
File diff suppressed because one or more lines are too long
@ -4732,6 +4732,13 @@ a.status-card.compact:hover {
|
|||||||
background: rgba($gold-star, 0.3);
|
background: rgba($gold-star, 0.3);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.disabled {
|
||||||
|
color: $white;
|
||||||
|
background-color: transparent;
|
||||||
|
cursor: default;
|
||||||
|
opacity: 0.4;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,7 @@ module.exports = merge(sharedConfig, {
|
|||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
new CompressionPlugin({
|
new CompressionPlugin({
|
||||||
filename: '[path].gz[query]',
|
filename: '[path][base].gz[query]',
|
||||||
cache: true,
|
cache: true,
|
||||||
test: /\.(js|css|html|json|ico|svg|eot|otf|ttf|map)$/,
|
test: /\.(js|css|html|json|ico|svg|eot|otf|ttf|map)$/,
|
||||||
}),
|
}),
|
||||||
|
Loading…
Reference in New Issue
Block a user