-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscript.js
executable file
·312 lines (268 loc) · 9.78 KB
/
script.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
define(['jquery', 'underscore', 'twigjs'], function ($, _, twigjs) {
var CustomWidget = function () {
var self = this;
this.getTemplate = _.bind(function (template, params, callback) {
params = typeof params == 'object' ? params : {};
template = template || '';
return this.render({
href: '/templates/' + template + '.twig',
base_path: this.params.path,
v: this.get_version(),
load: callback
}, params);
}, this);
this.callbacks = {
render: function () {
console.log('render');
return true;
},
init: _.bind(function () {
console.log('init');
AMOCRM.addNotificationCallback(self.get_settings().widget_code, function (data) {
console.log(data);
});
this.add_action('phone', function (params) {
/**
* код взаимодействия с виджетом телефонии
*/
console.log(params);
});
this.add_source('sms', function (params) {
/**
params - это объект в котором будут необходимые параметры для отправки смс
{
// телефон получателя
"phone": 75555555555,
// сообщение для отправки
"message": "sms text",
// идентификатор контакта, к которому привязан номер телефона
"contact_id": 12345
}
*/
return new Promise(_.bind(function (resolve, reject) {
// тут будет описываться логика для отправки смс
self.crm_post(
'https://example.com/',
params,
// eslint-disable-next-line max-nested-callbacks
function (msg) {
console.log(msg);
resolve();
},
'text'
);
}, this)
);
});
return true;
}, this),
bind_actions: function () {
console.log('bind_actions');
return true;
},
settings: _.bind(function ($modal_body) {
this.getTemplate(
'oferta',
{},
function (template) {
var $install_btn = $('button.js-widget-install'),
$oferta_error = $('div.oferta_error');
$modal_body.find('input[name="oferta"]').val(''); // очищаем принудительно поле oferta
$modal_body.find('.widget_settings_block__item_field:visible')
.last()
.after(
template.render({ oferta: self.i18n('settings').oferta, oferta_error: self.i18n('settings').oferta_error })
); // отрисовываем шаблон и добавляем в блок настроек виджета
$modal_body.find('input[name="oferta_check"]').on('change', function (e) {
var $checkbox = $(e.currentTarget);
if ($checkbox.prop('checked')) {
$modal_body.find('input[name="oferta"]').val('1'); // заполняем поле oferta, если чекбокс отмечен
$oferta_error.addClass('hidden'); // скрываем предупреждение, если оно отображено
} else {
$modal_body.find('input[name="oferta"]').val(''); // очищаем поле oferta, если не отмечен чекбокс
}
});
// при нажатии на кнопку "Установить", если не отмечен чекбокс,
// отображаем предупреждение
$install_btn.on('click', function () {
if (!$modal_body.find('input[name="oferta"]').val()) {
$oferta_error.removeClass('hidden');
}
});
}
);
return true;
}, this),
onSave: function () {
console.log('click');
return true;
},
destroy: function () {
_.noop();
},
contacts: {
// select contacts in list and clicked on widget name
selected: function () {
console.log('contacts');
}
},
leads: {
// select leads in list and clicked on widget name
selected: function () {
console.log('leads');
}
},
tasks: {
// select taks in list and clicked on widget name
selected: function () {
console.log('tasks');
}
},
advancedSettings: _.bind(function () {
var $work_area = $('#work-area-' + self.get_settings().widget_code),
$save_button = $(
twigjs({ ref: '/tmpl/controls/button.twig' }).render({
text: 'Сохранить',
class_name: 'button-input_blue button-input-disabled js-button-save-' + self.get_settings().widget_code,
additional_data: ''
})
),
$cancel_button = $(
twigjs({ ref: '/tmpl/controls/cancel_button.twig' }).render({
text: 'Отмена',
class_name: 'button-input-disabled js-button-cancel-' + self.get_settings().widget_code,
additional_data: ''
})
);
console.log('advancedSettings');
$save_button.prop('disabled', true);
$('.content__top__preset').css({ float: 'left' });
$('.list__body-right__top').css({ display: 'block' })
.append('<div class="list__body-right__top__buttons"></div>');
$('.list__body-right__top__buttons').css({ float: 'right' })
.append($cancel_button)
.append($save_button);
self.getTemplate('advanced_settings', {}, function (template) {
var $page = $(
template.render({ title: self.i18n('advanced').title, widget_code: self.get_settings().widget_code })
);
$work_area.append($page);
});
}, self),
/**
* Метод срабатывает, когда пользователь в конструкторе
* Salesbot размещает один из хендлеров виджета.
* Мы должны вернуть JSON код salesbot'а
*
* @param handler_code - Код хендлера, который мы предоставляем.
* Описан в manifest.json, в примере равен handler_code
* @param params - Передаются настройки виджета. Формат такой:
* {
* button_title: "TEST",
* button_caption: "TEST",
* text: "{{lead.cf.10929}}",
* number: "{{lead.price}}",
* url: "{{contact.cf.10368}}"
* }
*
* @return {{}}
*/
onSalesbotDesignerSave: function (handler_code, params) {
var salesbot_source = {
question: [],
require: []
},
salesbot_second_step = {
question: [],
require: []
},
button_caption = params.button_caption || '',
button_title = params.button_title || '',
text = params.text || '',
number = params.number || 0,
handler_template = {
handler: 'show',
params: {
type: 'buttons',
value: text + ' ' + number,
buttons: [
button_title + ' ' + button_caption,
]
}
};
console.log(params);
salesbot_source.question.push(handler_template);
var request_data = {};
if (AMOCRM.getBaseEntity() === 'customers') {
request_data.customer = '{{customer.id}}';
} else {
request_data.lead = '{{lead.id}}';
}
salesbot_source.question.push({
handler: 'widget_request',
params: {
url: 'https://example.com/salesbot',
data: request_data
}
});
salesbot_source.question.push({
handler: 'goto',
params: {
type: 'question',
step: 1
}
});
salesbot_second_step.question.push({
handler: 'conditions',
params: {
logic: 'and',
conditions: [
{
term1: '{{json.status}}',
term2: 'success',
operation: '='
}
],
result: [
{
handler: 'exits',
params: {
value: 'success'
}
}
]
}
});
salesbot_second_step.question.push({
handler: 'exits',
params: {
value: 'fail'
}
});
return JSON.stringify([salesbot_source, salesbot_second_step]);
},
/**
* Метод, который позволяет отрисовать кастомные настройки виджета в Salesbot
*
* В ответе можно вернуть выходы, которые будут у блока
*
* @param $body
* @param rowTemplate
* @param params
*/
salesbotDesignerSettings: function ($body, rowTemplate, params) {
return {
exits: [
{ code: 'success', title: self.i18n('salesbot').success_callback_title },
{ code: 'fail', title: self.i18n('salesbot').fail_callback_title }
]
};
},
onAddAsSource: function (pipeline_id) {
console.log(pipeline_id);
}
};
return this;
};
return CustomWidget;
});