diff --git a/app/components/homescreen/link_component.html.erb b/app/components/homescreen/link_component.html.erb new file mode 100644 index 00000000000..e5584e315d9 --- /dev/null +++ b/app/components/homescreen/link_component.html.erb @@ -0,0 +1,37 @@ +<%#-- copyright +OpenProject is an open source project management software. +Copyright (C) the OpenProject GmbH + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License version 3. + +OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +Copyright (C) 2006-2013 Jean-Philippe Lang +Copyright (C) 2010-2013 the ChiliProject Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +See COPYRIGHT and LICENSE files for more details. + +++#%> + +<%= link_to url, + class: "homescreen--links--item", + target: "_blank", + aria_label: title, + rel: "noopener" do %> + <%= op_icon(link[:icon]) %> + <%= title %> +<% end %> diff --git a/app/components/homescreen/link_component.rb b/app/components/homescreen/link_component.rb new file mode 100644 index 00000000000..f4eba4dbd18 --- /dev/null +++ b/app/components/homescreen/link_component.rb @@ -0,0 +1,58 @@ +# frozen_string_literal: true + +#-- copyright +# OpenProject is an open source project management software. +# Copyright (C) the OpenProject GmbH +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License version 3. +# +# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +# Copyright (C) 2006-2013 Jean-Philippe Lang +# Copyright (C) 2010-2013 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# +# See COPYRIGHT and LICENSE files for more details. +#++ + +module Homescreen + class LinkComponent < ApplicationComponent + include HomescreenHelper + include IconsHelper + + attr_reader :link + + def initialize(link:) + super + + @link = link + end + + def render? + link.present? + end + + private + + def url + link[:url] || OpenProject::Static::Links.url_for(link[:url_key]) + end + + def title + I18n.t(link[:label], scope: "homescreen.links") + end + end +end diff --git a/app/components/homescreen/links_component.html.erb b/app/components/homescreen/links_component.html.erb index 9cdaa99e087..fcd9921307e 100644 --- a/app/components/homescreen/links_component.html.erb +++ b/app/components/homescreen/links_component.html.erb @@ -28,18 +28,5 @@ See COPYRIGHT and LICENSE files for more details. ++#%>