1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- class @AgentShowPage
- constructor: ->
- $(".agent-show #show-tabs a[href='#logs'], #logs .refresh").on "click", @fetchLogs
- $(".agent-show #logs .clear").on "click", @clearLogs
- $(".agent-show #memory .clear").on "click", @clearMemory
- # Trigger tabs when navigated to.
- if tab = window.location.href.match(/tab=(\w+)\b/i)?[1]
- if tab in ["details", "logs"]
- $(".agent-show .nav-pills li a[href='##{tab}']").click()
- fetchLogs: (e) ->
- agentId = $(e.target).closest("[data-agent-id]").data("agent-id")
- e.preventDefault()
- $("#logs .spinner").show()
- $("#logs .refresh, #logs .clear").hide()
- $.get "/agents/#{agentId}/logs", (html) =>
- $("#logs .logs").html html
- $("#logs .logs .show-log-details").each ->
- $button = $(this)
- $button.on 'click', (e) ->
- e.preventDefault()
- Utils.showDynamicModal '<pre></pre>',
- title: $button.data('modal-title'),
- body: (body) ->
- $(body).find('pre').text $button.data('modal-content')
- $("#logs .spinner").stop(true, true).fadeOut ->
- $("#logs .refresh, #logs .clear").show()
- clearLogs: (e) ->
- if confirm("Are you sure you want to clear all logs for this Agent?")
- agentId = $(e.target).closest("[data-agent-id]").data("agent-id")
- e.preventDefault()
- $("#logs .spinner").show()
- $("#logs .refresh, #logs .clear").hide()
- $.post "/agents/#{agentId}/logs/clear", { "_method": "DELETE" }, (html) =>
- $("#logs .logs").html html
- $("#show-tabs li a.recent-errors").removeClass 'recent-errors'
- $("#logs .spinner").stop(true, true).fadeOut ->
- $("#logs .refresh, #logs .clear").show()
- clearMemory: (e) ->
- if confirm("Are you sure you want to clear memory of this Agent?")
- agentId = $(e.target).closest("[data-agent-id]").data("agent-id")
- e.preventDefault()
- $("#memory .spinner").css(display: 'inline-block')
- $("#memory .clear").hide()
- $.post "/agents/#{agentId}/memory", { "_method": "DELETE" }
- .done ->
- $("#memory .spinner").fadeOut ->
- $("#memory + .memory").text "{\n}\n"
- .fail ->
- $("#memory .spinner").fadeOut ->
- $("#memory .clear").css(display: 'inline-block')
- $ ->
- Utils.registerPage(AgentShowPage, forPathsMatching: /^agents\/\d+/)
|