gethue
Version:
Hue is an Open source SQL Query Editor for Databases/Warehouses
87 lines (81 loc) • 2.97 kB
JavaScript
// Licensed to Cloudera, Inc. under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. Cloudera, Inc. 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.
import $ from 'jquery';
import * as ko from 'knockout';
import apiHelper from '../../api/apiHelper';
import huePubSub from '../../utils/huePubSub';
/**
* Show the Context Popover for Documents when the bound element is clicked.
*
* Parameters:
*
* {string} uuid - the uuid of the document
* {string} [orientation] - 'top', 'right', 'bottom', 'left'. Default 'right'
* {Object} [offset] - Optional offset from the element
* {number} [offset.top] - Offset in pixels
* {number} [offset.left] - Offset in pixels
*
* Examples:
*
* data-bind="documentContextPopover: { uuid: 'bana-na12-3456-7890' }"
* data-bind="documentContextPopover: { uuid: 'bana-na12-3456-7890', orientation: 'bottom', offset: { top: 5 } }"
*
* @type {{init: ko.bindingHandlers.documentContextPopover.init}}
*/
ko.bindingHandlers.documentContextPopover = {
init: function (element, valueAccessor, allBindings, viewModel, bindingContext) {
ko.bindingHandlers.click.init(
element,
() => {
return function () {
const options = valueAccessor();
apiHelper
.fetchDocument({
uuid: options.uuid,
fetchContents: true,
silenceErrors: true
})
.done(response => {
const $source = $(element);
const offset = $source.offset();
if (options.offset) {
offset.top += options.offset.top || 0;
offset.left += options.offset.left || 0;
}
huePubSub.publish('context.popover.show', {
data: {
type: 'hue',
definition: response.document
},
showInAssistEnabled: true,
orientation: options.orientation || 'right',
source: {
element: element,
left: offset.left,
top: offset.top,
right: offset.left + $source.width(),
bottom: offset.top + $source.height()
}
});
});
};
},
allBindings,
viewModel,
bindingContext
);
}
};