forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
About page contact email (mastodon#1839)
* Correct site_contact_email typo * Separate about more page into partials, add specs
- Loading branch information
1 parent
7b10794
commit 3b8908c
Showing
7 changed files
with
90 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.panel | ||
.panel-header= t 'about.contact' | ||
.panel-body | ||
- if contact.contact_account | ||
.owner | ||
.avatar= image_tag contact.contact_account.avatar.url | ||
.name | ||
= link_to TagManager.instance.url_for(contact.contact_account) do | ||
%span.display_name.emojify= display_name(contact.contact_account) | ||
%span.username= "@#{contact.contact_account.acct}" | ||
|
||
- if contact.site_contact_email | ||
.contact-email | ||
= t 'about.business_email' | ||
%strong= contact.site_contact_email |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.panel | ||
.panel-header= t 'about.links' | ||
.panel-list | ||
%ul | ||
- if user_signed_in? | ||
%li= link_to t('about.get_started'), root_path | ||
- else | ||
%li= link_to t('about.get_started'), new_user_registration_path | ||
%li= link_to t('auth.login'), new_user_session_path | ||
%li= link_to t('about.terms'), terms_path | ||
%li= link_to t('about.source_code'), 'https://github.com/tootsuite/mastodon' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'rails_helper' | ||
|
||
describe 'about/_contact.html.haml' do | ||
describe 'the contact account' do | ||
it 'shows info when account is present' do | ||
account = Account.new(username: 'admin') | ||
contact = double(contact_account: account, site_contact_email: '') | ||
render 'about/contact', contact: contact | ||
|
||
expect(rendered).to have_content('@admin') | ||
end | ||
|
||
it 'does not show info when account is missing' do | ||
contact = double(contact_account: nil, site_contact_email: '') | ||
render 'about/contact', contact: contact | ||
|
||
expect(rendered).not_to have_content('@') | ||
end | ||
end | ||
|
||
describe 'the contact email' do | ||
it 'show info when email is present' do | ||
contact = double(site_contact_email: 'admin@example.com', contact_account: nil) | ||
render 'about/contact', contact: contact | ||
|
||
expect(rendered).to have_content('admin@example.com') | ||
end | ||
|
||
it 'does not show info when email is missing' do | ||
contact = double(site_contact_email: nil, contact_account: nil) | ||
render 'about/contact', contact: contact | ||
|
||
expect(rendered).not_to have_content(I18n.t('about.business_email')) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'rails_helper' | ||
|
||
describe 'about/_links.html.haml' do | ||
it 'does not show sign in link when signed in' do | ||
allow(view).to receive(:user_signed_in?).and_return(true) | ||
render | ||
|
||
expect(rendered).to have_content(I18n.t('about.get_started')) | ||
expect(rendered).not_to have_content(I18n.t('auth.login')) | ||
end | ||
|
||
it 'shows sign in link when signed out' do | ||
allow(view).to receive(:user_signed_in?).and_return(false) | ||
render | ||
|
||
expect(rendered).to have_content(I18n.t('about.get_started')) | ||
expect(rendered).to have_content(I18n.t('auth.login')) | ||
end | ||
end |