Merge pull request #1500 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changesth-downstream
commit
cef72ebd50
@ -0,0 +1,13 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
module MascotHelper
|
||||||
|
def mascot_url
|
||||||
|
full_asset_url(instance_presenter.mascot&.file&.url || asset_pack_path('media/images/elephant_ui_plane.svg'))
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def instance_presenter
|
||||||
|
@instance_presenter ||= InstancePresenter.new
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,29 @@
|
|||||||
|
import { openModal } from './modal';
|
||||||
|
|
||||||
|
export const BOOSTS_INIT_MODAL = 'BOOSTS_INIT_MODAL';
|
||||||
|
export const BOOSTS_CHANGE_PRIVACY = 'BOOSTS_CHANGE_PRIVACY';
|
||||||
|
|
||||||
|
export function initBoostModal(props) {
|
||||||
|
return (dispatch, getState) => {
|
||||||
|
const default_privacy = getState().getIn(['compose', 'default_privacy']);
|
||||||
|
|
||||||
|
const privacy = props.status.get('visibility') === 'private' ? 'private' : default_privacy;
|
||||||
|
|
||||||
|
dispatch({
|
||||||
|
type: BOOSTS_INIT_MODAL,
|
||||||
|
privacy
|
||||||
|
});
|
||||||
|
|
||||||
|
dispatch(openModal('BOOST', props));
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export function changeBoostPrivacy(privacy) {
|
||||||
|
return dispatch => {
|
||||||
|
dispatch({
|
||||||
|
type: BOOSTS_CHANGE_PRIVACY,
|
||||||
|
privacy,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
@ -0,0 +1,115 @@
|
|||||||
|
import PropTypes from 'prop-types';
|
||||||
|
import React from 'react';
|
||||||
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||||
|
import { FormattedMessage, defineMessages, injectIntl } from 'react-intl';
|
||||||
|
import Dropdown from './dropdown';
|
||||||
|
|
||||||
|
const messages = defineMessages({
|
||||||
|
change_privacy: {
|
||||||
|
defaultMessage: 'Adjust status privacy',
|
||||||
|
id: 'privacy.change',
|
||||||
|
},
|
||||||
|
direct_long: {
|
||||||
|
defaultMessage: 'Visible for mentioned users only',
|
||||||
|
id: 'privacy.direct.long',
|
||||||
|
},
|
||||||
|
direct_short: {
|
||||||
|
defaultMessage: 'Direct',
|
||||||
|
id: 'privacy.direct.short',
|
||||||
|
},
|
||||||
|
private_long: {
|
||||||
|
defaultMessage: 'Visible for followers only',
|
||||||
|
id: 'privacy.private.long',
|
||||||
|
},
|
||||||
|
private_short: {
|
||||||
|
defaultMessage: 'Followers-only',
|
||||||
|
id: 'privacy.private.short',
|
||||||
|
},
|
||||||
|
public_long: {
|
||||||
|
defaultMessage: 'Visible for all, shown in public timelines',
|
||||||
|
id: 'privacy.public.long',
|
||||||
|
},
|
||||||
|
public_short: {
|
||||||
|
defaultMessage: 'Public',
|
||||||
|
id: 'privacy.public.short',
|
||||||
|
},
|
||||||
|
unlisted_long: {
|
||||||
|
defaultMessage: 'Visible for all, but not in public timelines',
|
||||||
|
id: 'privacy.unlisted.long',
|
||||||
|
},
|
||||||
|
unlisted_short: {
|
||||||
|
defaultMessage: 'Unlisted',
|
||||||
|
id: 'privacy.unlisted.short',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
export default @injectIntl
|
||||||
|
class PrivacyDropdown extends React.PureComponent {
|
||||||
|
|
||||||
|
static propTypes = {
|
||||||
|
isUserTouching: PropTypes.func,
|
||||||
|
onModalOpen: PropTypes.func,
|
||||||
|
onModalClose: PropTypes.func,
|
||||||
|
value: PropTypes.string.isRequired,
|
||||||
|
onChange: PropTypes.func.isRequired,
|
||||||
|
noDirect: PropTypes.bool,
|
||||||
|
noModal: PropTypes.bool,
|
||||||
|
container: PropTypes.func,
|
||||||
|
intl: PropTypes.object.isRequired,
|
||||||
|
};
|
||||||
|
|
||||||
|
render () {
|
||||||
|
const { value, onChange, onModalOpen, onModalClose, disabled, noDirect, noModal, container, intl } = this.props;
|
||||||
|
|
||||||
|
// We predefine our privacy items so that we can easily pick the
|
||||||
|
// dropdown icon later.
|
||||||
|
const privacyItems = {
|
||||||
|
direct: {
|
||||||
|
icon: 'envelope',
|
||||||
|
meta: <FormattedMessage {...messages.direct_long} />,
|
||||||
|
name: 'direct',
|
||||||
|
text: <FormattedMessage {...messages.direct_short} />,
|
||||||
|
},
|
||||||
|
private: {
|
||||||
|
icon: 'lock',
|
||||||
|
meta: <FormattedMessage {...messages.private_long} />,
|
||||||
|
name: 'private',
|
||||||
|
text: <FormattedMessage {...messages.private_short} />,
|
||||||
|
},
|
||||||
|
public: {
|
||||||
|
icon: 'globe',
|
||||||
|
meta: <FormattedMessage {...messages.public_long} />,
|
||||||
|
name: 'public',
|
||||||
|
text: <FormattedMessage {...messages.public_short} />,
|
||||||
|
},
|
||||||
|
unlisted: {
|
||||||
|
icon: 'unlock',
|
||||||
|
meta: <FormattedMessage {...messages.unlisted_long} />,
|
||||||
|
name: 'unlisted',
|
||||||
|
text: <FormattedMessage {...messages.unlisted_short} />,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const items = [privacyItems.public, privacyItems.unlisted, privacyItems.private];
|
||||||
|
|
||||||
|
if (!noDirect) {
|
||||||
|
items.push(privacyItems.direct);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dropdown
|
||||||
|
disabled={disabled}
|
||||||
|
icon={(privacyItems[value] || {}).icon}
|
||||||
|
items={items}
|
||||||
|
onChange={onChange}
|
||||||
|
onModalClose={onModalClose}
|
||||||
|
onModalOpen={onModalOpen}
|
||||||
|
title={intl.formatMessage(messages.change_privacy)}
|
||||||
|
container={container}
|
||||||
|
noModal={noModal}
|
||||||
|
value={value}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
import Immutable from 'immutable';
|
||||||
|
|
||||||
|
import {
|
||||||
|
BOOSTS_INIT_MODAL,
|
||||||
|
BOOSTS_CHANGE_PRIVACY,
|
||||||
|
} from 'flavours/glitch/actions/boosts';
|
||||||
|
|
||||||
|
const initialState = Immutable.Map({
|
||||||
|
new: Immutable.Map({
|
||||||
|
privacy: 'public',
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
export default function mutes(state = initialState, action) {
|
||||||
|
switch (action.type) {
|
||||||
|
case BOOSTS_INIT_MODAL:
|
||||||
|
return state.withMutations((state) => {
|
||||||
|
state.setIn(['new', 'privacy'], action.privacy);
|
||||||
|
});
|
||||||
|
case BOOSTS_CHANGE_PRIVACY:
|
||||||
|
return state.setIn(['new', 'privacy'], action.privacy);
|
||||||
|
default:
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,29 @@
|
|||||||
|
import { openModal } from './modal';
|
||||||
|
|
||||||
|
export const BOOSTS_INIT_MODAL = 'BOOSTS_INIT_MODAL';
|
||||||
|
export const BOOSTS_CHANGE_PRIVACY = 'BOOSTS_CHANGE_PRIVACY';
|
||||||
|
|
||||||
|
export function initBoostModal(props) {
|
||||||
|
return (dispatch, getState) => {
|
||||||
|
const default_privacy = getState().getIn(['compose', 'default_privacy']);
|
||||||
|
|
||||||
|
const privacy = props.status.get('visibility') === 'private' ? 'private' : default_privacy;
|
||||||
|
|
||||||
|
dispatch({
|
||||||
|
type: BOOSTS_INIT_MODAL,
|
||||||
|
privacy
|
||||||
|
});
|
||||||
|
|
||||||
|
dispatch(openModal('BOOST', props));
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export function changeBoostPrivacy(privacy) {
|
||||||
|
return dispatch => {
|
||||||
|
dispatch({
|
||||||
|
type: BOOSTS_CHANGE_PRIVACY,
|
||||||
|
privacy,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
import Immutable from 'immutable';
|
||||||
|
|
||||||
|
import {
|
||||||
|
BOOSTS_INIT_MODAL,
|
||||||
|
BOOSTS_CHANGE_PRIVACY,
|
||||||
|
} from 'mastodon/actions/boosts';
|
||||||
|
|
||||||
|
const initialState = Immutable.Map({
|
||||||
|
new: Immutable.Map({
|
||||||
|
privacy: 'public',
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
export default function mutes(state = initialState, action) {
|
||||||
|
switch (action.type) {
|
||||||
|
case BOOSTS_INIT_MODAL:
|
||||||
|
return state.withMutations((state) => {
|
||||||
|
state.setIn(['new', 'privacy'], action.privacy);
|
||||||
|
});
|
||||||
|
case BOOSTS_CHANGE_PRIVACY:
|
||||||
|
return state.setIn(['new', 'privacy'], action.privacy);
|
||||||
|
default:
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
module ActionDispatch
|
||||||
|
module CookieJarExtensions
|
||||||
|
private
|
||||||
|
|
||||||
|
# Monkey-patch ActionDispatch to serve secure cookies to Tor Hidden Service
|
||||||
|
# users. Otherwise, ActionDispatch would drop the cookie over HTTP.
|
||||||
|
def write_cookie?(*)
|
||||||
|
request.headers['Host'].ends_with?('.onion') || super
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
ActionDispatch::Cookies::CookieJar.prepend(ActionDispatch::CookieJarExtensions)
|
@ -0,0 +1,11 @@
|
|||||||
|
module Rails
|
||||||
|
module EngineExtensions
|
||||||
|
# Rewrite task loading code to filter digitalocean.rake task
|
||||||
|
def run_tasks_blocks(app)
|
||||||
|
Railtie.instance_method(:run_tasks_blocks).bind(self).call(app)
|
||||||
|
paths["lib/tasks"].existent.reject { |ext| ext.end_with?('digitalocean.rake') }.sort.each { |ext| load(ext) }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
Rails::Engine.prepend(Rails::EngineExtensions)
|
Loading…
Reference in new issue