* Add some explanation to the mute modal dialog * Remove `isSubmitting` from mute modal code, this wasn't used * Refactor block modal Signed-off-by: Thibaut Girka <thib@sitedethib.com> * Refactor SCSS a bit * Put mute modal toggle to the same side as in the report dialog for consistency * Reword mute explanation * Fix mute explanation styling * Left-align all text in mute confirmation modal
		
			
				
	
	
		
			28 lines
		
	
	
		
			656 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			656 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import Immutable from 'immutable';
 | |
| 
 | |
| import {
 | |
|   MUTES_INIT_MODAL,
 | |
|   MUTES_TOGGLE_HIDE_NOTIFICATIONS,
 | |
| } from '../actions/mutes';
 | |
| 
 | |
| const initialState = Immutable.Map({
 | |
|   new: Immutable.Map({
 | |
|     account: null,
 | |
|     notifications: true,
 | |
|   }),
 | |
| });
 | |
| 
 | |
| export default function mutes(state = initialState, action) {
 | |
|   switch (action.type) {
 | |
|   case MUTES_INIT_MODAL:
 | |
|     return state.withMutations((state) => {
 | |
|       state.setIn(['new', 'account'], action.account);
 | |
|       state.setIn(['new', 'notifications'], true);
 | |
|     });
 | |
|   case MUTES_TOGGLE_HIDE_NOTIFICATIONS:
 | |
|     return state.updateIn(['new', 'notifications'], (old) => !old);
 | |
|   default:
 | |
|     return state;
 | |
|   }
 | |
| }
 |