Updated routes to have root point to react

• Updated:
- routes to have root point to react
This commit is contained in:
mgabdev
2020-08-06 00:20:28 -05:00
parent bf3b0554dd
commit bffc202270
3 changed files with 40 additions and 12 deletions

View File

@@ -1,14 +1,28 @@
# frozen_string_literal: true
class ReactController < ApplicationController
before_action :authenticate_user!, only: :react
before_action :set_referrer_policy_header, only: :react
before_action :set_initial_state_json, only: :react
before_action :set_data_for_meta, only: :react
before_action :authenticate_user!, only: [:react, :home]
before_action :set_referrer_policy_header, only: [:react, :home]
before_action :set_initial_state_json, only: [:react, :home]
before_action :set_data_for_meta, only: [:react, :home]
before_action :set_instance_presenter
def react
#
#
end
def home
#
end
def groupBySlug
@group = Group.where(slug: params[:groupSlug], is_archived: false).first
unless @group.nil?
return redirect_to "/groups/#{@group.id}"
end
return not_found
end
private
@@ -21,35 +35,37 @@ class ReactController < ApplicationController
@group = Group.where(id: groupIdFromPath, is_archived: false).first
elsif find_public_route_matches
return
elsif request.path.count("/") == 1 && request.path.length === 1
#
elsif request.path.count("/") == 1 && !request.path.include?("@")
acctFromPath = request.path.sub("/", "")
@account = Account.find_local!(acctFromPath)
end
end
def authenticate_user!
return if user_signed_in?
if find_public_route_matches
return
elsif find_route_matches
# if no current user, dont allow to navigate to these paths
redirect_to(homepage_path)
end
return false
end
def find_route_matches
request.path.match(/\A\/(home|shortcuts|group|groups|list|lists|notifications|tags|compose|follow_requests|admin|account|settings|filters|timeline|blocks|domain_blocks|mutes)/)
request.path.match(/\A\/(home|news|shortcuts|group|groups|list|lists|notifications|tags|compose|follow_requests|admin|account|settings|filters|timeline|blocks|domain_blocks|mutes)/)
end
def find_public_route_matches
request.path.match(/\A\/(about|search|groups|explore)/)
request.path.match(/\A\/(about|news|search|groups|explore)/)
end
def set_initial_state_json
serializable_resource = ActiveModelSerializers::SerializableResource.new(InitialStatePresenter.new(initial_state_params), serializer: InitialStateSerializer)
@initial_state_json = serializable_resource.to_json
@initial_state_json = serializable_resource.to_json
end
def initial_state_params