Merge branch 'master' of github.com:kitematic/kitematic

This commit is contained in:
Jeffrey Morgan 2015-09-08 14:43:09 -07:00
Родитель 9172920f43 dca4583b30
Коммит a8a72a16c9
11 изменённых файлов: 161 добавлений и 50 удалений

Просмотреть файл

@ -1,5 +1,8 @@
root: true
plugins:
- react
ecmaFeatures:
modules: true
jsx: true

Просмотреть файл

@ -65,7 +65,8 @@
"babel": "^5.1.10",
"babel-jest": "^5.2.0",
"electron-prebuilt": "^0.27.3",
"eslint": "^1.0.0",
"eslint": "^1.3.1",
"eslint-plugin-react": "^3.3.0",
"grunt": "^0.4.5",
"grunt-babel": "^5.0.1",
"grunt-chmod": "^1.0.3",

Просмотреть файл

@ -9,7 +9,7 @@ import metrics from './utils/MetricsUtil';
import template from './menutemplate';
import webUtil from './utils/WebUtil';
import hubUtil from './utils/HubUtil';
var urlUtil = require ('./utils/URLUtil');
var urlUtil = require('./utils/URLUtil');
var app = remote.require('app');
import request from 'request';
import docker from './utils/DockerUtil';

Просмотреть файл

@ -87,6 +87,16 @@ var ContainerDetailsSubheader = React.createClass({
containerActions.start(this.props.container.Name);
}
},
handleDocs: function () {
let repoUri = 'https://hub.docker.com/r/';
let imageName = this.props.container.Config.Image.split(':')[0];
if (imageName.indexOf('/') === -1) {
repoUri = repoUri + 'library/' + imageName;
} else {
repoUri = repoUri + imageName;
}
shell.openExternal(repoUri);
},
handleTerminal: function () {
if (!this.disableTerminal()) {
metrics.track('Terminaled Into Container');
@ -119,6 +129,10 @@ var ContainerDetailsSubheader = React.createClass({
action: true,
disabled: this.disableTerminal()
});
var docsActionClass = classNames({
action: true,
disabled: false
});
var currentRoutes = _.map(this.context.router.getCurrentRoutes(), r => r.name);
var currentRoute = _.last(currentRoutes);
@ -149,6 +163,7 @@ var ContainerDetailsSubheader = React.createClass({
</div>
);
}
return (
<div className="details-subheader">
<div className="details-header-actions">
@ -161,6 +176,10 @@ var ContainerDetailsSubheader = React.createClass({
<div className="action-icon" onClick={this.handleTerminal}><span className="icon icon-docker-exec"></span></div>
<div className="btn-label">EXEC</div>
</div>
<div className={docsActionClass}>
<div className="action-icon" onClick={this.handleDocs}><span className="icon icon-open-external"></span></div>
<div className="btn-label">DOCS</div>
</div>
</div>
<div className="details-subheader-tabs">
<span className={tabHomeClasses} onClick={this.showHome}>Home</span>

Просмотреть файл

@ -13,12 +13,12 @@ var ContainerHome = React.createClass({
router: React.PropTypes.func
},
componentDidMount: function() {
componentDidMount: function () {
this.handleResize();
window.addEventListener('resize', this.handleResize);
},
componentWillUnmount: function() {
componentWillUnmount: function () {
window.removeEventListener('resize', this.handleResize);
},
@ -46,7 +46,7 @@ var ContainerHome = React.createClass({
render: function () {
if (!this.props.container) {
return;
return '';
}
let body;
@ -70,11 +70,14 @@ var ContainerHome = React.createClass({
}
sum = sum / this.props.container.Progress.amount;
if (isNaN(sum)) {
sum = 0;
}
body = (
<div className="details-progress">
<h2>Downloading Image</h2>
<h2>{(Math.round(sum*100)/100).toFixed(2)}%</h2>
<h2>{ (Math.round(sum * 100) / 100).toFixed(2) }%</h2>
<div className="container-progress-wrapper">
<ContainerProgress pBar1={values[0]} pBar2={values[1]} pBar3={values[2]} pBar4={values[3]}/>
</div>

Просмотреть файл

@ -25,7 +25,7 @@ var ContainerHomePreview = React.createClass({
}
},
componentWillUnmount: function() {
componentWillUnmount: function () {
clearInterval(this.timer);
},

Просмотреть файл

@ -2,6 +2,8 @@ import _ from 'underscore';
import React from 'react/addons';
import shell from 'shell';
import ContainerUtil from '../utils/ContainerUtil';
import containerActions from '../actions/ContainerActions';
import containerStore from '../stores/ContainerStore';
import metrics from '../utils/MetricsUtil';
import {webPorts} from '../utils/Util';
@ -11,50 +13,88 @@ var ContainerSettingsPorts = React.createClass({
},
getInitialState: function () {
return {
ports: {},
defaultPort: null
ports: ContainerUtil.ports(this.props.container)
};
},
componentDidMount: function() {
if (!this.props.container) {
return;
}
var ports = ContainerUtil.ports(this.props.container);
this.setState({
ports: ports,
defaultPort: _.find(_.keys(ports), function (port) {
return webPorts.indexOf(port) !== -1;
})
});
},
handleViewLink: function (url) {
metrics.track('Opened In Browser', {
from: 'settings'
});
shell.openExternal(url);
},
handleChangeDefaultPort: function (port, e) {
if (e.target.checked) {
this.setState({
defaultPort: port
});
} else {
this.setState({
defaultPort: null
});
handleChangePort: function(key, e) {
var ports = this.state.ports;
var port = e.target.value;
// save updated port
ports[key] = _.extend(ports[key], {
url: 'http://' + ports[key]['ip'] + ':' + port,
port: port,
error: null
});
// basic validation, if number is integer, if its in range, if there
// is no collision with ports of other containers and also if there is no
// collision with ports for current containser
const name = this.props.container.Name;
const containers = containerStore.getState().containers;
const container = ContainerUtil.isPortCollision(name, containers, port);
const duplicates = _.filter(ports, (v, i) => {
return (i != key && _.isEqual(v.port, port));
});
if (!port.match(/^[0-9]+$/g)) {
ports[key].error = 'Needs to be an integer.';
}
else if (port <= 0 || port > 65535) {
ports[key].error = 'Needs to be in range <1,65535>.';
}
else if (container) {
ports[key].error = 'Collision with port at container "'+ container.Name +'"';
}
else if (duplicates.length > 0) {
ports[key].error = "Collision with other port at container.";
}
else if (port == 22 || port == 2376) {
ports[key].error = "Ports 22 and 2376 are reserved ports for Kitematic/Docker.";
}
this.setState({ ports: ports });
},
handleSave: function() {
containerActions.update(this.props.container.Name, {
NetworkSettings: {
Ports: _.reduce(this.state.ports, function(res, value, key) {
res[key + '/tcp'] = [{
HostIp: value.ip,
HostPort: value.port,
}];
return res;
}, {})
}
});
},
render: function () {
if (!this.props.container) {
return false;
}
var isUpdating = (this.props.container.State.Updating);
var isValid = true;
var ports = _.map(_.pairs(this.state.ports), pair => {
var key = pair[0];
var val = pair[1];
var {ip, port, url, error} = pair[1];
isValid = (error) ? false : isValid;
let ipLink = (this.props.container.State.Running && !this.props.container.State.Paused && !this.props.container.State.ExitCode && !this.props.container.State.Restarting) ? (<a onClick={this.handleViewLink.bind(this, url)}>{ip}</a>):({ip});
return (
<tr key={key}>
<td>{key}</td>
<td><a onClick={this.handleViewLink.bind(this, val.url)}>{val.display}</a></td>
<td className="bind">
{ipLink}:
<input
type="text"
disabled={isUpdating}
onChange={this.handleChangePort.bind(this, key)}
defaultValue={port} />
</td>
<td className="error">{error}</td>
</tr>
);
});
@ -66,13 +106,19 @@ var ContainerSettingsPorts = React.createClass({
<thead>
<tr>
<th>DOCKER PORT</th>
<th>ACCESS URL</th>
<th>MAC IP:PORT</th>
<th></th>
</tr>
</thead>
<tbody>
{ports}
</tbody>
</table>
<a className="btn btn-action"
disabled={isUpdating || !isValid}
onClick={this.handleSave}>
Save
</a>
</div>
</div>
);

Просмотреть файл

@ -28,21 +28,42 @@ var ContainerUtil = {
}
var res = {};
var ip = docker.host;
_.each(container.NetworkSettings.Ports, function (value, key) {
var ports = (container.NetworkSettings.Ports) ? container.NetworkSettings.Ports : (container.HostConfig.PortBindings) ? container.HostConfig.PortBindings : container.Config.ExposedPorts;
_.each(ports, function (value, key) {
var dockerPort = key.split('/')[0];
var localUrl = null;
var localUrlDisplay = null;
var port = null;
if (value && value.length) {
var port = value[0].HostPort;
localUrl = 'http://' + ip + ':' + port;
localUrlDisplay = ip + ':' + port;
}
res[dockerPort] = {
url: localUrl,
display: localUrlDisplay
ip: ip,
port: port
};
});
return res;
},
/**
* Check if there is port colision with other containers
* @param {String} name name of the current container
* @param {Array} containers array of all containers
* @param {String} port
* @return {Object|null} return nothing or container with colision
*/
isPortCollision: function (name, containers, port) {
var interfaces = {};
_.forEach(containers, container => {
if (container.Name != name) {
_.forEach(this.ports(container), (ip) => {
interfaces[ip + ':' + port] = container;
});
}
});
return interfaces[docker.host + ':' + port];
}
};

Просмотреть файл

@ -262,7 +262,7 @@ export default {
},
restart (name) {
this.client.getContainer(name).stop(stopError => {
this.client.getContainer(name).stop({t: 10}, stopError => {
if (stopError && stopError.statusCode !== 304) {
containerServerActions.error({name, stopError});
return;
@ -278,7 +278,7 @@ export default {
},
stop (name) {
this.client.getContainer(name).stop(error => {
this.client.getContainer(name).stop({t: 10}, error => {
if (error && error.statusCode !== 304) {
containerServerActions.error({name, error});
return;

Просмотреть файл

@ -98,11 +98,11 @@ module.exports = {
},
compareVersions: function (v1, v2, options) {
var lexicographical = options && options.lexicographical,
zeroExtend = options && options.zeroExtend,
v1parts = v1.split('.'),
v2parts = v2.split('.');
zeroExtend = options && options.zeroExtend,
v1parts = v1.split('.'),
v2parts = v2.split('.');
function isValidPart(x) {
function isValidPart (x) {
return (lexicographical ? /^\d+[A-Za-z]*$/ : /^\d+$/).test(x);
}
@ -130,11 +130,9 @@ module.exports = {
}
if (v1parts[i] === v2parts[i]) {
continue;
}
else if (v1parts[i] > v2parts[i]) {
} else if (v1parts[i] > v2parts[i]) {
return 1;
}
else {
} else {
return -1;
}
}
@ -148,9 +146,9 @@ module.exports = {
randomId: function () {
return crypto.randomBytes(32).toString('hex');
},
windowsToLinuxPath: function(windowsAbsPath) {
windowsToLinuxPath: function (windowsAbsPath) {
var fullPath = windowsAbsPath.replace(':', '').split(path.sep).join('/');
if(fullPath.charAt(0) !== '/'){
if (fullPath.charAt(0) !== '/') {
fullPath = '/' + fullPath.charAt(0).toLowerCase() + fullPath.substring(1);
}
return fullPath;
@ -158,5 +156,5 @@ module.exports = {
linuxToWindowsPath: function (linuxAbsPath) {
return linuxAbsPath.replace('/c', 'C:').split('/').join('\\');
},
webPorts: ['80', '8000', '8080', '3000', '5000', '2368', '9200', '8983']
webPorts: ['80', '8000', '8080', '8888', '3000', '5000', '2368', '9200', '8983']
};

Просмотреть файл

@ -112,7 +112,27 @@
}
.table {
&.ports {
max-width: 500px;
input {
width: 50px;
border: 0;
}
tr {
td {
&:first-child {
width: 120px;
}
&.bind {
width: 190px;
}
&.error {
text-align: left;
color: red;
padding-left: 10px;
padding-right: 10px;
border: 0;
}
}
}
}
&.volumes {
max-width: 100%;