-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
148 lines (128 loc) · 4.15 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/**
*
* Latency
* - a Browsersync.io plugin.
*
*/
var config = require("./config");
//var utils = require("./utils");
var Immutable = require("immutable");
/**
* @param {Object} opts
* @param {BrowserSync} bs
*/
module.exports["plugin"] = function (opts, bs) {
const ui = bs.ui;
const optPath = config.OPT_PATH;
var pluginActive = true;
const itemsPath = config.OPT_PATH.concat('items');
const items = opts.routes && opts.routes.length
? Immutable.fromJS(opts.routes)
: Immutable.List([]);
var mutableItems = [];
bs.addMiddleware('*', function (req, res, next) {
if (!pluginActive) {
return next();
}
var match = mutableItems.filter(function (item) {
return req.url.match(new RegExp('^' + item.route)) && item.active;
});
if (match.length && match[0].active) {
setTimeout(next, match[0].latency);
} else {
next();
}
}, {override: true});
ui.setOptionIn(optPath, Immutable.Map({
name: config.PLUGIN_SLUG,
title: config.PLUGIN_NAME,
active: true,
tagline: config.TAG_LINE,
rate: 0,
config: config,
items: Immutable.List([])
}));
var uid = items.size;
bs.events.on('plugins:configure', function (data) {
if (data.name !== config.PLUGIN_NAME) {
return;
}
pluginActive = data.active;
ui.options = ui.options.setIn(config.OPT_PATH.concat('active'), data.active);
});
function resendItems(updated) {
ui.options = updated;
mutableItems = ui.options.getIn(itemsPath).toJS();
ui.socket.emit(config.EVENT_UPDATE, {items:mutableItems});
}
var methods = {
add: function (incoming) {
if (!incoming.route.match(/^\//)) {
incoming.route = '/' + incoming.route;
}
if (incoming.id !== undefined) {
methods.edit(incoming);
return;
}
const updated = ui.options.updateIn(itemsPath, function (items) {
const match = items.filter(function (item) {
return item.get('route') === incoming.route;
});
if (match.size) {
return items;
}
return items.push(Immutable.fromJS(incoming).set('id', uid++));
});
resendItems(updated);
},
delete: function (incomingItem) {
const updated = ui.options.updateIn(itemsPath, function (items) {
return items.filter(function (item) {
return item.get('id') !== incomingItem.id;
})
});
resendItems(updated);
},
pause: function (incoming) {
const updated = ui.options.updateIn(itemsPath, function (items) {
return items.map(function (item) {
if (item.get('id') === incoming.id) {
return item.merge({active: incoming.active});
}
return item;
});
});
resendItems(updated);
},
edit: function (incoming) {
const updated = ui.options.updateIn(itemsPath, function (items) {
return items.map(function (item) {
if (item.get('id') === incoming.id) {
return item.merge({
route: incoming.route,
latency: incoming.latency,
active: incoming.active
});
}
return item;
});
});
resendItems(updated);
},
event: function (event) {
methods[event.event](event.data);
}
};
if (opts.routes && opts.routes.length) {
opts.routes.forEach(function (item) {
methods.add(item);
})
}
ui.listen(config.NS, methods);
return methods;
};
/**
* Plugin name.
* @type {string}
*/
module.exports["plugin:name"] = config.PLUGIN_NAME;