2015-12-02 15:32:48 +08:00

190 lines
4.1 KiB
JavaScript

/**
* Created by nuintun on 2015/11/20.
*/
'use strict';
var ipc = require('ipc-renderer');
var fs = require('fs');
var path = require('path');
var util = require('../../util');
var Vue = require('../../vue/vue');
var Terminal = require('../../terminal');
const EMPTYPROJECT = {
name: '',
path: '',
env: [],
command: [],
empty: true
};
require('../project-configure');
/**
* clone project
* @param projects
* @param index
* @returns {*}
*/
function clone(projects, index){
return util.clone(projects[index] || EMPTYPROJECT);
}
/**
* srcoll
* @param xterm
* @param parent
*/
function scroll(xterm, parent){
var height = (xterm.y + 2) * 18;
var scrollTop = parent.scrollTop;
var viewHeight = parent.clientHeight;
if (scrollTop > height || height > scrollTop + viewHeight) {
parent.scrollTop = Math.max(0, height - viewHeight);
}
}
var worker = new Worker('static/js/components/app-main/terminal-worker.js');
/**
* openXTerm
* @param name
*/
function openXTerm(name){
worker.postMessage({ action: 'open', name: name });
}
/**
* closeXTerm
* @param name
*/
function closeXTerm(name){
worker.postMessage({ action: 'close', name: name });
}
module.exports = Vue.component('app-main', {
template: fs.readFileSync(path.join(__dirname, 'app-main.html')).toString(),
props: {
activeIndex: {
type: Number,
twoWay: true,
required: true
},
projects: {
type: Array,
twoWay: true,
required: true
},
unique: {
type: Object,
required: true
}
},
data: function (){
var project = clone(this.projects, this.activeIndex);
return {
showSetting: false,
expandCommand: false,
project: project,
command: project.command.slice(0, 3),
moreCommand: project.command.slice(3)
};
},
watch: {
projects: function (){
this.project = clone(this.projects, this.activeIndex);
},
activeIndex: function (){
this.project = clone(this.projects, this.activeIndex);
},
project: function (project){
this.command = project.command.slice(0, 3);
this.moreCommand = project.command.slice(3);
openXTerm(project.name);
}
},
methods: {
exec: function (name, command){
ipc.send('emulator', {
name: this.project.name,
path: this.project.path,
env: util.normalize(this.project.env),
command: {
name: name,
value: command
}
}, 'start');
},
setting: function (){
this.showSetting = true;
},
remove: function (){
closeXTerm(this.project.name);
// remove project
this.projects.splice(this.activeIndex, 1);
// change active
this.activeIndex = 0;
// save configure
this.$dispatch('save-configure');
}
},
events: {
'setting-toggle': function (state){
this.showSetting = state;
},
edit: function (project){
if (project.name !== this.project.name) {
window.AppRuntime[project.name] = window.AppRuntime[this.project.name];
delete window.AppRuntime[this.project.name];
}
this.projects.$set(this.activeIndex, project);
this.$dispatch('save-configure');
}
},
created: function (){
var context = this;
document.addEventListener('click', function (event){
var target = event.target;
var trigger = context.$els.expandTrigger;
context.expandCommand = trigger && trigger.contains(target);
}, false);
window.TERMSTR = '';
ipc.on('emulator', function (event, type, project, data){
worker.postMessage({ action: 'write', name: project.name, data: data + '' });
window.TERMSTR += JSON.stringify(data.toString()) + '\n';
// event.sender.send('emulator', project, 'stop');
});
window.doWrite = function (){
require('fs').writeFile('./screen.text', window.TERMSTR);
};
},
ready: function (){
var context = this;
worker.onmessage = function (event){
if (event.data.name === context.project.name) {
context.$els.terminal.innerHTML = event.data.screen;
}
};
window.worker = worker;
openXTerm(this.project.name);
}
});