mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
49 lines
1.2 KiB
CoffeeScript
49 lines
1.2 KiB
CoffeeScript
|
define [
|
||
|
"base"
|
||
|
], (App) ->
|
||
|
|
||
|
App.factory "algoliawiki", ->
|
||
|
client = new AlgoliaSearch("SK53GL4JLY", "e398f35d3074fde57ca6d6c88d8be37c")
|
||
|
index = client.initIndex("lean-wiki-index")
|
||
|
return index
|
||
|
|
||
|
App.controller "SearchWikiController", ($scope, algoliawiki, _) ->
|
||
|
algolia = algoliawiki
|
||
|
$scope.hits = []
|
||
|
|
||
|
$scope.clearSearchText = ->
|
||
|
$scope.searchQueryText = ""
|
||
|
updateHits []
|
||
|
|
||
|
$scope.safeApply = (fn)->
|
||
|
phase = $scope.$root.$$phase
|
||
|
if(phase == '$apply' || phase == '$digest')
|
||
|
$scope.$eval(fn)
|
||
|
else
|
||
|
$scope.$apply(fn)
|
||
|
|
||
|
buildHitViewModel = (hit)->
|
||
|
page_underscored = hit.pageName.replace(/\s/g,'_')
|
||
|
section_underscored = hit.sectionName.replace(/\s/g,'_')
|
||
|
result =
|
||
|
name : hit._highlightResult.pageName.value + " - " + hit._highlightResult.sectionName.value
|
||
|
url :"/learn/#{page_underscored}##{section_underscored}"
|
||
|
console.log result
|
||
|
return result
|
||
|
|
||
|
updateHits = (hits)->
|
||
|
$scope.safeApply ->
|
||
|
$scope.hits = hits
|
||
|
|
||
|
$scope.search = ->
|
||
|
query = $scope.searchQueryText
|
||
|
if !query? or query.length == 0
|
||
|
updateHits []
|
||
|
return
|
||
|
|
||
|
algolia.search query, (err, response)->
|
||
|
if response.hits.length == 0
|
||
|
updateHits []
|
||
|
else
|
||
|
hits = _.map response.hits, buildHitViewModel
|
||
|
updateHits hits
|