123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /*##############################################################################
- # HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems.
- #
- # Licensed 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([
- "dojo/_base/declare",
- "dojo/dom",
- "dijit/_TemplatedMixin",
- "dijit/_WidgetsInTemplateMixin",
- "dijit/registry",
- "dijit/Tooltip",
- "hpcc/_TabContainerWidget",
- "hpcc/ESPRequest",
- "hpcc/WsAccount",
- "dojo/text!../templates/HPCCPlatformWidget.html",
- "dijit/layout/BorderContainer",
- "dijit/layout/TabContainer",
- "dijit/layout/StackContainer",
- "dijit/layout/StackController",
- "dijit/layout/ContentPane",
- "dijit/form/DropDownButton",
- "dijit/form/ComboButton",
- "dijit/form/TextBox",
- "dijit/Menu",
- "dijit/MenuSeparator",
- "dijit/Toolbar",
- "dijit/TooltipDialog",
- "hpcc/HPCCPlatformMainWidget",
- "hpcc/HPCCPlatformECLWidget",
- "hpcc/HPCCPlatformFilesWidget",
- "hpcc/HPCCPlatformRoxieWidget",
- "hpcc/HPCCPlatformOpsWidget"
- ], function (declare, dom,
- _TemplatedMixin, _WidgetsInTemplateMixin, registry, Tooltip,
- _TabContainerWidget, ESPRequest, WsAccount,
- template) {
- return declare("HPCCPlatformWidget", [_TabContainerWidget, _TemplatedMixin, _WidgetsInTemplateMixin], {
- templateString: template,
- baseClass: "HPCCPlatformWidget",
- postCreate: function (args) {
- this.inherited(arguments);
- this.searchText = registry.byId(this.id + "FindText");
- this.searchPage = registry.byId(this.id + "_Main" + "_Search");
- this.stackContainer = registry.byId(this.id + "TabContainer");
- this.mainPage = registry.byId(this.id + "_Main");
- this.mainStackContainer = registry.byId(this.mainPage.id + "TabContainer");
- this.searchPage = registry.byId(this.id + "_Main" + "_Search");
- },
- startup: function (args) {
- this.inherited(arguments);
- },
- // Hitched actions ---
- _onFind: function (evt) {
- this.stackContainer.selectChild(this.mainPage);
- this.mainStackContainer.selectChild(this.searchPage);
- this.searchPage.doSearch(this.searchText.get("value"));
- },
- _onOpenLegacy: function (evt) {
- var win = window.open("\\", "_blank");
- win.focus();
- },
- _onAbout: function (evt) {
- },
- createStackControllerTooltip: function (widgetID, text) {
- return new Tooltip({
- connectId: [this.id + "StackController_" + widgetID],
- label: text,
- showDelay: 1,
- position: ["below"]
- });
- },
- // Implementation ---
- init: function (params) {
- if (this.initalized)
- return;
- this.initalized = true;
- var context = this;
- WsAccount.MyAccount({
- }).then(function (response) {
- dom.byId(context.id + "UserID").innerHTML = response.MyAccountResponse.username;
- },
- function (error) {
- });
- this.createStackControllerTooltip(this.id + "_ECL", "ECL");
- this.createStackControllerTooltip(this.id + "_Files", "Files");
- this.createStackControllerTooltip(this.id + "_Queries", "Published Queries");
- this.createStackControllerTooltip(this.id + "_OPS", "Operations");
- this.initTab();
- },
- initTab: function () {
- var currSel = this.getSelectedChild();
- if (currSel && !currSel.initalized) {
- if (currSel.init) {
- currSel.init(currSel.params);
- }
- }
- }
- });
- });
|