Skip to content
Snippets Groups Projects
Commit 9ff89068 authored by Arnaud Levy's avatar Arnaud Levy
Browse files

Better contact details

parent aaaa7a2a
No related branches found
No related tags found
No related merge requests found
class ContactDetails::Base
attr_accessor :url, :label
def initialize(string)
@string = string
prepare_url
prepare_label
end
protected
def prepare_label
@label = @string
end
def prepare_url
@url = @string
end
end
\ No newline at end of file
class ContactDetails::Linkedin < ContactDetails::Website
ROOT = 'www.linkedin.com/in/'
protected
def prepare_label
super
@label.remove! ROOT
@label.chomp! '/'
end
end
\ No newline at end of file
class ContactDetails::Twitter < ContactDetails::Website
ROOT = 'twitter.com/'
protected
def prepare_label
super
@label.remove! ROOT
end
end
\ No newline at end of file
class ContactDetails::Website < ContactDetails::Base
PROTOCOL = 'https://'
protected
def prepare_url
@url = @string
@url = "#{PROTOCOL}#{@url}" unless @url.start_with? PROTOCOL
end
def prepare_label
@label = @url.remove PROTOCOL
end
end
\ No newline at end of file
......@@ -19,6 +19,17 @@ linkedin: >-
<%= @about.linkedin %>
website: >-
<%= @about.url %>
contact_details:
website: <% detail = ContactDetails::Website.new @about.url %>
label: <%= detail.label %>
url: <%= detail.url %>
linkedin: <% detail = ContactDetails::Linkedin.new @about.linkedin %>
label: <%= detail.label %>
url: <%= detail.url %>
twitter: <% detail = ContactDetails::Twitter.new @about.twitter %>
label: <%= detail.label %>
url: <%= detail.url %>
<% if @about.best_picture.attached? %>
image: "<%= @about.best_picture.blob.id %>"
<% end %>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment