WXL
4 天以前 2cc85c64f1c64a2dbaeae276a3e2ca8420de76b7
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
"use strict";
 
/* global __resourceQuery */
 
var urlBase = decodeURIComponent(__resourceQuery.slice(1));
 
/**
 * @param {{ data: string, onError: (err: Error) => void, active: boolean, module: module }} options options
 * @returns {() => void} function to destroy response
 */
exports.keepAlive = function (options) {
    var data = options.data;
 
    /**
     * @param {Error} err error
     */
    function errorHandler(err) {
        err.message =
            "Problem communicating active modules to the server: " + err.message;
        options.onError(err);
    }
 
    /** @type {Promise<import("http") | import("https")>} */
    var mod = require("./load-http")(urlBase.startsWith("https"));
 
    /** @type {import("http").ClientRequest} */
    var request;
    /** @type {import("http").IncomingMessage} */
    var response;
 
    mod.then(function (client) {
        request = client.request(
            urlBase + data,
            {
                agent: false,
                headers: { accept: "text/event-stream" }
            },
            function (res) {
                response = res;
                response.on("error", errorHandler);
 
                if (!options.active && !options.module.hot) {
                    console.log(
                        "Hot Module Replacement is not enabled. Waiting for process restart..."
                    );
                }
            }
        );
 
        request.on("error", errorHandler);
        request.end();
    });
 
    return function () {
        if (response) {
            response.destroy();
        }
    };
};
 
/**
 * @param {string} value new url value
 */
exports.setUrl = function (value) {
    urlBase = value;
};