123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- /*##############################################################################
- # 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/layout/BorderContainer",
- "dijit/layout/ContentPane",
- "dijit/registry",
- "hpcc/_Widget",
- "hpcc/ESPWorkunit",
- "dojo/text!../templates/ECLSourceWidget.html",
- "dijit/Toolbar", "dijit/ToolbarSeparator", "dijit/form/Button"
- ],
- function (declare, dom,
- BorderContainer, ContentPane, registry,
- _Widget, ESPWorkunit,
- template) {
- return declare("ECLSourceWidget", [_Widget], {
- templateString: template,
- baseClass: "ECLSourceWidget",
- borderContainer: null,
- eclSourceContentPane: null,
- wu: null,
- editor: null,
- markers: [],
- highlightLines: [],
- readOnly: false,
- buildRendering: function (args) {
- this.inherited(arguments);
- },
- postCreate: function (args) {
- this.inherited(arguments);
- this.borderContainer = registry.byId(this.id + "BorderContainer");
- },
- startup: function (args) {
- this.inherited(arguments);
- },
- resize: function (args) {
- this.inherited(arguments);
- this.borderContainer.resize();
- },
- layout: function (args) {
- this.inherited(arguments);
- },
- // Plugin wrapper ---
- init: function (params) {
- if (this.inherited(arguments))
- return;
- var mode = "ecl";
- if (params.sourceMode !== undefined) {
- mode = params.sourceMode;
- } else if (this.WUXml) {
- mode = "xml";
- }
- this.editor = CodeMirror.fromTextArea(document.getElementById(this.id + "EclCode"), {
- tabMode: "indent",
- matchBrackets: true,
- gutter: true,
- lineNumbers: true,
- mode: mode,
- readOnly: this.readOnly,
- gutter: mode === "xml" ? true : false,
- onGutterClick: CodeMirror.newFoldFunction(CodeMirror.tagRangeFinder)
- });
- dom.byId(this.id + "EclContent").style.backgroundColor = this.readOnly ? 0xd0d0d0 : 0xffffff;
- var context = this;
- if (params.Wuid) {
- this.wu = ESPWorkunit.Get(params.Wuid);
- if (this.WUXml) {
- this.wu.fetchXML(function (xml) {
- context.editor.setValue(xml);
- });
- }
- else {
- this.wu.fetchText(function (text) {
- context.editor.setValue(text);
- });
- }
- } else if (params.ECL) {
- context.editor.setValue(params.ECL);
- }
- },
- clearErrors: function (errWarnings) {
- for (var i = 0; i < this.markers.length; ++i) {
- this.editor.clearMarker(this.markers[i]);
- }
- this.markers = [];
- },
- setErrors: function (errWarnings) {
- for (var i = 0; i < errWarnings.length; ++i) {
- this.markers.push(this.editor.setMarker(parseInt(
- errWarnings[i].LineNo, 10) - 1, "",
- errWarnings[i].Severity + "Line"));
- }
- },
- setCursor: function (line, col) {
- this.editor.setCursor(line - 1, col - 1);
- this.editor.focus();
- },
- clearHighlightLines: function () {
- for (var i = 0; i < this.highlightLines.length; ++i) {
- this.editor.setLineClass(this.highlightLines[i], null, null);
- }
- },
- highlightLine: function (line) {
- this.highlightLines.push(this.editor.setLineClass(line - 1, "highlightline"));
- },
- setText: function (ecl) {
- this.editor.setValue(ecl);
- },
- setReadOnly: function (readonly) {
- this.editor.readOnly(readonly);
- },
- getText: function () {
- return this.editor.getValue();
- }
- });
- });
|