blob: 375d551c2f6629ae454226437595a4021a0a8b43 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
define(['require',
'backbone',
'hbs!tmpl/dev_debug/DebugMetricsLayoutView_tmpl',
'utils/Utils'
], function(require, Backbone, DebugMetricsLayoutView_tmpl, Utils) {
'use strict';
var DebugMetricsLayoutView = Backbone.Marionette.LayoutView.extend(
/** @lends DebugMetricsLayoutView */
{
_viewName: 'DebugMetricsLayoutView',
template: DebugMetricsLayoutView_tmpl,
/** Layout sub regions */
regions: {
RDebugMetricsLayoutView: "#r_debugMetricsLayoutView"
},
/** ui selector cache */
ui: {
tablist: '[data-id="tab-list"] li'
},
/** ui events hash */
events: function() {
var events = {};
events["click " + this.ui.tablist] = function(e) {
var tabValue = $(e.currentTarget).attr('role');
Utils.setUrl({
url: Utils.getUrlState.getQueryUrl().queyParams[0],
urlParams: { tabActive: tabValue || 'properties' },
mergeBrowserUrl: false,
trigger: false,
updateTabState: true
});
};
return events;
},
/**
* @constructs
*/
initialize: function(options) {
_.extend(this, _.pick(options, 'value'));
},
onShow: function() {
if (this.value && this.value.tabActive) {
this.$('.nav.nav-tabs').find('[role="' + this.value.tabActive + '"]').addClass('active').siblings().removeClass('active');
this.$('.tab-content').find('[role="' + this.value.tabActive + '"]').addClass('active').siblings().removeClass('active');
$("html, body").animate({ scrollTop: (this.$('.tab-content').offset().top + 1200) }, 1000);
}
},
bindEvents: function() {},
onRender: function() {
this.metrice2LayoutView();
this.bindEvents();
},
metrice2LayoutView: function(obj) {
var that = this;
require(['views/site/DebugMetricsTableLayoutView'], function(DebugMetricsTableLayoutView) {
that.RDebugMetricsLayoutView.show(new DebugMetricsTableLayoutView());
});
}
});
return DebugMetricsLayoutView;
});