我正在使用dashing.io做一个小部件,我想根据我在json文件中收到的颜色更改jenkins作业(我从Jenkins API获得)。
即:作业已完成,我从我的json文件中获取颜色值“blue”,我希望文本在我的仪表板上的“widget jenkins”中显示为蓝色。
问题:我真的不知道如何在我的coffeescript脚本中从我的json文件中获取数据。我都不知道如何改变CSS。
我的json文件是这样的:
{
"assignedLabels" : [
{
}
],
"mode" : "NORMAL",
"nodeDescription" : "blabla",
"nodeName" : "",
"numExecutors" : blabla,
"description" : blabla,
"jobs" : [
{
"name" : "JOB_NAME",
"url" : "MY_JOB_URL",
"color" : "blue"
}
]
}
require 'net/http'
require 'json'
require 'time'
JENKINS_URI = URI.parse("jenkins_url")
JENKINS_AUTH = {
'name' => 'user',
'password' => 'pwd'
}
def get_json_for_master_jenkins()
http = Net::HTTP.new(JENKINS_URI.host, JENKINS_URI.port)
request = Net::HTTP::Get.new("/jenkins/api/json?pretty=true")
if JENKINS_AUTH['name']
request.basic_auth(JENKINS_AUTH['name'], JENKINS_AUTH['password'])
end
response = http.request(request)
JSON.parse(response.body)
end
# the key of this mapping must be a unique identifier for your job, the according value must be the name that is specified in jenkins
SCHEDULER.every '100s', :first_in => 0 do |job|
thom = get_json_for_master_jenkins()
send_event('master_jobs',
jobs: thom['jobs'][0..4],
colors:thom['jobs']['color']
)
end
你能帮助我吗?我对此很陌生,请尽量让它变得简单。
答案 0 :(得分:1)
好的,我想我找到了答案。
Jenkins建立在batman.js之上,并且有一种与DOM交互的方式。
我在我的小部件HTML中使用提供的batman.js属性data-bind-class
:
.blue{
#CSS stuff goes here
}