-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathreact-freshchat.js
176 lines (149 loc) · 3.15 KB
/
react-freshchat.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
import _ from 'lodash/fp'
import React from 'react'
class Queue {
constructor() {
this.data = []
this.index = 0
}
queue(value) {
this.data.push(value)
}
dequeue() {
if (this.index > -1 && this.index < this.data.length) {
let result = this.data[this.index++]
if (this.isEmpty) {
this.reset()
}
return result
}
}
get isEmpty() {
return this.index >= this.data.length
}
dequeueAll(cb) {
if (!_.isFunction(cb)) {
throw new Error(`Please provide a callback`)
}
while (!this.isEmpty) {
let { method, args } = this.dequeue()
cb(method, args)
}
}
reset() {
this.data.length = 0
this.index = 0
}
}
let fakeWidget
let earlyCalls = new Queue()
export let widget = (fake = fakeWidget) => {
if (window.fcWidget) return window.fcWidget
if (!fake) fake = mockMethods(availableMethods)
return fake
}
let mockMethods = methods => {
let obj = {}
methods.forEach(method => {
obj = _.set(method, queueMethod(method), obj)
})
return obj
}
let queueMethod = method => (...args) => {
earlyCalls.queue({ method, args })
}
let loadScript = () => {
let id = 'freshchat-lib'
if (document.getElementById(id) || window.fcWidget) return
let script = document.createElement('script')
script.async = 'true'
script.type = 'text/javascript'
script.src = 'https://wchat.freshchat.com/js/widget.js'
script.id = id
document.head.appendChild(script)
}
class FreshChat extends React.Component {
constructor(props) {
super(props)
let { token, ...moreProps } = props
if (!token) {
throw new Error(`token is required`)
}
this.init({
host: 'https://wchat.freshchat.com',
token,
...moreProps,
})
}
init(settings) {
if (settings.onInit) {
let tmp = settings.onInit
settings.onInit = () => tmp(widget())
}
if (window.fcWidget) {
window.fcWidget.init(settings)
if (settings.onInit) {
settings.onInit()
}
} else {
this.lazyInit(settings)
}
}
lazyInit(settings) {
widget().init(settings) // Can't use window.fcSettings because sometimes it doesn't work
loadScript()
let interval = setInterval(() => {
if (window.fcWidget) {
clearInterval(interval)
try {
earlyCalls.dequeueAll((method, value) => {
window.fcWidget[method](...value)
})
} catch (e) {
console.error(e)
}
if (settings.onInit) {
settings.onInit()
}
}
}, 1000)
}
render() {
return false
}
componentWillUnmount() {
widget().close()
}
}
let availableMethods = [
'close',
'destroy',
'hide',
'init',
'isInitialized',
'isLoaded',
'isOpen',
'off',
'on',
'open',
'setConfig',
'setExternalId',
'setFaqTags',
'setTags',
'track',
'user.show',
'user.track',
'user.user',
'user.clear',
'user.create',
'user.get',
'user.isExists',
'user.setEmail',
'user.setFirstName',
'user.setLastName',
'user.setMeta',
'user.setPhone',
'user.setPhoneCountryCode',
'user.setProperties',
'user.update',
]
export default FreshChat