Add unfollow modal (optional) (#4246)
* Add unfollow modal * unfollowing someone * remove unnecessary prop
This commit is contained in:
		
				
					committed by
					
						
						Eugen Rochko
					
				
			
			
				
	
			
			
			
						parent
						
							89b988cab5
						
					
				
				
					commit
					3267e4a785
				
			@@ -35,6 +35,7 @@ class Settings::PreferencesController < ApplicationController
 | 
			
		||||
    params.require(:user).permit(
 | 
			
		||||
      :setting_default_privacy,
 | 
			
		||||
      :setting_default_sensitive,
 | 
			
		||||
      :setting_unfollow_modal,
 | 
			
		||||
      :setting_boost_modal,
 | 
			
		||||
      :setting_delete_modal,
 | 
			
		||||
      :setting_auto_play_gif,
 | 
			
		||||
 
 | 
			
		||||
@@ -1,4 +1,6 @@
 | 
			
		||||
import React from 'react';
 | 
			
		||||
import { connect } from 'react-redux';
 | 
			
		||||
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
			
		||||
import { makeGetAccount } from '../selectors';
 | 
			
		||||
import Account from '../components/account';
 | 
			
		||||
import {
 | 
			
		||||
@@ -9,6 +11,11 @@ import {
 | 
			
		||||
  muteAccount,
 | 
			
		||||
  unmuteAccount,
 | 
			
		||||
} from '../actions/accounts';
 | 
			
		||||
import { openModal } from '../actions/modal';
 | 
			
		||||
 | 
			
		||||
const messages = defineMessages({
 | 
			
		||||
  unfollowConfirm: { id: 'confirmations.unfollow.confirm', defaultMessage: 'Unfollow' },
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
const makeMapStateToProps = () => {
 | 
			
		||||
  const getAccount = makeGetAccount();
 | 
			
		||||
@@ -16,15 +23,25 @@ const makeMapStateToProps = () => {
 | 
			
		||||
  const mapStateToProps = (state, props) => ({
 | 
			
		||||
    account: getAccount(state, props.id),
 | 
			
		||||
    me: state.getIn(['meta', 'me']),
 | 
			
		||||
    unfollowModal: state.getIn(['meta', 'unfollow_modal']),
 | 
			
		||||
  });
 | 
			
		||||
 | 
			
		||||
  return mapStateToProps;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const mapDispatchToProps = (dispatch) => ({
 | 
			
		||||
const mapDispatchToProps = (dispatch, { intl }) => ({
 | 
			
		||||
 | 
			
		||||
  onFollow (account) {
 | 
			
		||||
    if (account.getIn(['relationship', 'following'])) {
 | 
			
		||||
      dispatch(unfollowAccount(account.get('id')));
 | 
			
		||||
      if (this.unfollowModal) {
 | 
			
		||||
        dispatch(openModal('CONFIRM', {
 | 
			
		||||
          message: <FormattedMessage id='confirmations.unfollow.message' defaultMessage='Are you sure you want to unfollow {name}?' values={{ name: <strong>@{account.get('acct')}</strong> }} />,
 | 
			
		||||
          confirm: intl.formatMessage(messages.unfollowConfirm),
 | 
			
		||||
          onConfirm: () => dispatch(unfollowAccount(account.get('id'))),
 | 
			
		||||
        }));
 | 
			
		||||
      } else {
 | 
			
		||||
        dispatch(unfollowAccount(account.get('id')));
 | 
			
		||||
      }
 | 
			
		||||
    } else {
 | 
			
		||||
      dispatch(followAccount(account.get('id')));
 | 
			
		||||
    }
 | 
			
		||||
@@ -45,6 +62,7 @@ const mapDispatchToProps = (dispatch) => ({
 | 
			
		||||
      dispatch(muteAccount(account.get('id')));
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
export default connect(makeMapStateToProps, mapDispatchToProps)(Account);
 | 
			
		||||
export default injectIntl(connect(makeMapStateToProps, mapDispatchToProps)(Account));
 | 
			
		||||
 
 | 
			
		||||
@@ -17,6 +17,7 @@ import { blockDomain, unblockDomain } from '../../../actions/domain_blocks';
 | 
			
		||||
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
			
		||||
 | 
			
		||||
const messages = defineMessages({
 | 
			
		||||
  unfollowConfirm: { id: 'confirmations.unfollow.confirm', defaultMessage: 'Unfollow' },
 | 
			
		||||
  blockConfirm: { id: 'confirmations.block.confirm', defaultMessage: 'Block' },
 | 
			
		||||
  muteConfirm: { id: 'confirmations.mute.confirm', defaultMessage: 'Mute' },
 | 
			
		||||
  blockDomainConfirm: { id: 'confirmations.domain_block.confirm', defaultMessage: 'Hide entire domain' },
 | 
			
		||||
@@ -28,15 +29,25 @@ const makeMapStateToProps = () => {
 | 
			
		||||
  const mapStateToProps = (state, { accountId }) => ({
 | 
			
		||||
    account: getAccount(state, Number(accountId)),
 | 
			
		||||
    me: state.getIn(['meta', 'me']),
 | 
			
		||||
    unfollowModal: state.getIn(['meta', 'unfollow_modal']),
 | 
			
		||||
  });
 | 
			
		||||
 | 
			
		||||
  return mapStateToProps;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const mapDispatchToProps = (dispatch, { intl }) => ({
 | 
			
		||||
 | 
			
		||||
  onFollow (account) {
 | 
			
		||||
    if (account.getIn(['relationship', 'following'])) {
 | 
			
		||||
      dispatch(unfollowAccount(account.get('id')));
 | 
			
		||||
      if (this.unfollowModal) {
 | 
			
		||||
        dispatch(openModal('CONFIRM', {
 | 
			
		||||
          message: <FormattedMessage id='confirmations.unfollow.message' defaultMessage='Are you sure you want to unfollow {name}?' values={{ name: <strong>@{account.get('acct')}</strong> }} />,
 | 
			
		||||
          confirm: intl.formatMessage(messages.unfollowConfirm),
 | 
			
		||||
          onConfirm: () => dispatch(unfollowAccount(account.get('id'))),
 | 
			
		||||
        }));
 | 
			
		||||
      } else {
 | 
			
		||||
        dispatch(unfollowAccount(account.get('id')));
 | 
			
		||||
      }
 | 
			
		||||
    } else {
 | 
			
		||||
      dispatch(followAccount(account.get('id')));
 | 
			
		||||
    }
 | 
			
		||||
@@ -85,6 +96,7 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
 | 
			
		||||
  onUnblockDomain (domain, accountId) {
 | 
			
		||||
    dispatch(unblockDomain(domain, accountId));
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
export default injectIntl(connect(makeMapStateToProps, mapDispatchToProps)(Header));
 | 
			
		||||
 
 | 
			
		||||
@@ -85,7 +85,7 @@ export default class ModalRoot extends React.PureComponent {
 | 
			
		||||
      >
 | 
			
		||||
        {interpolatedStyles =>
 | 
			
		||||
          <div className='modal-root'>
 | 
			
		||||
            {interpolatedStyles.map(({ key, data: { type }, style }) => (
 | 
			
		||||
            {interpolatedStyles.map(({ key, data: { type, props }, style }) => (
 | 
			
		||||
              <div key={key} style={{ pointerEvents: visible ? 'auto' : 'none' }}>
 | 
			
		||||
                <div role='presentation' className='modal-root__overlay' style={{ opacity: style.opacity }} onClick={onClose} />
 | 
			
		||||
                <div className='modal-root__container' style={{ opacity: style.opacity, transform: `translateZ(0px) scale(${style.scale})` }}>
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "أكتم",
 | 
			
		||||
  "confirmations.mute.message": "هل أنت متأكد أنك تريد كتم {name} ؟",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "الأنشطة",
 | 
			
		||||
  "emoji_button.flags": "الأعلام",
 | 
			
		||||
  "emoji_button.food": "الطعام والشراب",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "Mute",
 | 
			
		||||
  "confirmations.mute.message": "Are you sure you want to mute {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activity",
 | 
			
		||||
  "emoji_button.flags": "Flags",
 | 
			
		||||
  "emoji_button.food": "Food & Drink",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Estàs realment, realment segur que vols bloquejar totalment {domain}? En la majoria dels casos bloquejar o silenciar és suficient i preferible.",
 | 
			
		||||
  "confirmations.mute.confirm": "Silenciar",
 | 
			
		||||
  "confirmations.mute.message": "Estàs segur que vols silenciar {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activitat",
 | 
			
		||||
  "emoji_button.flags": "Flags",
 | 
			
		||||
  "emoji_button.food": "Menjar i Beure",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "Mute",
 | 
			
		||||
  "confirmations.mute.message": "Are you sure you want to mute {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activity",
 | 
			
		||||
  "emoji_button.flags": "Flags",
 | 
			
		||||
  "emoji_button.food": "Food & Drink",
 | 
			
		||||
 
 | 
			
		||||
@@ -228,6 +228,19 @@
 | 
			
		||||
    ],
 | 
			
		||||
    "path": "app/javascript/mastodon/components/video_player.json"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "descriptors": [
 | 
			
		||||
      {
 | 
			
		||||
        "defaultMessage": "Unfollow",
 | 
			
		||||
        "id": "confirmations.unfollow.confirm"
 | 
			
		||||
      },
 | 
			
		||||
      {
 | 
			
		||||
        "defaultMessage": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
        "id": "confirmations.unfollow.message"
 | 
			
		||||
      }
 | 
			
		||||
    ],
 | 
			
		||||
    "path": "app/javascript/mastodon/containers/account_container.json"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "descriptors": [
 | 
			
		||||
      {
 | 
			
		||||
@@ -268,6 +281,10 @@
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "descriptors": [
 | 
			
		||||
      {
 | 
			
		||||
        "defaultMessage": "Unfollow",
 | 
			
		||||
        "id": "confirmations.unfollow.confirm"
 | 
			
		||||
      },
 | 
			
		||||
      {
 | 
			
		||||
        "defaultMessage": "Block",
 | 
			
		||||
        "id": "confirmations.block.confirm"
 | 
			
		||||
@@ -280,6 +297,10 @@
 | 
			
		||||
        "defaultMessage": "Hide entire domain",
 | 
			
		||||
        "id": "confirmations.domain_block.confirm"
 | 
			
		||||
      },
 | 
			
		||||
      {
 | 
			
		||||
        "defaultMessage": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
        "id": "confirmations.unfollow.message"
 | 
			
		||||
      },
 | 
			
		||||
      {
 | 
			
		||||
        "defaultMessage": "Are you sure you want to block {name}?",
 | 
			
		||||
        "id": "confirmations.block.message"
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "Mute",
 | 
			
		||||
  "confirmations.mute.message": "Are you sure you want to mute {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activity",
 | 
			
		||||
  "emoji_button.flags": "Flags",
 | 
			
		||||
  "emoji_button.food": "Food & Drink",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "Mute",
 | 
			
		||||
  "confirmations.mute.message": "Are you sure you want to mute {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activity",
 | 
			
		||||
  "emoji_button.flags": "Flags",
 | 
			
		||||
  "emoji_button.food": "Food & Drink",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "Mute",
 | 
			
		||||
  "confirmations.mute.message": "Are you sure you want to mute {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activity",
 | 
			
		||||
  "emoji_button.flags": "Flags",
 | 
			
		||||
  "emoji_button.food": "Food & Drink",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "آیا جدی جدی میخواهید کل دامین {domain} را مسدود کنید؟ بیشتر وقتها مسدودکردن یا بیصداکردن چند حساب کاربری خاص کافی است و توصیه میشود.",
 | 
			
		||||
  "confirmations.mute.confirm": "بیصدا کن",
 | 
			
		||||
  "confirmations.mute.message": "آیا واقعاً میخواهید {name} را بیصدا کنید؟",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "فعالیت",
 | 
			
		||||
  "emoji_button.flags": "پرچمها",
 | 
			
		||||
  "emoji_button.food": "غذا و نوشیدنی",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "Mute",
 | 
			
		||||
  "confirmations.mute.message": "Are you sure you want to mute {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activity",
 | 
			
		||||
  "emoji_button.flags": "Flags",
 | 
			
		||||
  "emoji_button.food": "Food & Drink",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Êtes-vous vraiment, vraiment sûr⋅e de vouloir bloquer {domain} en entier ? Dans la plupart des cas, quelques blocages ou masquages ciblés sont suffisants et préférables.",
 | 
			
		||||
  "confirmations.mute.confirm": "Masquer",
 | 
			
		||||
  "confirmations.mute.message": "Confirmez vous le masquage de {name} ?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activités",
 | 
			
		||||
  "emoji_button.flags": "Drapeaux",
 | 
			
		||||
  "emoji_button.food": "Boire et manger",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "באמת באמת לחסום את כל קהילת {domain}? ברב המקרים השתקות נבחרות של מספר משתמשים מסויימים צריכה להספיק.",
 | 
			
		||||
  "confirmations.mute.confirm": "להשתיק",
 | 
			
		||||
  "confirmations.mute.message": "להשתיק את {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "פעילות",
 | 
			
		||||
  "emoji_button.flags": "דגלים",
 | 
			
		||||
  "emoji_button.food": "אוכל ושתיה",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Jesi li zaista, zaista siguran da želiš blokirati sve sa {domain}? U većini slučajeva nekoliko ciljanih blokiranja ili utišavanja je dostatno i poželjnije.",
 | 
			
		||||
  "confirmations.mute.confirm": "Utišaj",
 | 
			
		||||
  "confirmations.mute.message": "Jesi li siguran da želiš utišati {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Aktivnost",
 | 
			
		||||
  "emoji_button.flags": "Zastave",
 | 
			
		||||
  "emoji_button.food": "Hrana & Piće",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "Mute",
 | 
			
		||||
  "confirmations.mute.message": "Are you sure you want to mute {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activity",
 | 
			
		||||
  "emoji_button.flags": "Flags",
 | 
			
		||||
  "emoji_button.food": "Food & Drink",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "Bisukan",
 | 
			
		||||
  "confirmations.mute.message": "Apa anda yakin ingin membisukan {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Aktivitas",
 | 
			
		||||
  "emoji_button.flags": "Bendera",
 | 
			
		||||
  "emoji_button.food": "Makanan & Minuman",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "Mute",
 | 
			
		||||
  "confirmations.mute.message": "Are you sure you want to mute {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activity",
 | 
			
		||||
  "emoji_button.flags": "Flags",
 | 
			
		||||
  "emoji_button.food": "Food & Drink",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "Mute",
 | 
			
		||||
  "confirmations.mute.message": "Are you sure you want to mute {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activity",
 | 
			
		||||
  "emoji_button.flags": "Flags",
 | 
			
		||||
  "emoji_button.food": "Food & Drink",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "本当に{domain}全体を非表示にしますか? 多くの場合は個別にブロックやミュートするだけで充分であり、また好ましいです。",
 | 
			
		||||
  "confirmations.mute.confirm": "ミュート",
 | 
			
		||||
  "confirmations.mute.message": "本当に{name}をミュートしますか?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "活動",
 | 
			
		||||
  "emoji_button.flags": "国旗",
 | 
			
		||||
  "emoji_button.food": "食べ物",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "정말로 {domain} 전체를 숨기시겠습니까? 대부분의 경우 개별 차단이나 뮤트로 충분합니다.",
 | 
			
		||||
  "confirmations.mute.confirm": "뮤트",
 | 
			
		||||
  "confirmations.mute.message": "정말로 {name}를 뮤트하시겠습니까?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "활동",
 | 
			
		||||
  "emoji_button.flags": "국기",
 | 
			
		||||
  "emoji_button.food": "음식",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Weet je het echt, echt zeker dat je alles van {domain} wil negeren? In de meeste gevallen is het blokkeren of negeren van een paar specifieke personen voldoende en gewenst.",
 | 
			
		||||
  "confirmations.mute.confirm": "Negeren",
 | 
			
		||||
  "confirmations.mute.message": "Weet je zeker dat je {name} wilt negeren?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activiteiten",
 | 
			
		||||
  "emoji_button.flags": "Vlaggen",
 | 
			
		||||
  "emoji_button.food": "Eten en drinken",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Er du sikker på at du vil skjule hele domenet {domain}? I de fleste tilfeller er det bedre med målrettet blokkering eller demping.",
 | 
			
		||||
  "confirmations.mute.confirm": "Demp",
 | 
			
		||||
  "confirmations.mute.message": "Er du sikker på at du vil dempe {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Aktivitet",
 | 
			
		||||
  "emoji_button.flags": "Flagg",
 | 
			
		||||
  "emoji_button.food": "Mat og drikke",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Sètz segur segur de voler blocar complètament {domain} ? De còps cal pas que blocar o rescondre unas personas solament.",
 | 
			
		||||
  "confirmations.mute.confirm": "Metre en silenci",
 | 
			
		||||
  "confirmations.mute.message": "Sètz segur de voler metre en silenci {name} ?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activitat",
 | 
			
		||||
  "emoji_button.flags": "Drapèus",
 | 
			
		||||
  "emoji_button.food": "Beure e manjar",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Czy na pewno chcesz zablokować całą domenę {domain}? Zwykle lepszym rozwiązaniem jest blokada lub wyciszenie kilku użytkowników.",
 | 
			
		||||
  "confirmations.mute.confirm": "Wycisz",
 | 
			
		||||
  "confirmations.mute.message": "Czy na pewno chcesz wyciszyć {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Aktywność",
 | 
			
		||||
  "emoji_button.flags": "Flagi",
 | 
			
		||||
  "emoji_button.food": "Żywność i napoje",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "Mute",
 | 
			
		||||
  "confirmations.mute.message": "Are you sure you want to mute {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activity",
 | 
			
		||||
  "emoji_button.flags": "Flags",
 | 
			
		||||
  "emoji_button.food": "Food & Drink",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "Mute",
 | 
			
		||||
  "confirmations.mute.message": "Are you sure you want to mute {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activity",
 | 
			
		||||
  "emoji_button.flags": "Flags",
 | 
			
		||||
  "emoji_button.food": "Food & Drink",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Вы на самом деле уверены, что хотите блокировать весь {domain}? В большинстве случаев нескольких отдельных блокировок или глушений достаточно.",
 | 
			
		||||
  "confirmations.mute.confirm": "Заглушить",
 | 
			
		||||
  "confirmations.mute.message": "Вы уверены, что хотите заглушить {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Занятия",
 | 
			
		||||
  "emoji_button.flags": "Флаги",
 | 
			
		||||
  "emoji_button.food": "Еда и напитки",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "Mute",
 | 
			
		||||
  "confirmations.mute.message": "Are you sure you want to mute {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Activity",
 | 
			
		||||
  "emoji_button.flags": "Flags",
 | 
			
		||||
  "emoji_button.food": "Food & Drink",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "Sessize al",
 | 
			
		||||
  "confirmations.mute.message": "{name} kullanıcısını sessize almak istiyor musunuz?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Aktivite",
 | 
			
		||||
  "emoji_button.flags": "Bayraklar",
 | 
			
		||||
  "emoji_button.food": "Yiyecek ve İçecek",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Ви точно, точно впевнені, що хочете заблокувати весь домен {domain}? У більшості випадків для нормальної роботи краще заблокувати/заглушити лише деяких користувачів.",
 | 
			
		||||
  "confirmations.mute.confirm": "Заглушити",
 | 
			
		||||
  "confirmations.mute.message": "Ви впевнені, що хочете заглушити {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "Заняття",
 | 
			
		||||
  "emoji_button.flags": "Прапори",
 | 
			
		||||
  "emoji_button.food": "Їжа та напої",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "静音",
 | 
			
		||||
  "confirmations.mute.message": "想好了,真的要静音 {name}?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "活动",
 | 
			
		||||
  "emoji_button.flags": "旗帜",
 | 
			
		||||
  "emoji_button.food": "食物和饮料",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.",
 | 
			
		||||
  "confirmations.mute.confirm": "靜音",
 | 
			
		||||
  "confirmations.mute.message": "你確定要將{name}靜音嗎?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "活動",
 | 
			
		||||
  "emoji_button.flags": "旗幟",
 | 
			
		||||
  "emoji_button.food": "飲飲食食",
 | 
			
		||||
 
 | 
			
		||||
@@ -55,6 +55,8 @@
 | 
			
		||||
  "confirmations.domain_block.message": "你真的真的確定要封鎖整個 {domain} ?多數情況下,比較推薦封鎖或消音幾個特定目標就好。",
 | 
			
		||||
  "confirmations.mute.confirm": "消音",
 | 
			
		||||
  "confirmations.mute.message": "你確定要消音 {name} ?",
 | 
			
		||||
  "confirmations.unfollow.confirm": "Unfollow",
 | 
			
		||||
  "confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
 | 
			
		||||
  "emoji_button.activity": "活動",
 | 
			
		||||
  "emoji_button.flags": "旗幟",
 | 
			
		||||
  "emoji_button.food": "食物與飲料",
 | 
			
		||||
 
 | 
			
		||||
@@ -19,6 +19,7 @@ class UserSettingsDecorator
 | 
			
		||||
    user.settings['interactions'] = merged_interactions
 | 
			
		||||
    user.settings['default_privacy'] = default_privacy_preference
 | 
			
		||||
    user.settings['default_sensitive'] = default_sensitive_preference
 | 
			
		||||
    user.settings['unfollow_modal'] = unfollow_modal_preference
 | 
			
		||||
    user.settings['boost_modal'] = boost_modal_preference
 | 
			
		||||
    user.settings['delete_modal'] = delete_modal_preference
 | 
			
		||||
    user.settings['auto_play_gif'] = auto_play_gif_preference
 | 
			
		||||
@@ -42,6 +43,10 @@ class UserSettingsDecorator
 | 
			
		||||
    boolean_cast_setting 'setting_default_sensitive'
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def unfollow_modal_preference
 | 
			
		||||
    boolean_cast_setting 'setting_unfollow_modal'
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def boost_modal_preference
 | 
			
		||||
    boolean_cast_setting 'setting_boost_modal'
 | 
			
		||||
  end
 | 
			
		||||
 
 | 
			
		||||
@@ -83,6 +83,10 @@ class User < ApplicationRecord
 | 
			
		||||
    settings.default_sensitive
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def setting_unfollow_modal
 | 
			
		||||
    settings.unfollow_modal
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def setting_boost_modal
 | 
			
		||||
    settings.boost_modal
 | 
			
		||||
  end
 | 
			
		||||
 
 | 
			
		||||
@@ -15,6 +15,7 @@ class InitialStateSerializer < ActiveModel::Serializer
 | 
			
		||||
 | 
			
		||||
    if object.current_account
 | 
			
		||||
      store[:me]             = object.current_account.id
 | 
			
		||||
      store[:unfollow_modal] = object.current_account.user.setting_unfollow_modal
 | 
			
		||||
      store[:boost_modal]    = object.current_account.user.setting_boost_modal
 | 
			
		||||
      store[:delete_modal]   = object.current_account.user.setting_delete_modal
 | 
			
		||||
      store[:auto_play_gif]  = object.current_account.user.setting_auto_play_gif
 | 
			
		||||
 
 | 
			
		||||
@@ -44,6 +44,7 @@
 | 
			
		||||
    = f.input :setting_noindex, as: :boolean, wrapper: :with_label
 | 
			
		||||
 | 
			
		||||
  .fields-group
 | 
			
		||||
    = f.input :setting_unfollow_modal, as: :boolean, wrapper: :with_label
 | 
			
		||||
    = f.input :setting_boost_modal, as: :boolean, wrapper: :with_label
 | 
			
		||||
    = f.input :setting_delete_modal, as: :boolean, wrapper: :with_label
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -42,6 +42,7 @@ en:
 | 
			
		||||
        setting_default_sensitive: Always mark media as sensitive
 | 
			
		||||
        setting_delete_modal: Show confirmation dialog before deleting a toot
 | 
			
		||||
        setting_system_font_ui: Use system's default font
 | 
			
		||||
        setting_unfollow_modal: Show confirmation dialog before unfollowing someone
 | 
			
		||||
        setting_noindex: Opt-out of search engine indexing
 | 
			
		||||
        severity: Severity
 | 
			
		||||
        type: Import type
 | 
			
		||||
 
 | 
			
		||||
@@ -35,6 +35,13 @@ describe UserSettingsDecorator do
 | 
			
		||||
      expect(user.settings['default_sensitive']).to eq true
 | 
			
		||||
    end
 | 
			
		||||
 | 
			
		||||
    it 'updates the user settings value for unfollow modal' do
 | 
			
		||||
      values = { 'setting_unfollow_modal' => '0' }
 | 
			
		||||
 | 
			
		||||
      settings.update(values)
 | 
			
		||||
      expect(user.settings['unfollow_modal']).to eq false
 | 
			
		||||
    end
 | 
			
		||||
 | 
			
		||||
    it 'updates the user settings value for boost modal' do
 | 
			
		||||
      values = { 'setting_boost_modal' => '1' }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -219,6 +219,14 @@ RSpec.describe User, type: :model do
 | 
			
		||||
    end
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  describe '#setting_unfollow_modal' do
 | 
			
		||||
    it 'returns unfollow modal setting' do
 | 
			
		||||
      user = Fabricate(:user)
 | 
			
		||||
      user.settings[:unfollow_modal] = true
 | 
			
		||||
      expect(user.setting_unfollow_modal).to eq true
 | 
			
		||||
    end
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  describe '#setting_delete_modal' do
 | 
			
		||||
    it 'returns delete modal setting' do
 | 
			
		||||
      user = Fabricate(:user)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user