123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452 |
- define([ "require", "backbone", "hbs!tmpl/search/SearchLayoutView_tmpl", "utils/Utils", "utils/UrlLinks", "utils/Globals", "utils/Enums", "collection/VSearchList", "utils/CommonViewFunction", "jstree" ], function(require, Backbone, SearchLayoutViewTmpl, Utils, UrlLinks, Globals, Enums, VSearchList, CommonViewFunction) {
- "use strict";
- var SearchLayoutView = Backbone.Marionette.LayoutView.extend({
- _viewName: "SearchLayoutView",
- template: SearchLayoutViewTmpl,
- regions: {},
- ui: {
- searchInput: '[data-id="searchInput"]',
- searchType: 'input[name="queryType"]',
- searchBtn: '[data-id="searchBtn"]',
- clearSearch: '[data-id="clearSearch"]',
- typeLov: '[data-id="typeLOV"]',
- tagLov: '[data-id="tagLOV"]',
- termLov: '[data-id="termLOV"]',
- refreshBtn: '[data-id="refreshBtn"]',
- advancedInfoBtn: '[data-id="advancedInfo"]',
- typeAttrFilter: '[data-id="typeAttrFilter"]',
- tagAttrFilter: '[data-id="tagAttrFilter"]'
- },
- events: function() {
- var events = {}, that = this;
- return events["keyup " + this.ui.searchInput] = function(e) {
- var code = e.which;
- this.value.query = e.currentTarget.value, this.query[this.type].query = this.value.query,
- 13 == code && that.findSearchResult(), this.checkForButtonVisiblity();
- }, events["change " + this.ui.searchType] = "dslFulltextToggle", events["click " + this.ui.searchBtn] = "findSearchResult",
- events["click " + this.ui.clearSearch] = "clearSearchData", events["change " + this.ui.typeLov] = "checkForButtonVisiblity",
- events["change " + this.ui.tagLov] = "checkForButtonVisiblity", events["change " + this.ui.termLov] = "checkForButtonVisiblity",
- events["click " + this.ui.refreshBtn] = "onRefreshButton", events["click " + this.ui.advancedInfoBtn] = "advancedInfo",
- events["click " + this.ui.typeAttrFilter] = function() {
- this.openAttrFilter("type");
- }, events["click " + this.ui.tagAttrFilter] = function() {
- this.openAttrFilter("tag");
- }, events;
- },
- initialize: function(options) {
- _.extend(this, _.pick(options, "value", "typeHeaders", "searchVent", "entityDefCollection", "enumDefCollection", "classificationDefCollection", "searchTableColumns", "searchTableFilters", "metricCollection", "onSubmit")),
- this.type = "dsl", this.entityCountObj = _.first(this.metricCollection.toJSON()) || {
- entity: {
- entityActive: {},
- entityDeleted: {}
- },
- tag: {
- tagEntities: {}
- }
- }, this.filterTypeSelected = [];
- var param = Utils.getUrlState.getQueryParams();
- this.query = {
- dsl: {
- query: null,
- type: null,
- pageOffset: null,
- pageLimit: null
- },
- basic: {
- query: null,
- type: null,
- tag: null,
- term: null,
- attributes: null,
- tagFilters: null,
- pageOffset: null,
- pageLimit: null,
- entityFilters: null,
- includeDE: null,
- excludeST: null,
- excludeSC: null
- }
- }, this.value || (this.value = {}), this.dsl = !1, param && param.searchType && (this.type = param.searchType,
- this.updateQueryObject(param)), this.bindEvents();
- },
- bindEvents: function(param) {
- this.listenTo(this.typeHeaders, "reset", function(value) {
- this.initializeValues();
- }, this);
- },
- onRender: function() {
- "basic" === this.type && this.$(".searchByText").hide(), this.initializeValues(),
- this.dslFulltextToggle(!0, !1);
- },
- initializeValues: function() {
- this.renderTypeTagList(), this.renderTermList(), this.setValues(), this.checkForButtonVisiblity();
- },
- makeFilterButtonActive: function(filtertypeParam) {
- var filtertype = [ "entityFilters", "tagFilters" ], that = this;
- filtertypeParam && (_.isArray(filtertypeParam) ? filtertype = filtertypeParam : _.isString(filtertypeParam) && (filtertype = [ filtertypeParam ]));
- var typeCheck = function(filterObj, type) {
- that.value.type ? (filterObj && filterObj.length ? that.ui.typeAttrFilter.addClass("active") : that.ui.typeAttrFilter.removeClass("active"),
- that.ui.typeAttrFilter.prop("disabled", !1)) : (that.ui.typeAttrFilter.removeClass("active"),
- that.ui.typeAttrFilter.prop("disabled", !0));
- }, tagCheck = function(filterObj, type) {
- that.value.tag && !_.contains(Enums.addOnClassification, that.value.tag) ? (that.ui.tagAttrFilter.prop("disabled", !1),
- filterObj && filterObj.length ? that.ui.tagAttrFilter.addClass("active") : that.ui.tagAttrFilter.removeClass("active")) : (that.ui.tagAttrFilter.removeClass("active"),
- that.ui.tagAttrFilter.prop("disabled", !0));
- };
- _.each(filtertype, function(type) {
- var filterObj = that.searchTableFilters[type];
- "entityFilters" == type && typeCheck(filterObj[that.value.type], type), "tagFilters" == type && tagCheck(filterObj[that.value.tag], type);
- });
- },
- checkForButtonVisiblity: function(e, options) {
- var that = this, isBasicSearch = "basic" == this.type;
- if (e && e.currentTarget) {
- var $el = $(e.currentTarget), isTagEl = "tagLOV" == $el.data("id"), isTermEl = "termLOV" == $el.data("id"), isTypeEl = "typeLOV" == $el.data("id"), select2Data = $el.select2("data");
- if ("change" == e.type && select2Data) {
- var value = _.isEmpty(select2Data) ? select2Data : _.first(select2Data).id, key = "tag", filterType = isBasicSearch ? "tagFilters" : null, value = value && value.length ? value : null;
- if (isTagEl || (key = isTermEl ? "term" : "type", isBasicSearch && (filterType = isTypeEl ? "entityFilters" : null)),
- this.value) {
- if (this.value[key] !== value || !value && !this.value[key]) {
- var temp = {};
- temp[key] = value, _.extend(this.value, temp), _.isUndefined(options) && (this.value.pageOffset = 0),
- _.extend(this.query[this.type], temp);
- } else if (isBasicSearch && this.value.type) if (this.value.attributes) {
- var attributes = _.sortBy(this.value.attributes.split(",")), tableColumn = this.searchTableColumns[this.value.type];
- _.isEmpty(this.searchTableColumns) || !tableColumn ? this.searchTableColumns[this.value.type] = attributes : tableColumn.join(",") !== attributes.join(",") && (this.searchTableColumns[this.value.type] = attributes);
- } else this.searchTableColumns[this.value.type] && (this.searchTableColumns[this.value.type] = void 0);
- isBasicSearch && filterType && this.makeFilterButtonActive(filterType);
- } else isBasicSearch && (this.ui.tagAttrFilter.prop("disabled", !0), this.ui.typeAttrFilter.prop("disabled", !0));
- }
- }
- var value = this.ui.searchInput.val() || _.first($(this.ui.typeLov).select2("data")).id;
- if (!this.dsl && _.isEmpty(value)) {
- var termData = _.first($(this.ui.termLov).select2("data"));
- value = _.first($(this.ui.tagLov).select2("data")).id || (termData ? termData.id : "");
- }
- value && value.length ? (this.ui.searchBtn.removeAttr("disabled"), setTimeout(function() {
- !that.isDestroyed && that.ui.searchInput.focus();
- }, 0)) : this.ui.searchBtn.attr("disabled", "true");
- },
- updateQueryObject: function(param) {
- param && param.searchType && (this.type = param.searchType), _.extend(this.query[this.type], "dsl" == this.type ? {
- query: null,
- type: null,
- pageOffset: null,
- pageLimit: null
- } : {
- query: null,
- type: null,
- tag: null,
- term: null,
- attributes: null,
- tagFilters: null,
- pageOffset: null,
- pageLimit: null,
- entityFilters: null,
- includeDE: null
- }, param);
- },
- fetchCollection: function(value) {
- this.typeHeaders.fetch({
- reset: !0
- });
- },
- onRefreshButton: function() {
- this.fetchCollection();
- var checkURLValue = Utils.getUrlState.getQueryParams(this.url);
- this.searchVent && (_.has(checkURLValue, "tag") || _.has(checkURLValue, "type") || _.has(checkURLValue, "query")) && this.searchVent.trigger("search:refresh");
- },
- advancedInfo: function(e) {
- require([ "views/search/AdvancedSearchInfoView", "modules/Modal" ], function(AdvancedSearchInfoView, Modal) {
- var view = new AdvancedSearchInfoView(), modal = new Modal({
- title: "高级搜索查询",
- content: view,
- okCloses: !0,
- showFooter: !0,
- allowCancel: !1
- }).open();
- view.on("closeModal", function() {
- modal.trigger("cancel");
- });
- });
- },
- openAttrFilter: function(filterType) {
- var that = this;
- require([ "views/search/SearchQueryView" ], function(SearchQueryView) {
- that.attrModal = new SearchQueryView({
- value: that.value,
- tag: "tag" === filterType,
- type: "type" === filterType,
- searchVent: that.searchVent,
- typeHeaders: that.typeHeaders,
- entityDefCollection: that.entityDefCollection,
- enumDefCollection: that.enumDefCollection,
- classificationDefCollection: that.classificationDefCollection,
- searchTableFilters: that.searchTableFilters
- }), that.attrModal.on("ok", function(scope, e) {
- that.okAttrFilterButton(e);
- });
- });
- },
- okAttrFilterButton: function(e) {
- function getIdFromRuleObject(rule) {
- return _.map(rule.rules, function(obj, key) {
- return _.has(obj, "condition") ? getIdFromRuleObject(obj) : col.push(obj.id);
- }), col;
- }
- var isTag = !!this.attrModal.tag, filtertype = isTag ? "tagFilters" : "entityFilters", queryBuilderRef = this.attrModal.RQueryBuilder.currentView.ui.builder, col = [];
- if (queryBuilderRef.data("queryBuilder")) var rule = queryBuilderRef.queryBuilder("getRules");
- if (rule) {
- var ruleUrl = CommonViewFunction.attributeFilter.generateUrl({
- value: rule,
- formatedDateToLong: !0
- });
- this.searchTableFilters[filtertype][isTag ? this.value.tag : this.value.type] = ruleUrl,
- this.makeFilterButtonActive(filtertype), !isTag && this.value && this.value.type && this.searchTableColumns && (this.searchTableColumns[this.value.type] || (this.searchTableColumns[this.value.type] = [ "selected", "name", "owner", "description", "tag", "typeName" ]),
- this.searchTableColumns[this.value.type] = _.sortBy(_.union(this.searchTableColumns[this.value.type], getIdFromRuleObject(rule)))),
- this.attrModal.modal.close(), $(e.currentTarget).hasClass("search") && this.findSearchResult();
- }
- },
- manualRender: function(paramObj) {
- this.updateQueryObject(paramObj), this.setValues(paramObj);
- },
- getFilterBox: function() {
- var serviceStr = "", serviceArr = [], that = this;
- this.typeHeaders.fullCollection.each(function(model) {
- var serviceType = model.toJSON().serviceType;
- serviceType && serviceArr.push(serviceType);
- }), _.each(_.uniq(serviceArr), function(service) {
- serviceStr += '<li><div class="pretty p-switch p-fill"><input type="checkbox" class="pull-left" data-value="' + service + '" value="" ' + (_.contains(that.filterTypeSelected, service) ? "checked" : "") + '/><div class="state p-primary"><label>' + service.toUpperCase() + "</label></div></div></li>";
- });
- var templt = serviceStr + '<hr class="hr-filter"/><div class="text-right"><div class="divider"></div><button class="btn btn-action btn-sm filterDone">Done</button></div>';
- return templt;
- },
- setValues: function(paramObj) {
- var that = this;
- paramObj && (this.value = paramObj), this.value && (this.ui.searchInput.val(this.value.query || ""),
- "true" == this.value.dslChecked ? this.ui.searchType.prop("checked") || this.ui.searchType.prop("checked", !0).trigger("change") : this.ui.searchType.prop("checked") && this.ui.searchType.prop("checked", !1).trigger("change"),
- this.ui.typeLov.val(this.value.type), this.ui.typeLov.data("select2") && (this.ui.typeLov.val() !== this.value.type ? (this.value.type = null,
- this.ui.typeLov.val("").trigger("change", {
- manual: !0
- })) : this.ui.typeLov.trigger("change", {
- manual: !0
- })), this.dsl || (this.ui.tagLov.val(this.value.tag), this.ui.tagLov.data("select2") && (this.ui.tagLov.val() !== this.value.tag ? (this.value.tag = null,
- this.ui.tagLov.val("").trigger("change", {
- manual: !0
- })) : this.ui.tagLov.trigger("change", {
- manual: !0
- })), this.value.term && this.ui.termLov.append('<option value="' + this.value.term + '" selected="selected">' + this.value.term + "</option>"),
- this.ui.termLov.data("select2") && (this.ui.termLov.val() !== this.value.term ? (this.value.term = null,
- this.ui.termLov.val("").trigger("change", {
- manual: !0
- })) : this.ui.termLov.trigger("change", {
- manual: !0
- }))), setTimeout(function() {
- !that.isDestroyed && that.ui.searchInput.focus();
- }, 0));
- },
- renderTypeTagList: function(options) {
- var that = this, serviceTypeToBefiltered = options && options.filterList, isTypeOnly = options && options.isTypeOnly;
- this.ui.typeLov.empty();
- var typeStr = "<option></option>", tagStr = typeStr;
- this.typeHeaders.fullCollection.each(function(model) {
- var name = Utils.getName(model.toJSON(), "name");
- if ("ENTITY" == model.get("category") && (!serviceTypeToBefiltered || !serviceTypeToBefiltered.length || _.contains(serviceTypeToBefiltered, model.get("serviceType")))) {
- var entityCount = that.entityCountObj.entity.entityActive[name] + (that.entityCountObj.entity.entityDeleted[name] ? that.entityCountObj.entity.entityDeleted[name] : 0);
- typeStr += '<option value="' + name + '" data-name="' + name + '">' + name + " " + (entityCount ? "(" + _.numberFormatWithComma(entityCount) + ")" : "") + "</option>";
- }
- if (void 0 == isTypeOnly && "CLASSIFICATION" == model.get("category")) {
- var tagEntityCount = that.entityCountObj.tag.tagEntities[name];
- tagStr += '<option value="' + name + '" data-name="' + name + '">' + name + " " + (tagEntityCount ? "(" + _.numberFormatWithComma(tagEntityCount) + ")" : "") + "</option>";
- }
- }), _.isUndefined(isTypeOnly) && (_.each(Enums.addOnClassification, function(classificationName) {
- tagStr += '<option value="' + classificationName + '" data-name="' + classificationName + '">' + classificationName + "</option>";
- }), that.ui.tagLov.html(tagStr), this.ui.tagLov.select2({
- placeholder: "Select Classification",
- allowClear: !0
- })), that.ui.typeLov.html(typeStr);
- var typeLovSelect2 = this.ui.typeLov.select2({
- placeholder: "请选择类型",
- dropdownAdapter: $.fn.select2.amd.require("ServiceTypeFilterDropdownAdapter"),
- allowClear: !0,
- dropdownCssClass: "searchLayoutView",
- getFilterBox: this.getFilterBox.bind(this),
- onFilterSubmit: function(options) {
- that.filterTypeSelected = options.filterVal, that.renderTypeTagList({
- filterList: options.filterVal,
- isTypeOnly: !0
- });
- }
- });
- typeLovSelect2.on("select2:close", function() {
- typeLovSelect2.trigger("hideFilter");
- }), typeLovSelect2 && serviceTypeToBefiltered && typeLovSelect2.select2("open").trigger("change", {
- manual: !0
- });
- },
- renderTermList: function() {
- var getTypeAheadData = function(data, params) {
- var dataList = data.entities, foundOptions = [];
- return _.each(dataList, function(obj) {
- obj && (obj.guid && (obj.id = Utils.getName(obj, "qualifiedName")), foundOptions.push(obj));
- }), foundOptions;
- };
- this.ui.termLov.select2({
- placeholder: "Search Term",
- allowClear: !0,
- ajax: {
- url: UrlLinks.searchApiUrl("attribute"),
- dataType: "json",
- delay: 250,
- data: function(params) {
- return {
- attrValuePrefix: params.term,
- typeName: "AtlasGlossaryTerm",
- limit: 10,
- offset: 0
- };
- },
- processResults: function(data, params) {
- return {
- results: getTypeAheadData(data, params)
- };
- },
- cache: !0
- },
- templateResult: function(option) {
- var name = Utils.getName(option, "qualifiedName");
- return "-" === name ? option.text : name;
- },
- templateSelection: function(option) {
- var name = Utils.getName(option, "qualifiedName");
- return "-" === name ? option.text : name;
- },
- escapeMarkup: function(markup) {
- return markup;
- },
- minimumInputLength: 1
- });
- },
- renderSaveSearch: function() {
- var that = this;
- require([ "views/search/save/SaveSearchView" ], function(SaveSearchView) {
- function fetchSaveSearchCollection() {
- saveSearchCollection.fetch({
- success: function(collection, data) {
- saveSearchAdvanceCollection.fullCollection.reset(_.where(data, {
- searchType: "ADVANCED"
- })), saveSearchBaiscCollection.fullCollection.reset(_.where(data, {
- searchType: "BASIC"
- }));
- },
- silent: !0
- });
- }
- function getModelName(model) {
- if (model.get("name")) return model.get("name").toLowerCase();
- }
- var saveSearchBaiscCollection = new VSearchList(), saveSearchAdvanceCollection = new VSearchList(), saveSearchCollection = new VSearchList();
- saveSearchCollection.url = UrlLinks.saveSearchApiUrl(), saveSearchBaiscCollection.fullCollection.comparator = function(model) {
- return getModelName(model);
- }, saveSearchAdvanceCollection.fullCollection.comparator = function(model) {
- return getModelName(model);
- };
- var obj = {
- value: that.value,
- searchVent: that.searchVent,
- typeHeaders: that.typeHeaders,
- fetchCollection: fetchSaveSearchCollection,
- classificationDefCollection: that.classificationDefCollection,
- entityDefCollection: that.entityDefCollection,
- getValue: function() {
- var queryObj = that.query[that.type], entityObj = that.searchTableFilters.entityFilters, tagObj = that.searchTableFilters.tagFilters, urlObj = Utils.getUrlState.getQueryParams();
- return urlObj && (urlObj.includeDE = "true" == urlObj.includeDE, urlObj.excludeSC = "true" == urlObj.excludeSC,
- urlObj.excludeST = "true" == urlObj.excludeST), _.extend({}, queryObj, urlObj, {
- entityFilters: entityObj ? entityObj[queryObj.type] : null,
- tagFilters: tagObj ? tagObj[queryObj.tag] : null,
- type: queryObj.type,
- query: queryObj.query,
- term: queryObj.term,
- tag: queryObj.tag
- });
- },
- applyValue: function(model, searchType) {
- that.manualRender(_.extend(searchType, CommonViewFunction.generateUrlFromSaveSearchObject({
- value: {
- searchParameters: model.get("searchParameters"),
- uiParameters: model.get("uiParameters")
- },
- classificationDefCollection: that.classificationDefCollection,
- entityDefCollection: that.entityDefCollection
- })));
- }
- };
- that.RSaveSearchBasic.show(new SaveSearchView(_.extend(obj, {
- isBasic: !0,
- collection: saveSearchBaiscCollection.fullCollection
- }))), that.RSaveSearchAdvance.show(new SaveSearchView(_.extend(obj, {
- isBasic: !1,
- collection: saveSearchAdvanceCollection.fullCollection
- }))), fetchSaveSearchCollection();
- });
- },
- findSearchResult: function() {
- this.triggerSearch(this.ui.searchInput.val());
- },
- triggerSearch: function(value) {
- var params = {
- searchType: this.type,
- dslChecked: this.ui.searchType.is(":checked"),
- tagFilters: null,
- entityFilters: null
- }, typeLovValue = this.ui.typeLov.find(":selected").data("name"), tagLovValue = this.ui.tagLov.find(":selected").data("name"), termLovValue = this.ui.termLov.select2("val");
- if (params.type = typeLovValue || null, !this.dsl) {
- params.tag = tagLovValue || null, params.term = termLovValue || null;
- var entityFilterObj = this.searchTableFilters.entityFilters, tagFilterObj = this.searchTableFilters.tagFilters;
- this.value.tag && (params.tagFilters = tagFilterObj[this.value.tag]), this.value.type && (params.entityFilters = entityFilterObj[this.value.type]);
- var columnList = this.value && this.value.type && this.searchTableColumns ? this.searchTableColumns[this.value.type] : null;
- columnList && (params.attributes = columnList.join(",")), params.includeDE = !_.isUndefinedNull(this.value.includeDE) && this.value.includeDE,
- params.excludeST = !_.isUndefinedNull(this.value.excludeST) && this.value.excludeST,
- params.excludeSC = !_.isUndefinedNull(this.value.excludeSC) && this.value.excludeSC;
- }
- _.isUndefinedNull(this.value.pageLimit) || (params.pageLimit = this.value.pageLimit),
- _.isUndefinedNull(this.value.pageOffset) || (_.isUndefinedNull(this.query[this.type]) || this.query[this.type].query == value ? params.pageOffset = this.value.pageOffset : params.pageOffset = 0),
- params.query = value || null, _.extend(this.query[this.type], params), this.onSubmit && this.onSubmit(this.query[this.type]),
- Utils.setUrl({
- url: "#!/search/searchResult",
- urlParams: _.extend({}, this.query[this.type]),
- mergeBrowserUrl: !1,
- trigger: !0,
- updateTabState: !0
- });
- },
- dslFulltextToggle: function(e, triggerUrl) {
- var paramObj = Utils.getUrlState.getQueryParams();
- paramObj && this.type == paramObj.searchType && this.updateQueryObject(paramObj),
- e ? (this.type = "dsl", this.dsl = !0, this.$(".typeFilterBtn,.tagBox,.termBox,.basicSaveSearch").hide(),
- this.$(".advanceSaveSearch,.searchByText").show(), this.$(".searchText").text("Search By Query"),
- this.ui.searchInput.attr("placeholder", 'Search By Query eg. where name="sales_fact"')) : (this.$(".typeFilterBtn,.tagBox,.termBox,.basicSaveSearch").show(),
- this.$(".advanceSaveSearch,.searchByText").hide(), this.dsl = !1, this.type = "basic",
- this.ui.searchInput.attr("placeholder", "Search By Text")), triggerUrl !== !1 && Utils.getUrlState.isSearchTab() && Utils.setUrl({
- url: "#!/search/searchResult",
- urlParams: _.extend(this.query[this.type], {
- searchType: this.type,
- dslChecked: this.ui.searchType.is(":checked")
- }),
- mergeBrowserUrl: !1,
- trigger: !0,
- updateTabState: !0
- });
- },
- clearSearchData: function() {
- this.filterTypeSelected = [], this.renderTypeTagList(), this.updateQueryObject(),
- this.ui.typeLov.val("").trigger("change"), this.ui.tagLov.val("").trigger("change"),
- this.ui.searchInput.val("");
- var type = "basicSaveSearch";
- "dsl" == this.type && (type = "advanceSaveSearch"), this.$("." + type + " .saveSearchList").find("li.active").removeClass("active"),
- this.$("." + type + ' [data-id="saveBtn"]').attr("disabled", !0), this.dsl || (this.searchTableFilters.tagFilters = {},
- this.searchTableFilters.entityFilters = {}), this.checkForButtonVisiblity();
- }
- });
- return SearchLayoutView;
- });
|