Merge pull request #735 from JulioJu/feat/add-intercom-service

feat: add Intercom chat service
This commit is contained in:
Amauri CHAMPEAUX 2021-08-30 10:35:52 +02:00 committed by GitHub
commit 8f48dc3465
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 61 additions and 0 deletions

View File

@ -2502,6 +2502,67 @@ tarteaucitron.services.purechat = {
} }
}; };
// Intercom
tarteaucitron.services.intercomChat = {
"key": "intercomChat",
"type": "support",
"name": "Intercom",
"uri": "https://www.intercom.com/",
"needConsent": true,
"cookies": [
"intercom-id-" + tarteaucitron.user.intercomKey,
"intercom-session-" + tarteaucitron.user.intercomKey,
],
"readmoreLink": "https://www.intercom.com/legal/privacy",
"js": function () {
window.intercomSettings = {
app_id: tarteaucitron.user.intercomKey,
};
var w = window;
var ic = w.Intercom;
if (typeof ic === "function") {
ic("reattach_activator");
ic("update", w.intercomSettings);
} else {
var i = function () {
i.c(arguments);
};
i.q = [];
i.c = function (args) {
i.q.push(args);
};
w.Intercom = i;
tarteaucitron.addScript(
"https://widget.intercom.io/widget/" + tarteaucitron.user.intercomKey,
"",
function () {
// Execute callback if function `intercomChatEnable`
// is defined
if (typeof intercomChatEnable === 'function') {
intercomChatEnable()
}
},
);
}
},
"fallback": function () {
"use strict";
var id = "intercomChat";
tarteaucitron.fallback(
["intercom-chat"],
function () {
// Execute callback if function `intercomChatDisable`
// is defined
if (typeof intercomChatDisable === 'function') {
intercomChatDisable()
}
return tarteaucitron.engage(id)
}
);
},
};
// rumbletalk // rumbletalk
tarteaucitron.services.rumbletalk = { tarteaucitron.services.rumbletalk = {
"key": "rumbletalk", "key": "rumbletalk",