Merge commit 'bc75e62ca6
' into kb_migration
This commit is contained in:
commit
646e3a6d89
13 changed files with 148 additions and 144 deletions
4
.github/workflows/test-js.yml
vendored
4
.github/workflows/test-js.yml
vendored
|
@ -9,6 +9,8 @@ on:
|
||||||
- '.nvmrc'
|
- '.nvmrc'
|
||||||
- '**/*.js'
|
- '**/*.js'
|
||||||
- '**/*.jsx'
|
- '**/*.jsx'
|
||||||
|
- '**/*.ts'
|
||||||
|
- '**/*.tsx'
|
||||||
- '**/*.snap'
|
- '**/*.snap'
|
||||||
- '.github/workflows/test-js.yml'
|
- '.github/workflows/test-js.yml'
|
||||||
|
|
||||||
|
@ -19,6 +21,8 @@ on:
|
||||||
- '.nvmrc'
|
- '.nvmrc'
|
||||||
- '**/*.js'
|
- '**/*.js'
|
||||||
- '**/*.jsx'
|
- '**/*.jsx'
|
||||||
|
- '**/*.ts'
|
||||||
|
- '**/*.tsx'
|
||||||
- '**/*.snap'
|
- '**/*.snap'
|
||||||
- '.github/workflows/test-js.yml'
|
- '.github/workflows/test-js.yml'
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
exports[`<AvatarOverlay renders a overlay avatar 1`] = `
|
exports[`<AvatarOverlay renders a overlay avatar 1`] = `
|
||||||
<div
|
<div
|
||||||
className="account__avatar-overlay"
|
className="account__avatar-overlay"
|
||||||
|
onMouseEnter={[Function]}
|
||||||
|
onMouseLeave={[Function]}
|
||||||
style={
|
style={
|
||||||
{
|
{
|
||||||
"height": 46,
|
"height": 46,
|
||||||
|
@ -15,8 +17,6 @@ exports[`<AvatarOverlay renders a overlay avatar 1`] = `
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="account__avatar"
|
className="account__avatar"
|
||||||
onMouseEnter={[Function]}
|
|
||||||
onMouseLeave={[Function]}
|
|
||||||
style={
|
style={
|
||||||
{
|
{
|
||||||
"height": "36px",
|
"height": "36px",
|
||||||
|
@ -35,8 +35,6 @@ exports[`<AvatarOverlay renders a overlay avatar 1`] = `
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="account__avatar"
|
className="account__avatar"
|
||||||
onMouseEnter={[Function]}
|
|
||||||
onMouseLeave={[Function]}
|
|
||||||
style={
|
style={
|
||||||
{
|
{
|
||||||
"height": "24px",
|
"height": "24px",
|
||||||
|
|
|
@ -1,76 +0,0 @@
|
||||||
import React from 'react';
|
|
||||||
import PropTypes from 'prop-types';
|
|
||||||
import ShortNumber from 'mastodon/components/short_number';
|
|
||||||
import TransitionMotion from 'react-motion/lib/TransitionMotion';
|
|
||||||
import spring from 'react-motion/lib/spring';
|
|
||||||
import { reduceMotion } from 'mastodon/initial_state';
|
|
||||||
|
|
||||||
const obfuscatedCount = count => {
|
|
||||||
if (count < 0) {
|
|
||||||
return 0;
|
|
||||||
} else if (count <= 1) {
|
|
||||||
return count;
|
|
||||||
} else {
|
|
||||||
return '1+';
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default class AnimatedNumber extends React.PureComponent {
|
|
||||||
|
|
||||||
static propTypes = {
|
|
||||||
value: PropTypes.number.isRequired,
|
|
||||||
obfuscate: PropTypes.bool,
|
|
||||||
};
|
|
||||||
|
|
||||||
state = {
|
|
||||||
direction: 1,
|
|
||||||
};
|
|
||||||
|
|
||||||
componentWillReceiveProps (nextProps) {
|
|
||||||
if (nextProps.value > this.props.value) {
|
|
||||||
this.setState({ direction: 1 });
|
|
||||||
} else if (nextProps.value < this.props.value) {
|
|
||||||
this.setState({ direction: -1 });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
willEnter = () => {
|
|
||||||
const { direction } = this.state;
|
|
||||||
|
|
||||||
return { y: -1 * direction };
|
|
||||||
};
|
|
||||||
|
|
||||||
willLeave = () => {
|
|
||||||
const { direction } = this.state;
|
|
||||||
|
|
||||||
return { y: spring(1 * direction, { damping: 35, stiffness: 400 }) };
|
|
||||||
};
|
|
||||||
|
|
||||||
render () {
|
|
||||||
const { value, obfuscate } = this.props;
|
|
||||||
const { direction } = this.state;
|
|
||||||
|
|
||||||
if (reduceMotion) {
|
|
||||||
return obfuscate ? obfuscatedCount(value) : <ShortNumber value={value} />;
|
|
||||||
}
|
|
||||||
|
|
||||||
const styles = [{
|
|
||||||
key: `${value}`,
|
|
||||||
data: value,
|
|
||||||
style: { y: spring(0, { damping: 35, stiffness: 400 }) },
|
|
||||||
}];
|
|
||||||
|
|
||||||
return (
|
|
||||||
<TransitionMotion styles={styles} willEnter={this.willEnter} willLeave={this.willLeave}>
|
|
||||||
{items => (
|
|
||||||
<span className='animated-number'>
|
|
||||||
{items.map(({ key, data, style }) => (
|
|
||||||
<span key={key} style={{ position: (direction * style.y) > 0 ? 'absolute' : 'static', transform: `translateY(${style.y * 100}%)` }}>{obfuscate ? obfuscatedCount(data) : <ShortNumber value={data} />}</span>
|
|
||||||
))}
|
|
||||||
</span>
|
|
||||||
)}
|
|
||||||
</TransitionMotion>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
58
app/javascript/mastodon/components/animated_number.tsx
Normal file
58
app/javascript/mastodon/components/animated_number.tsx
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
import React, { useCallback, useState } from 'react';
|
||||||
|
import ShortNumber from './short_number';
|
||||||
|
import { TransitionMotion, spring } from 'react-motion';
|
||||||
|
import { reduceMotion } from '../initial_state';
|
||||||
|
|
||||||
|
const obfuscatedCount = (count: number) => {
|
||||||
|
if (count < 0) {
|
||||||
|
return 0;
|
||||||
|
} else if (count <= 1) {
|
||||||
|
return count;
|
||||||
|
} else {
|
||||||
|
return '1+';
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
value: number;
|
||||||
|
obfuscate?: boolean;
|
||||||
|
}
|
||||||
|
export const AnimatedNumber: React.FC<Props> = ({
|
||||||
|
value,
|
||||||
|
obfuscate,
|
||||||
|
})=> {
|
||||||
|
const [previousValue, setPreviousValue] = useState(value);
|
||||||
|
const [direction, setDirection] = useState<1|-1>(1);
|
||||||
|
|
||||||
|
if (previousValue !== value) {
|
||||||
|
setPreviousValue(value);
|
||||||
|
setDirection(value > previousValue ? 1 : -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
const willEnter = useCallback(() => ({ y: -1 * direction }), [direction]);
|
||||||
|
const willLeave = useCallback(() => ({ y: spring(1 * direction, { damping: 35, stiffness: 400 }) }), [direction]);
|
||||||
|
|
||||||
|
if (reduceMotion) {
|
||||||
|
return obfuscate ? <>{obfuscatedCount(value)}</> : <ShortNumber value={value} />;
|
||||||
|
}
|
||||||
|
|
||||||
|
const styles = [{
|
||||||
|
key: `${value}`,
|
||||||
|
data: value,
|
||||||
|
style: { y: spring(0, { damping: 35, stiffness: 400 }) },
|
||||||
|
}];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<TransitionMotion styles={styles} willEnter={willEnter} willLeave={willLeave}>
|
||||||
|
{items => (
|
||||||
|
<span className='animated-number'>
|
||||||
|
{items.map(({ key, data, style }) => (
|
||||||
|
<span key={key} style={{ position: (direction * style.y) > 0 ? 'absolute' : 'static', transform: `translateY(${style.y * 100}%)` }}>{obfuscate ? obfuscatedCount(data) : <ShortNumber value={data} />}</span>
|
||||||
|
))}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</TransitionMotion>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default AnimatedNumber;
|
|
@ -1,51 +0,0 @@
|
||||||
import React from 'react';
|
|
||||||
import PropTypes from 'prop-types';
|
|
||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
||||||
import { autoPlayGif } from '../initial_state';
|
|
||||||
import Avatar from './avatar';
|
|
||||||
|
|
||||||
export default class AvatarOverlay extends React.PureComponent {
|
|
||||||
|
|
||||||
static propTypes = {
|
|
||||||
account: ImmutablePropTypes.map.isRequired,
|
|
||||||
friend: ImmutablePropTypes.map.isRequired,
|
|
||||||
animate: PropTypes.bool,
|
|
||||||
size: PropTypes.number,
|
|
||||||
baseSize: PropTypes.number,
|
|
||||||
overlaySize: PropTypes.number,
|
|
||||||
};
|
|
||||||
|
|
||||||
static defaultProps = {
|
|
||||||
animate: autoPlayGif,
|
|
||||||
size: 46,
|
|
||||||
baseSize: 36,
|
|
||||||
overlaySize: 24,
|
|
||||||
};
|
|
||||||
|
|
||||||
state = {
|
|
||||||
hovering: false,
|
|
||||||
};
|
|
||||||
|
|
||||||
handleMouseEnter = () => {
|
|
||||||
if (this.props.animate) return;
|
|
||||||
this.setState({ hovering: true });
|
|
||||||
};
|
|
||||||
|
|
||||||
handleMouseLeave = () => {
|
|
||||||
if (this.props.animate) return;
|
|
||||||
this.setState({ hovering: false });
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { account, friend, animate, size, baseSize, overlaySize } = this.props;
|
|
||||||
const { hovering } = this.state;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='account__avatar-overlay' style={{ width: size, height: size }}>
|
|
||||||
<div className='account__avatar-overlay-base'><Avatar animate={hovering || animate} account={account} size={baseSize} /></div>
|
|
||||||
<div className='account__avatar-overlay-overlay'><Avatar animate={hovering || animate} account={friend} size={overlaySize} /></div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
51
app/javascript/mastodon/components/avatar_overlay.tsx
Normal file
51
app/javascript/mastodon/components/avatar_overlay.tsx
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
import React from 'react';
|
||||||
|
import type { Account } from '../../types/resources';
|
||||||
|
import { useHovering } from '../../hooks/useHovering';
|
||||||
|
import { autoPlayGif } from '../initial_state';
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
account: Account;
|
||||||
|
friend: Account;
|
||||||
|
size?: number;
|
||||||
|
baseSize?: number;
|
||||||
|
overlaySize?: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const AvatarOverlay: React.FC<Props> = ({
|
||||||
|
account,
|
||||||
|
friend,
|
||||||
|
size = 46,
|
||||||
|
baseSize = 36,
|
||||||
|
overlaySize = 24,
|
||||||
|
}) => {
|
||||||
|
const { hovering, handleMouseEnter, handleMouseLeave } = useHovering(autoPlayGif);
|
||||||
|
const accountSrc = hovering ? account?.get('avatar') : account?.get('avatar_static');
|
||||||
|
const friendSrc = hovering ? friend?.get('avatar') : friend?.get('avatar_static');
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className='account__avatar-overlay' style={{ width: size, height: size }}
|
||||||
|
onMouseEnter={handleMouseEnter}
|
||||||
|
onMouseLeave={handleMouseLeave}
|
||||||
|
>
|
||||||
|
<div className='account__avatar-overlay-base'>
|
||||||
|
<div
|
||||||
|
className='account__avatar'
|
||||||
|
style={{ width: `${baseSize}px`, height: `${baseSize}px` }}
|
||||||
|
>
|
||||||
|
{accountSrc && <img src={accountSrc} alt={account?.get('acct')} />}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className='account__avatar-overlay-overlay'>
|
||||||
|
<div
|
||||||
|
className='account__avatar'
|
||||||
|
style={{ width: `${overlaySize}px`, height: `${overlaySize}px` }}
|
||||||
|
>
|
||||||
|
{friendSrc && <img src={friendSrc} alt={friend?.get('acct')} />}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default AvatarOverlay;
|
|
@ -131,4 +131,4 @@ class FilterModal extends ImmutablePureComponent {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default connect(injectIntl(FilterModal));
|
export default connect()(injectIntl(FilterModal));
|
||||||
|
|
|
@ -14,7 +14,7 @@ class NotificationMailer < ApplicationMailer
|
||||||
|
|
||||||
locale_for_account(@me) do
|
locale_for_account(@me) do
|
||||||
thread_by_conversation(@status.conversation)
|
thread_by_conversation(@status.conversation)
|
||||||
mail to: @me.user.email, subject: I18n.t('notification_mailer.mention.subject', name: @status.account.acct)
|
mail to: email_address_with_name(@me.user.email, @me.user.account.username), subject: I18n.t('notification_mailer.mention.subject', name: @status.account.acct)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ class NotificationMailer < ApplicationMailer
|
||||||
return unless @me.user.functional?
|
return unless @me.user.functional?
|
||||||
|
|
||||||
locale_for_account(@me) do
|
locale_for_account(@me) do
|
||||||
mail to: @me.user.email, subject: I18n.t('notification_mailer.follow.subject', name: @account.acct)
|
mail to: email_address_with_name(@me.user.email, @me.user.account.username), subject: I18n.t('notification_mailer.follow.subject', name: @account.acct)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ class NotificationMailer < ApplicationMailer
|
||||||
|
|
||||||
locale_for_account(@me) do
|
locale_for_account(@me) do
|
||||||
thread_by_conversation(@status.conversation)
|
thread_by_conversation(@status.conversation)
|
||||||
mail to: @me.user.email, subject: I18n.t('notification_mailer.favourite.subject', name: @account.acct)
|
mail to: email_address_with_name(@me.user.email, @me.user.account.username), subject: I18n.t('notification_mailer.favourite.subject', name: @account.acct)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ class NotificationMailer < ApplicationMailer
|
||||||
|
|
||||||
locale_for_account(@me) do
|
locale_for_account(@me) do
|
||||||
thread_by_conversation(@status.conversation)
|
thread_by_conversation(@status.conversation)
|
||||||
mail to: @me.user.email, subject: I18n.t('notification_mailer.reblog.subject', name: @account.acct)
|
mail to: email_address_with_name(@me.user.email, @me.user.account.username), subject: I18n.t('notification_mailer.reblog.subject', name: @account.acct)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ class NotificationMailer < ApplicationMailer
|
||||||
return unless @me.user.functional?
|
return unless @me.user.functional?
|
||||||
|
|
||||||
locale_for_account(@me) do
|
locale_for_account(@me) do
|
||||||
mail to: @me.user.email, subject: I18n.t('notification_mailer.follow_request.subject', name: @account.acct)
|
mail to: email_address_with_name(@me.user.email, @me.user.account.username), subject: I18n.t('notification_mailer.follow_request.subject', name: @account.acct)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,7 @@ class AccountFilter
|
||||||
when 'by_domain'
|
when 'by_domain'
|
||||||
Account.where(domain: value.to_s.strip)
|
Account.where(domain: value.to_s.strip)
|
||||||
when 'username'
|
when 'username'
|
||||||
Account.matches_username(value.to_s.strip)
|
Account.matches_username(value.to_s.strip.delete_prefix('@'))
|
||||||
when 'display_name'
|
when 'display_name'
|
||||||
Account.matches_display_name(value.to_s.strip)
|
Account.matches_display_name(value.to_s.strip)
|
||||||
when 'email'
|
when 'email'
|
||||||
|
|
|
@ -7,6 +7,7 @@ class NotifyService < BaseService
|
||||||
admin.report
|
admin.report
|
||||||
admin.sign_up
|
admin.sign_up
|
||||||
update
|
update
|
||||||
|
poll
|
||||||
).freeze
|
).freeze
|
||||||
|
|
||||||
def call(recipient, type, activity)
|
def call(recipient, type, activity)
|
||||||
|
|
|
@ -12,7 +12,7 @@ const config = {
|
||||||
setupFiles: ['raf/polyfill'],
|
setupFiles: ['raf/polyfill'],
|
||||||
setupFilesAfterEnv: ['<rootDir>/app/javascript/mastodon/test_setup.js'],
|
setupFilesAfterEnv: ['<rootDir>/app/javascript/mastodon/test_setup.js'],
|
||||||
collectCoverageFrom: [
|
collectCoverageFrom: [
|
||||||
'app/javascript/mastodon/**/*.js',
|
'app/javascript/mastodon/**/*.{js,jsx,ts,tsx}',
|
||||||
'!app/javascript/mastodon/features/emoji/emoji_compressed.js',
|
'!app/javascript/mastodon/features/emoji/emoji_compressed.js',
|
||||||
'!app/javascript/mastodon/locales/locale-data/*.js',
|
'!app/javascript/mastodon/locales/locale-data/*.js',
|
||||||
'!app/javascript/mastodon/service_worker/entry.js',
|
'!app/javascript/mastodon/service_worker/entry.js',
|
||||||
|
|
|
@ -29,7 +29,7 @@ RSpec.describe NotificationMailer, type: :mailer do
|
||||||
|
|
||||||
it 'renders the headers' do
|
it 'renders the headers' do
|
||||||
expect(mail.subject).to eq('You were mentioned by bob')
|
expect(mail.subject).to eq('You were mentioned by bob')
|
||||||
expect(mail.to).to eq([receiver.email])
|
expect(mail[:to].value).to eq("#{receiver.account.username} <#{receiver.email}>")
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'renders the body' do
|
it 'renders the body' do
|
||||||
|
@ -46,7 +46,7 @@ RSpec.describe NotificationMailer, type: :mailer do
|
||||||
|
|
||||||
it 'renders the headers' do
|
it 'renders the headers' do
|
||||||
expect(mail.subject).to eq('bob is now following you')
|
expect(mail.subject).to eq('bob is now following you')
|
||||||
expect(mail.to).to eq([receiver.email])
|
expect(mail[:to].value).to eq("#{receiver.account.username} <#{receiver.email}>")
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'renders the body' do
|
it 'renders the body' do
|
||||||
|
@ -62,7 +62,7 @@ RSpec.describe NotificationMailer, type: :mailer do
|
||||||
|
|
||||||
it 'renders the headers' do
|
it 'renders the headers' do
|
||||||
expect(mail.subject).to eq('bob favourited your post')
|
expect(mail.subject).to eq('bob favourited your post')
|
||||||
expect(mail.to).to eq([receiver.email])
|
expect(mail[:to].value).to eq("#{receiver.account.username} <#{receiver.email}>")
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'renders the body' do
|
it 'renders the body' do
|
||||||
|
@ -79,7 +79,7 @@ RSpec.describe NotificationMailer, type: :mailer do
|
||||||
|
|
||||||
it 'renders the headers' do
|
it 'renders the headers' do
|
||||||
expect(mail.subject).to eq('bob boosted your post')
|
expect(mail.subject).to eq('bob boosted your post')
|
||||||
expect(mail.to).to eq([receiver.email])
|
expect(mail[:to].value).to eq("#{receiver.account.username} <#{receiver.email}>")
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'renders the body' do
|
it 'renders the body' do
|
||||||
|
@ -96,7 +96,7 @@ RSpec.describe NotificationMailer, type: :mailer do
|
||||||
|
|
||||||
it 'renders the headers' do
|
it 'renders the headers' do
|
||||||
expect(mail.subject).to eq('Pending follower: bob')
|
expect(mail.subject).to eq('Pending follower: bob')
|
||||||
expect(mail.to).to eq([receiver.email])
|
expect(mail[:to].value).to eq("#{receiver.account.username} <#{receiver.email}>")
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'renders the body' do
|
it 'renders the body' do
|
||||||
|
|
|
@ -44,4 +44,23 @@ describe AccountFilter do
|
||||||
expect(filter.results).to match_array [remote_account_one]
|
expect(filter.results).to match_array [remote_account_one]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe 'with username' do
|
||||||
|
let!(:local_account) { Fabricate(:account, domain: nil, username: 'validUserName') }
|
||||||
|
|
||||||
|
it 'works with @ at the beginning of the username' do
|
||||||
|
filter = described_class.new(username: '@validUserName')
|
||||||
|
expect(filter.results).to match_array [local_account]
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'does not work with more than one @ at the beginning of the username' do
|
||||||
|
filter = described_class.new(username: '@@validUserName')
|
||||||
|
expect(filter.results).to_not match_array [local_account]
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'does not work with @ outside the beginning of the username' do
|
||||||
|
filter = described_class.new(username: 'validUserName@')
|
||||||
|
expect(filter.results).to_not match_array [local_account]
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue