Conflicts: - app/controllers/admin/base_controller.rb - app/controllers/filters_controller.rb - app/controllers/invites_controller.rb - app/controllers/settings/deletes_controller.rb - app/controllers/settings/exports_controller.rb - app/controllers/settings/follower_domains_controller.rb - app/controllers/settings/migrations_controller.rb - app/controllers/settings/notifications_controller.rb - app/controllers/settings/preferences_controller.rb - app/controllers/settings/two_factor_authentication/recovery_codes_controller.rb - app/javascript/packs/public.js - app/views/settings/profiles/show.html.haml Conflicts were mostly due to the addition of body classes to the settings page, this was caused by rejecting upstream changes for most of those files and modifying Settings::BaseController instead. Another cause of conflicts was the deletion of client-side checking of display name / bio length, this was modified in app/javascript/core/settings.js instead.
		
			
				
	
	
		
			62 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
//  This file will be loaded on settings pages, regardless of theme.
 | 
						|
 | 
						|
const { delegate } = require('rails-ujs');
 | 
						|
import emojify from '../mastodon/features/emoji/emoji';
 | 
						|
 | 
						|
delegate(document, '#account_display_name', 'input', ({ target }) => {
 | 
						|
  const name = document.querySelector('.card .display-name strong');
 | 
						|
 | 
						|
  if (name) {
 | 
						|
    name.innerHTML = emojify(target.value);
 | 
						|
  }
 | 
						|
});
 | 
						|
 | 
						|
delegate(document, '#account_avatar', 'change', ({ target }) => {
 | 
						|
  const avatar = document.querySelector('.card .avatar img');
 | 
						|
  const [file] = target.files || [];
 | 
						|
  const url = file ? URL.createObjectURL(file) : avatar.dataset.originalSrc;
 | 
						|
 | 
						|
  avatar.src = url;
 | 
						|
});
 | 
						|
 | 
						|
delegate(document, '#account_header', 'change', ({ target }) => {
 | 
						|
  const header = document.querySelector('.card .card__img img');
 | 
						|
  const [file] = target.files || [];
 | 
						|
  const url = file ? URL.createObjectURL(file) : header.dataset.originalSrc;
 | 
						|
 | 
						|
  header.src = url;
 | 
						|
});
 | 
						|
 | 
						|
delegate(document, '#account_locked', 'change', ({ target }) => {
 | 
						|
  const lock = document.querySelector('.card .display-name i');
 | 
						|
 | 
						|
  if (target.checked) {
 | 
						|
    lock.style.display = 'inline';
 | 
						|
  } else {
 | 
						|
    lock.style.display = 'none';
 | 
						|
  }
 | 
						|
});
 | 
						|
 | 
						|
delegate(document, '.input-copy input', 'click', ({ target }) => {
 | 
						|
  target.select();
 | 
						|
});
 | 
						|
 | 
						|
delegate(document, '.input-copy button', 'click', ({ target }) => {
 | 
						|
  const input = target.parentNode.querySelector('.input-copy__wrapper input');
 | 
						|
 | 
						|
  input.focus();
 | 
						|
  input.select();
 | 
						|
 | 
						|
  try {
 | 
						|
    if (document.execCommand('copy')) {
 | 
						|
      input.blur();
 | 
						|
      target.parentNode.classList.add('copied');
 | 
						|
 | 
						|
    setTimeout(() => {
 | 
						|
        target.parentNode.classList.remove('copied');
 | 
						|
      }, 700);
 | 
						|
    }
 | 
						|
  } catch (err) {
 | 
						|
    console.error(err);
 | 
						|
  }
 | 
						|
});
 |