mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-07 23:44:33 +00:00
58 lines
1.6 KiB
JavaScript
58 lines
1.6 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import Options from '../components/options';
|
|
import {
|
|
changeComposeAdvancedOption,
|
|
changeComposeSensitivity,
|
|
} from 'flavours/glitch/actions/compose';
|
|
import { addPoll, removePoll } from 'flavours/glitch/actions/compose';
|
|
import { closeModal, openModal } from 'flavours/glitch/actions/modal';
|
|
|
|
function mapStateToProps (state) {
|
|
const spoilersAlwaysOn = state.getIn(['local_settings', 'always_show_spoilers_field']);
|
|
const poll = state.getIn(['compose', 'poll']);
|
|
const media = state.getIn(['compose', 'media_attachments']);
|
|
return {
|
|
acceptContentTypes: state.getIn(['media_attachments', 'accept_content_types']).toArray().join(','),
|
|
resetFileKey: state.getIn(['compose', 'resetFileKey']),
|
|
hasPoll: !!poll,
|
|
allowMedia: !poll && (media ? media.size < 4 && !media.some(item => item.get('type') === 'video') : true),
|
|
hasMedia: media && !!media.size,
|
|
allowPoll: !(media && !!media.size),
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
|
|
onChangeAdvancedOption(option, value) {
|
|
dispatch(changeComposeAdvancedOption(option, value));
|
|
},
|
|
|
|
onChangeSensitivity() {
|
|
dispatch(changeComposeSensitivity());
|
|
},
|
|
|
|
onTogglePoll() {
|
|
dispatch((_, getState) => {
|
|
if (getState().getIn(['compose', 'poll'])) {
|
|
dispatch(removePoll());
|
|
} else {
|
|
dispatch(addPoll());
|
|
}
|
|
});
|
|
},
|
|
|
|
onDoodleOpen() {
|
|
dispatch(openModal('DOODLE', { noEsc: true }));
|
|
},
|
|
|
|
onModalClose() {
|
|
dispatch(closeModal());
|
|
},
|
|
|
|
onModalOpen(props) {
|
|
dispatch(openModal('ACTIONS', props));
|
|
},
|
|
});
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(Options);
|