I'm trying to build a simple page that searches for github users and displays their followers on the page without refreshing the page. I'm using Octokit to access the Github api and Gon to create controller variables that can be accessed in js.erb files. I can access a gon variable that is set to a string, but not one that references the query params. How would I do this?
class UsersController < ApplicationController
def search
github = Octokit::Client.new(:login => 'monzelb', :password => "#{Rails.application.secrets.github_key}")
@query = params[:query]
gon.query = @query
@followers = github.followers("#{@query}")
gon.followers = @followers
@blah = "blah"
gon.blah = @blah
if @query
respond_to do |format|
format.js
format.html
end
end
end
end
users/search.js.erb
console.log(gon.followers.first.login) # => nil
console.log(gon.blah) # => "blah"
$('body').append('<li class="result media"><%= j @followers.first.login %></li><img src= "<%= j @followers.first.avatar_url %>" class="result img">');
The jquery successfully appends the first follower's image and name to the page when the form is submitted, but I need to append ALL of their followers to the page. I thought Gon would be a good way to do this, but it doesnt seem to have access to the query.