-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcloudinary-fields.js
395 lines (379 loc) · 14 KB
/
cloudinary-fields.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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
/**
* THIS FILE IS USED FOR THE AGILITY'S CUSTOM FIELDS
*/
var baseUrl = "https://agility.github.io/CustomFields/"
// Set your cloudinary settings here so your custom field can communicate with cloudinary
var cloudinarySettings = {
cloud_name: '',
api_key: ''
}
var integrationSettings = {
type: 'agility_cloudinary_custom_field',
platform: 'agilitycms',
version: '1.0',
environment: 'prod'
}
if(!cloudinarySettings.cloud_name || !cloudinarySettings.api_key) {
console.error('Cloudinary `cloud_name` and `api_key` must be set in your Custom field script.')
}
var CloudinaryVideoField = function () {
var field = this;
field.Label = "Cloudinary Video";
field.ReferenceName = "CloudinaryVideo";
field.Render = function (options) {
var $pnl = $(".cloudinary-video-field", options.$elem);
if ($pnl.size() == 0) {
//pull down the html template and load it into the element
$.get(baseUrl + "cloudinary/cloudinary-video.html", function (htmlContent) {
options.$elem.append(htmlContent)
$pnl = $(".cloudinary-video-field", options.$elem);
$.getScript("https://media-library.cloudinary.com/global/all.js")
//bind our viewmodel to this
var viewModel = new function () {
var self = this;
//our model
self.defaultBinding = {
url: ko.observable(null),
public_id: ko.observable(null),
resource_type: ko.observable(null),
secure_url: ko.observable(null),
width: ko.observable(null),
height: ko.observable(null),
bytes: ko.observable(null),
duration: ko.observable(null),
derived: {
secure_url: ko.observable(null),
url: ko.observable(null),
raw_transformation: ko.observable(null)
}
}
self.fieldBinding = ko.observable(null);
//init a default if null
if (options.fieldBinding() == null || options.fieldBinding() == "") {
var copy = self.defaultBinding;
self.fieldBinding(copy); //init defaults
} else {
//set observables on the existing binding properties
var existingValue = JSON.parse(options.fieldBinding());
if(!existingValue.derived) {
existingValue.derived = {
secure_url: null,
url: null,
raw_transformation: null
};
}
var existingBinding = ko.mapping.fromJS(existingValue);
self.fieldBinding(existingBinding);
}
//whenever any sub-property in the fieldBinding changes update the main field binding in the model
ko.computed(function () {
return ko.mapping.toJSON(self.fieldBinding);
}).subscribe(function () {
var fieldBindingJSON = ko.mapping.toJSON(self.fieldBinding());
options.fieldBinding(fieldBindingJSON);
});
self.formattedDuration = ko.computed(function () {
//returns a formatted duration
var duration = self.fieldBinding().duration();
if (duration != null) {
duration = duration + ' (seconds)';
}
return duration;
});
self.chooseVideo = function () {
window.ml = cloudinary.openMediaLibrary({
cloud_name: cloudinarySettings.cloud_name,
api_key: cloudinarySettings.api_key,
insert_caption: "Choose Video",
multiple: false,
max_files: 1,
search: { expression: 'resource_type:video' },
integration: integrationSettings
}, {
insertHandler: function (data) {
data.assets.forEach(asset => {
self.fieldBinding().url(asset.url)
self.fieldBinding().public_id(asset.public_id)
self.fieldBinding().resource_type(asset.resource_type)
self.fieldBinding().secure_url(asset.secure_url)
self.fieldBinding().width(asset.width)
self.fieldBinding().height(asset.height)
self.fieldBinding().bytes(asset.bytes)
self.fieldBinding().duration(asset.duration)
if(asset.derived && asset.derived[0]) {
self.fieldBinding().derived.secure_url(asset.derived[0].secure_url);
self.fieldBinding().derived.url(asset.derived[0].url);
self.fieldBinding().derived.raw_transformation(asset.derived[0].raw_transformation);
} else {
self.fieldBinding().derived.secure_url(null);
self.fieldBinding().derived.url(null);
self.fieldBinding().derived.raw_transformation(null);
}
console.log("Inserted asset:",
JSON.stringify(asset, null, 2))
})
}
}
)
};
self.editVideo = function () {
window.ml = cloudinary.openMediaLibrary({
cloud_name: cloudinarySettings.cloud_name,
api_key: cloudinarySettings.api_key,
insert_caption: "Choose Video",
multiple: false,
max_files: 1,
asset: { resource_type: "video", type: "upload", public_id: self.fieldBinding().public_id() },
integration: integrationSettings
}, {
insertHandler: function (data) {
data.assets.forEach(asset => {
self.fieldBinding().url(asset.url)
self.fieldBinding().public_id(asset.public_id)
self.fieldBinding().resource_type(asset.resource_type)
self.fieldBinding().secure_url(asset.secure_url)
self.fieldBinding().width(asset.width)
self.fieldBinding().height(asset.height)
self.fieldBinding().bytes(asset.bytes)
self.fieldBinding().duration(asset.duration)
if(asset.derived && asset.derived[0]) {
self.fieldBinding().derived.secure_url(asset.derived[0].secure_url);
self.fieldBinding().derived.url(asset.derived[0].url);
self.fieldBinding().derived.raw_transformation(asset.derived[0].raw_transformation);
} else {
self.fieldBinding().derived.secure_url(null);
self.fieldBinding().derived.url(null);
self.fieldBinding().derived.raw_transformation(null);
}
console.log("Inserted asset:",
JSON.stringify(asset, null, 2))
})
}
}
)
};
self.frameSrc = ko.computed(function () {
if (self.fieldBinding().public_id() == null) {
return "about:blank";
} else {
return baseUrl + "cloudinary/cloudinary-player.html?id=" + self.fieldBinding().public_id()
}
})
self.isVideoSet = ko.computed(function () {
if (self.fieldBinding().public_id() != null) {
return true;
} else {
return false;
}
});
self.removeVideo = function () {
//confirms if user wants to remove video, if so clear all values
ContentManager.ViewModels.Navigation.messages().show("Do you wish to remove this Video?", "Remove Video",
ContentManager.Global.MessageType.Question, [{
name: "Remove",
defaultAction: true,
callback: function () {
self.fieldBinding().url(null)
self.fieldBinding().public_id(null)
self.fieldBinding().resource_type(null)
self.fieldBinding().secure_url(null)
self.fieldBinding().width(null)
self.fieldBinding().height(null)
self.fieldBinding().bytes(null)
self.fieldBinding().duration(null)
}
},
{
name: "Cancel",
cancelAction: true,
callback: function () {
//do nothing...
}
}]);
};
}
ko.applyBindings(viewModel, $pnl.get(0));
});
}
}
}
ContentManager.Global.CustomInputFormFields.push(new CloudinaryVideoField());
var CloudinaryImageField = function () {
var field = this;
field.Label = "Cloudinary Image";
field.ReferenceName = "Cloudinary Image";
field.Render = function (options) {
var $pnl = $(".cloudinary-image-field", options.$elem);
if ($pnl.size() == 0) {
//pull down the html template and load it into the element
$.get(baseUrl + "cloudinary/cloudinary-image.html", function (htmlContent) {
options.$elem.append(htmlContent)
$pnl = $(".cloudinary-image-field", options.$elem);
$.getScript("https://media-library.cloudinary.com/global/all.js")
//bind our viewmodel to this
var viewModel = new function () {
var self = this;
//our model
self.defaultBinding = {
url: ko.observable(null),
public_id: ko.observable(null),
resource_type: ko.observable(null),
secure_url: ko.observable(null),
width: ko.observable(null),
height: ko.observable(null),
bytes: ko.observable(null),
duration: ko.observable(null),
alt: ko.observable(null),
derived: {
secure_url: ko.observable(null),
url: ko.observable(null),
raw_transformation: ko.observable(null)
}
}
self.fieldBinding = ko.observable(null);
//init a default if null
if (options.fieldBinding() == null || options.fieldBinding() == "") {
var copy = self.defaultBinding;
self.fieldBinding(copy); //init defaults
} else {
var existingValue = JSON.parse(options.fieldBinding());
if(!existingValue.derived) {
existingValue.derived = {
secure_url: null,
url: null,
raw_transformation: null
};
}
var existingBinding = ko.mapping.fromJS(existingValue);
self.fieldBinding(existingBinding);
}
//whenever any sub-property in the fieldBinding changes update the main field binding in the model
ko.computed(function () {
return ko.mapping.toJSON(self.fieldBinding);
}).subscribe(function () {
var fieldBindingJSON = ko.mapping.toJSON(self.fieldBinding());
options.fieldBinding(fieldBindingJSON);
});
self.chooseImage = function () {
window.ml = cloudinary.openMediaLibrary({
cloud_name: cloudinarySettings.cloud_name,
api_key: cloudinarySettings.api_key,
insert_caption: "Choose Image",
multiple: false,
max_files: 1,
search: { expression: 'resource_type:image' },
default_transformations: [
[{quality: "auto", fetch_format: "auto"}]
],
integration: integrationSettings
}, {
insertHandler: function (data) {
data.assets.forEach(asset => {
self.fieldBinding().url(asset.url)
self.fieldBinding().public_id(asset.public_id)
self.fieldBinding().resource_type(asset.resource_type)
self.fieldBinding().secure_url(asset.secure_url)
self.fieldBinding().width(asset.width)
self.fieldBinding().height(asset.height)
self.fieldBinding().bytes(asset.bytes)
if(asset.derived && asset.derived[0]) {
self.fieldBinding().derived.secure_url(asset.derived[0].secure_url);
self.fieldBinding().derived.url(asset.derived[0].url);
self.fieldBinding().derived.raw_transformation(asset.derived[0].raw_transformation);
} else {
self.fieldBinding().derived.secure_url(null);
self.fieldBinding().derived.url(null);
self.fieldBinding().derived.raw_transformation(null);
}
console.log("Inserted asset:",
JSON.stringify(asset, null, 2))
})
}
})
};
self.editImage = function () {
window.ml = cloudinary.openMediaLibrary({
cloud_name: cloudinarySettings.cloud_name,
api_key: cloudinarySettings.api_key,
insert_caption: "Choose image",
multiple: false,
max_files: 1,
asset: { resource_type: "image", type: "upload", public_id: self.fieldBinding().public_id() },
default_transformations: [
[{quality: "auto", fetch_format: "auto"}]
],
integration: integrationSettings
}, {
insertHandler: function (data) {
data.assets.forEach(asset => {
self.fieldBinding().url(asset.url)
self.fieldBinding().public_id(asset.public_id)
self.fieldBinding().resource_type(asset.resource_type)
self.fieldBinding().secure_url(asset.secure_url)
self.fieldBinding().width(asset.width)
self.fieldBinding().height(asset.height)
self.fieldBinding().bytes(asset.bytes)
if(asset.derived && asset.derived[0]) {
self.fieldBinding().derived.secure_url(asset.derived[0].secure_url);
self.fieldBinding().derived.url(asset.derived[0].url);
self.fieldBinding().derived.raw_transformation(asset.derived[0].raw_transformation);
} else {
self.fieldBinding().derived.secure_url(null);
self.fieldBinding().derived.url(null);
self.fieldBinding().derived.raw_transformation(null);
}
console.log("Inserted asset:",
JSON.stringify(asset, null, 2))
})
}
})
};
self.thmSrc = ko.computed(function () {
if (self.fieldBinding().public_id() == null) {
return null;
} else if(ko.unwrap(self.fieldBinding().derived.secure_url)) {
return ko.unwrap(self.fieldBinding().derived.secure_url);
} else {
return "https://res.cloudinary.com/" + cloudinarySettings.cloud_name + "/image/upload/c_scale,f_auto,w_500/" + self.fieldBinding().public_id() + ".jpg";
}
})
self.isImageSet = ko.computed(function () {
if (self.fieldBinding().public_id() != null) {
return true;
} else {
return false;
}
});
self.removeImage = function () {
//confirms if user wants to remove image, if so clear all values
ContentManager.ViewModels.Navigation.messages().show("Do you wish to remove this Image?", "Remove Image",
ContentManager.Global.MessageType.Question, [{
name: "Remove",
defaultAction: true,
callback: function () {
self.fieldBinding().url(null)
self.fieldBinding().public_id(null)
self.fieldBinding().resource_type(null)
self.fieldBinding().secure_url(null)
self.fieldBinding().width(null)
self.fieldBinding().height(null)
self.fieldBinding().bytes(null)
self.fieldBinding().duration(null)
self.fieldBinding().derived(null)
}
},
{
name: "Cancel",
cancelAction: true,
callback: function () {
//do nothing...
}
}]);
};
}
ko.applyBindings(viewModel, $pnl.get(0));
});
}
}
}
ContentManager.Global.CustomInputFormFields.push(new CloudinaryImageField());