mirror of
https://github.com/openstf/stf
synced 2025-10-05 10:39:25 +02:00
98 lines
3.1 KiB
JavaScript
98 lines
3.1 KiB
JavaScript
module.exports = function SocketStateDirectiveFactory(socket, growl, gettext) {
|
|
return {
|
|
restrict: 'EA',
|
|
template: require('./socket-state.jade'),
|
|
// scope: {
|
|
// }
|
|
link: function (scope) {
|
|
var hasFailedOnce = false
|
|
|
|
socket.on('connect', function () {
|
|
scope.$apply(function () {
|
|
scope.socketState = 'connect'
|
|
})
|
|
})
|
|
|
|
socket.on('connecting', function () {
|
|
scope.$apply(function () {
|
|
scope.socketState = 'connecting'
|
|
})
|
|
})
|
|
|
|
socket.on('disconnect', function () {
|
|
scope.$apply(function () {
|
|
scope.socketState = 'disconnect'
|
|
})
|
|
hasFailedOnce = true
|
|
})
|
|
|
|
socket.on('connect_failed', function () {
|
|
scope.$apply(function () {
|
|
scope.socketState = 'connect_failed'
|
|
})
|
|
hasFailedOnce = true
|
|
})
|
|
|
|
socket.on('error', function () {
|
|
scope.$apply(function () {
|
|
scope.socketState = 'error'
|
|
})
|
|
hasFailedOnce = true
|
|
})
|
|
|
|
socket.on('reconnect_failed', function () {
|
|
scope.$apply(function () {
|
|
scope.socketState = 'reconnect_failed'
|
|
})
|
|
hasFailedOnce = true
|
|
})
|
|
|
|
socket.on('reconnect', function () {
|
|
scope.$apply(function () {
|
|
scope.socketState = 'reconnect'
|
|
})
|
|
hasFailedOnce = true
|
|
})
|
|
|
|
socket.on('reconnecting', function () {
|
|
scope.$apply(function () {
|
|
scope.socketState = 'reconnecting'
|
|
})
|
|
hasFailedOnce = true
|
|
})
|
|
|
|
scope.$watch('socketState', function (newValue, oldValue) {
|
|
if (newValue) {
|
|
if (newValue === 'connecting' && oldValue) {
|
|
growl.info('<h4>WebSocket</h4>' + gettext('Connecting...'), {ttl: 1000})
|
|
} else if (newValue === 'connect' && oldValue === 'connecting') {
|
|
if (hasFailedOnce) {
|
|
growl.success('<h4>WebSocket</h4>' + gettext('Connected successfully.') + '<refresh-page></refresh-page>', {ttl: 2000})
|
|
}
|
|
} else {
|
|
switch (newValue) {
|
|
case 'disconnect':
|
|
growl.error('<h4>WebSocket</h4>' + gettext('Disconnected.<br />Socket connection was lost, try again reloading the page.'), {ttl: -1})
|
|
break;
|
|
case 'connect_failed':
|
|
growl.error('<h4>WebSocket</h4>' + gettext('Error while connecting.'), {ttl: -1})
|
|
break;
|
|
case 'error':
|
|
growl.error('<h4>WebSocket</h4>' + gettext('Error.'), {ttl: -1})
|
|
break;
|
|
case 'reconnect_failed':
|
|
growl.error('<h4>WebSocket</h4>' + gettext('Error while reconnecting.'), {ttl: -1})
|
|
break;
|
|
case 'reconnect':
|
|
growl.success('<h4>WebSocket</h4>' + gettext('Reconnected successfully.'), {ttl: -1})
|
|
break;
|
|
case 'reconnecting':
|
|
growl.error('<h4>WebSocket</h4>' + gettext('Reconnecting...') + '<refresh-page></refresh-page>', {ttl: -1})
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|