| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- "use strict";
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- };
- var __metadata = (this && this.__metadata) || function (k, v) {
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- var core_1 = require("@angular/core");
- var forms_1 = require("@angular/forms");
- var common_1 = require("@angular/common");
- var domhandler_1 = require("../dom/domhandler");
- var terminalservice_1 = require("./terminalservice");
- var Terminal = /** @class */ (function () {
- function Terminal(el, terminalService) {
- var _this = this;
- this.el = el;
- this.terminalService = terminalService;
- this.commands = [];
- this.subscription = terminalService.responseHandler.subscribe(function (response) {
- _this.commands[_this.commands.length - 1].response = response;
- _this.commandProcessed = true;
- });
- }
- Terminal.prototype.ngAfterViewInit = function () {
- this.container = domhandler_1.DomHandler.find(this.el.nativeElement, '.ui-terminal')[0];
- };
- Terminal.prototype.ngAfterViewChecked = function () {
- if (this.commandProcessed) {
- this.container.scrollTop = this.container.scrollHeight;
- this.commandProcessed = false;
- }
- };
- Object.defineProperty(Terminal.prototype, "response", {
- set: function (value) {
- if (value) {
- this.commands[this.commands.length - 1].response = value;
- this.commandProcessed = true;
- }
- },
- enumerable: true,
- configurable: true
- });
- Terminal.prototype.handleCommand = function (event) {
- if (event.keyCode == 13) {
- this.commands.push({ text: this.command });
- this.terminalService.sendCommand(this.command);
- this.command = '';
- }
- };
- Terminal.prototype.focus = function (element) {
- element.focus();
- };
- Terminal.prototype.ngOnDestroy = function () {
- if (this.subscription) {
- this.subscription.unsubscribe();
- }
- };
- __decorate([
- core_1.Input(),
- __metadata("design:type", String)
- ], Terminal.prototype, "welcomeMessage", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", String)
- ], Terminal.prototype, "prompt", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", Object)
- ], Terminal.prototype, "style", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", String)
- ], Terminal.prototype, "styleClass", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", String),
- __metadata("design:paramtypes", [String])
- ], Terminal.prototype, "response", null);
- Terminal = __decorate([
- core_1.Component({
- selector: 'p-terminal',
- template: "\n <div [ngClass]=\"'ui-terminal ui-widget ui-widget-content ui-corner-all'\" [ngStyle]=\"style\" [class]=\"styleClass\" (click)=\"focus(in)\">\n <div *ngIf=\"welcomeMessage\">{{welcomeMessage}}</div>\n <div class=\"ui-terminal-content\">\n <div *ngFor=\"let command of commands\">\n <span>{{prompt}}</span>\n <span class=\"ui-terminal-command\">{{command.text}}</span>\n <div>{{command.response}}</div>\n </div>\n </div>\n <div>\n <span class=\"ui-terminal-content-prompt\">{{prompt}}</span>\n <input #in type=\"text\" [(ngModel)]=\"command\" class=\"ui-terminal-input\" autocomplete=\"off\" (keydown)=\"handleCommand($event)\" autofocus>\n </div>\n </div>\n "
- }),
- __metadata("design:paramtypes", [core_1.ElementRef, terminalservice_1.TerminalService])
- ], Terminal);
- return Terminal;
- }());
- exports.Terminal = Terminal;
- var TerminalModule = /** @class */ (function () {
- function TerminalModule() {
- }
- TerminalModule = __decorate([
- core_1.NgModule({
- imports: [common_1.CommonModule, forms_1.FormsModule],
- exports: [Terminal],
- declarations: [Terminal]
- })
- ], TerminalModule);
- return TerminalModule;
- }());
- exports.TerminalModule = TerminalModule;
- //# sourceMappingURL=terminal.js.map
|