var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.machineWidth = Number($('.machine').css('width').replace(/px/, ""));
$scope.machineHeight = Number($('.machine').css('height').replace(/px/, ""));
$scope.machineBorder = Number($('.machine').css('border').replace(/px\s\w+\s\w+\S\d+\S\s*\d+\S\s*\d+\S/, ""));
$scope.machineTotalHeight = Number($scope.machineHeight + 2 * $scope.machineBorder);
$scope.machineTotalWidth = Number($scope.machineWidth + 2 * $scope.machineBorder);
$scope.middleLineWidth = Number($('#middleLine').css("width").replace(/px/, ""));
$scope.middleLineTop = Number($('#middleLine').css("top").replace(/px/, ""));
$scope.middleLineLeft = Number($('#middleLine').css("left").replace(/px/, ""));
$scope.thicknessHorizontalLine = Number($('.horizontal').css('border-bottom').replace(/px\s\w+\s\w+\S\d+\S\s*\d+\S\s*\d+\S/, ""));
$scope.palletHeight = 10;
$scope.palletWidth = 30;
$scope.startPositionMiddleLine = {
top: $scope.middleLineTop - $scope.palletHeight,
left: $scope.middleLineLeft
};
$scope.machines = [];
$('.machine').each(function(index) {
var id = $(this).attr("id");
var top = Number($(this).css("top").replace(/px/, ""));
var left = Number($(this).css("left").replace(/px/, ""));
$scope.machines.push({
id: id,
top: top,
left: left
});
});
var pathsFromStartToMachines = [];
for (var i = 0; i < $scope.machines.length; i++) {
var id = $scope.machines[i].id;
var top = undefined;
if ($("#" + id).hasClass('first-machine-line')) {
top = $scope.machines[i].top + $scope.machineTotalHeight;
} else {
top = $scope.machines[i].top - $scope.palletHeight;
}
var left = $scope.machines[i].left + $scope.machineTotalWidth / 2;
var waypoints = [];
waypoints.push($scope.startPositionMiddleLine);
waypoints.push({
top: $scope.middleLineTop - $scope.palletHeight,
left: left - $scope.palletWidth / 2
});
waypoints.push({
top: top,
left: left - $scope.palletWidth / 2
});
var path = {
id: id,
waypoints: waypoints
};
pathsFromStartToMachines.push(path)
}
$scope.pallets = [];
$scope.createNewPallet = function(type, position) {
var id = "pallet" + generateId();
while ($scope.pallets.indexOf(id) !== -1) {
id = "pallet" + generateId();
}
$('#mainContainer').append('<div class="pallet" id="' + id + '" style="display:none; top:' + position.top + 'px; left:' + position.left + 'px;"></div>');
$scope.pallets.push(id);
$('#' + id).fadeIn("50000");
return id;
};
$scope.movePallet = function(palletId, destinationId) {
var path = $.grep(pathsFromStartToMachines, function(obj) {
return obj.id === destinationId;
});
for (var i = 0; i < path[0].waypoints.length; i++) {
var waypoint = path[0].waypoints[i];
$('#' + palletId).animate({
left: waypoint.left + 'px',
top: waypoint.top + 'px'
}, "slow");
}
$('#' + palletId).fadeOut("slow", function() {
$('#' + palletId).remove();
});
};
$scope.movePallet($scope.createNewPallet(1, $scope.startPositionMiddleLine), "m1");
setTimeout(function() {
$scope.movePallet($scope.createNewPallet(1, $scope.startPositionMiddleLine), "m5");
}, 1500);
setTimeout(function() {
$scope.movePallet($scope.createNewPallet(1, $scope.startPositionMiddleLine), "m2");
}, 3000);
setTimeout(function() {
$scope.movePallet($scope.createNewPallet(1, $scope.startPositionMiddleLine), "m4");
}, 4500);
setTimeout(function() {
$scope.movePallet($scope.createNewPallet(1, $scope.startPositionMiddleLine), "m3");
}, 6000);
function generateId() {
return Math.floor((Math.random() * 10000) + 1);
}
});
#mainContainer > div {
position: absolute;
}
#mainContainer {
position: relative;
width: 700px;
height: 400px;
border: 3px solid slategrey;
background-color: whitesmoke;
}
div.machine {
width: 60px;
height: 60px;
border: 3px solid darkslategray;
border-radius: 12px;
text-align: center;
vertical-align: middle;
line-height: 60px;
background-color: lightslategray;
color: whitesmoke;
font-family: Verdana, Helvetica, sans-serif;
}
.first-machine-line {
top: 10%;
}
.second-machine-line {
top: 50%;
}
#m1 {
left: 30%;
}
#m2 {
left: 50%;
}
#m3 {
left: 70%;
}
#m4 {
left: 30%;
}
#m5 {
left: 50%;
}
.line {
border: 0;
background: lightgrey;
}
.horizontal {
border-bottom: 2px dashed dimgrey;
}
.vertical {
border-left: 2px dashed dimgrey;
}
#middleLine {
width: 70%;
top: calc((50% - 10% - 66px) / 2 + 10% + 66px);
left: 20%;
}
.vertical-line {
height: calc((50% - 10% - 66px) / 2);
}
.vertical-line-first-machine-line {
top: calc(10% + 66px);
}
.vertical-line-second-machine-line {
top: calc(10% + 66px + (50% - 10% - 66px) / 2);
}
#M1toMiddle {
left: calc(30% + 66px / 2);
}
#M2toMiddle {
left: calc(50% + 66px / 2);
}
#M3toMiddle {
left: calc(70% + 66px / 2);
}
#M4toMiddle {
left: calc(30% + 66px / 2);
}
#M5toMiddle {
left: calc(50% + 66px / 2);
}
.pallet {
width: 30px;
height: 10px;
background-color: dimgrey;
border-radius: 2px;
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<body ng-app="myApp" ng-controller="myCtrl">
<div id="mainContainer" class="relative">
<div class="machine first-machine-line" id="m1">M1</div>
<div class="machine first-machine-line" id="m2">M2</div>
<div class="machine first-machine-line" id="m3">M3</div>
<div class="machine second-machine-line" id="m4">M4</div>
<div class="machine second-machine-line" id="m5">M5</div>
<div class="line horizontal" id="middleLine"></div>
<div class="line vertical vertical-line vertical-line-first-machine-line" id="M1toMiddle"></div>
<div class="line vertical vertical-line vertical-line-first-machine-line" id="M2toMiddle"></div>
<div class="line vertical vertical-line vertical-line-first-machine-line" id="M3toMiddle"></div>
<div class="line vertical vertical-line vertical-line-second-machine-line" id="M4toMiddle"></div>
<div class="line vertical vertical-line vertical-line-second-machine-line" id="M5toMiddle"></div>
</div>
</body>