Skip to content

Commit

Permalink
Add card with who invited you to join when displaying rules on sign-up (
Browse files Browse the repository at this point in the history
  • Loading branch information
ClearlyClaire committed Jun 2, 2023
1 parent 94329f2 commit 0766c9a
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 16 deletions.
14 changes: 2 additions & 12 deletions app/javascript/styles/mastodon/accounts.scss
Expand Up @@ -3,11 +3,8 @@
display: block;
text-decoration: none;
color: inherit;
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);

@media screen and (max-width: $no-gap-breakpoint) {
box-shadow: none;
}
overflow: hidden;
border-radius: 4px;

&:hover,
&:active,
Expand All @@ -22,15 +19,13 @@
height: 130px;
position: relative;
background: darken($ui-base-color, 12%);
border-radius: 4px 4px 0 0;

img {
display: block;
width: 100%;
height: 100%;
margin: 0;
object-fit: cover;
border-radius: 4px 4px 0 0;
}

@media screen and (width <= 600px) {
Expand All @@ -45,11 +40,6 @@
justify-content: flex-start;
align-items: center;
background: lighten($ui-base-color, 4%);
border-radius: 0 0 4px 4px;

@media screen and (max-width: $no-gap-breakpoint) {
border-radius: 0;
}

.avatar {
flex: 0 0 auto;
Expand Down
4 changes: 4 additions & 0 deletions app/javascript/styles/mastodon/forms.scss
Expand Up @@ -137,6 +137,10 @@ code {
color: $secondary-text-color;
margin-bottom: 30px;

&.invited-by {
margin-bottom: 15px;
}

a {
color: $highlight-text-color;
}
Expand Down
6 changes: 4 additions & 2 deletions app/views/application/_card.html.haml
@@ -1,9 +1,11 @@
- account_url = local_assigns[:admin] ? admin_account_path(account.id) : ActivityPub::TagManager.instance.url_for(account)
- compact ||= false

.card.h-card
= link_to account_url, target: '_blank', rel: 'noopener noreferrer' do
.card__img
= image_tag account.header.url, alt: ''
- unless compact
.card__img
= image_tag account.header.url, alt: ''
.card__bar
.avatar
= image_tag account.avatar.url, alt: '', width: 48, height: 48, class: 'u-photo'
Expand Down
10 changes: 8 additions & 2 deletions app/views/auth/registrations/rules.html.haml
Expand Up @@ -7,8 +7,14 @@
.simple_form
= render 'auth/shared/progress', stage: 'rules'

%h1.title= t('auth.rules.title')
%p.lead= t('auth.rules.preamble', domain: site_hostname)
- if @invite.present? && @invite.autofollow?
%h1.title= t('auth.rules.title_invited')
%p.lead.invited-by= t('auth.rules.invited_by', domain: site_hostname)
= render 'application/card', account: @invite.user.account, compact: true
%p.lead= t('auth.rules.preamble_invited', domain: site_hostname)
- else
%h1.title= t('auth.rules.title')
%p.lead= t('auth.rules.preamble', domain: site_hostname)

%ol.rules-list
- @rules.each do |rule|
Expand Down
3 changes: 3 additions & 0 deletions config/locales/en.yml
Expand Up @@ -1031,8 +1031,11 @@ en:
rules:
accept: Accept
back: Back
invited_by: 'You can join %{domain} thanks to the invitation you have received from:'
preamble: These are set and enforced by the %{domain} moderators.
preamble_invited: Before you proceed, please consider the ground rules set by the moderators of %{domain}.
title: Some ground rules.
title_invited: You've been invited.
security: Security
set_new_password: Set new password
setup:
Expand Down

0 comments on commit 0766c9a

Please sign in to comment.