Dactyloidae/devtools/shared/gcli/source/lib/gcli/converters/terminal.js

56 lines
1.7 KiB
JavaScript

/*
* Copyright 2012, Mozilla Foundation and contributors
*
* 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.
*/
'use strict';
var util = require('../util/util');
/**
* A 'terminal' object is a string or an array of strings, which are typically
* the output from a shell command
*/
exports.items = [
{
item: 'converter',
from: 'terminal',
to: 'dom',
createTextArea: function(text, conversionContext) {
var node = util.createElement(conversionContext.document, 'textarea');
node.classList.add('gcli-row-subterminal');
node.readOnly = true;
node.textContent = text;
return node;
},
exec: function(data, conversionContext) {
if (Array.isArray(data)) {
var node = util.createElement(conversionContext.document, 'div');
data.forEach(function(member) {
node.appendChild(this.createTextArea(member, conversionContext));
});
return node;
}
return this.createTextArea(data);
}
},
{
item: 'converter',
from: 'terminal',
to: 'string',
exec: function(data, conversionContext) {
return Array.isArray(data) ? data.join('') : '' + data;
}
}
];