UNPKG

6.1 kBJavaScriptView Raw
1"use strict";
2var __assign = (this && this.__assign) || function () {
3 __assign = Object.assign || function(t) {
4 for (var s, i = 1, n = arguments.length; i < n; i++) {
5 s = arguments[i];
6 for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7 t[p] = s[p];
8 }
9 return t;
10 };
11 return __assign.apply(this, arguments);
12};
13var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
14 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
15 return new (P || (P = Promise))(function (resolve, reject) {
16 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
17 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
18 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
19 step((generator = generator.apply(thisArg, _arguments || [])).next());
20 });
21};
22var __generator = (this && this.__generator) || function (thisArg, body) {
23 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
24 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
25 function verb(n) { return function (v) { return step([n, v]); }; }
26 function step(op) {
27 if (f) throw new TypeError("Generator is already executing.");
28 while (_) try {
29 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
30 if (y = 0, t) op = [op[0] & 2, t.value];
31 switch (op[0]) {
32 case 0: case 1: t = op; break;
33 case 4: _.label++; return { value: op[1], done: false };
34 case 5: _.label++; y = op[1]; op = [0]; continue;
35 case 7: op = _.ops.pop(); _.trys.pop(); continue;
36 default:
37 if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
38 if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
39 if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
40 if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
41 if (t[2]) _.ops.pop();
42 _.trys.pop(); continue;
43 }
44 op = body.call(thisArg, _);
45 } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
46 if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
47 }
48};
49Object.defineProperty(exports, "__esModule", { value: true });
50var lg_events_1 = require("../../lg-events");
51var lg_vimeo_thumbnail_settings_1 = require("./lg-vimeo-thumbnail-settings");
52/**
53 * Creates the vimeo thumbnails plugin.
54 * @param {object} element - lightGallery element
55 */
56var VimeoThumbnail = /** @class */ (function () {
57 function VimeoThumbnail(instance) {
58 this.core = instance;
59 // extend module default settings with lightGallery core settings
60 this.settings = __assign(__assign({}, lg_vimeo_thumbnail_settings_1.vimeoSettings), this.core.settings);
61 return this;
62 }
63 VimeoThumbnail.prototype.init = function () {
64 var _this = this;
65 if (!this.settings.showVimeoThumbnails) {
66 return;
67 }
68 this.core.LGel.on(lg_events_1.lGEvents.init + ".vimeothumbnails", function (event) {
69 var pluginInstance = event.detail.instance;
70 var thumbCont = pluginInstance.$container
71 .find('.lg-thumb-outer')
72 .get();
73 if (thumbCont) {
74 _this.setVimeoThumbnails(pluginInstance);
75 }
76 });
77 };
78 VimeoThumbnail.prototype.setVimeoThumbnails = function (dynamicGallery) {
79 return __awaiter(this, void 0, void 0, function () {
80 var i, item, slideVideoInfo, response, vimeoInfo;
81 return __generator(this, function (_a) {
82 switch (_a.label) {
83 case 0:
84 i = 0;
85 _a.label = 1;
86 case 1:
87 if (!(i < dynamicGallery.galleryItems.length)) return [3 /*break*/, 5];
88 item = dynamicGallery.galleryItems[i];
89 slideVideoInfo = item.__slideVideoInfo || {};
90 if (!slideVideoInfo.vimeo) return [3 /*break*/, 4];
91 return [4 /*yield*/, fetch('https://vimeo.com/api/oembed.json?url=' +
92 encodeURIComponent(item.src))];
93 case 2:
94 response = _a.sent();
95 return [4 /*yield*/, response.json()];
96 case 3:
97 vimeoInfo = _a.sent();
98 dynamicGallery.$container
99 .find('.lg-thumb-item')
100 .eq(i)
101 .find('img')
102 .attr('src', this.settings.showThumbnailWithPlayButton
103 ? vimeoInfo.thumbnail_url_with_play_button
104 : vimeoInfo.thumbnail_url);
105 _a.label = 4;
106 case 4:
107 i++;
108 return [3 /*break*/, 1];
109 case 5: return [2 /*return*/];
110 }
111 });
112 });
113 };
114 VimeoThumbnail.prototype.destroy = function () {
115 // Remove all event listeners added by vimeothumbnails plugin
116 this.core.LGel.off('.lg.vimeothumbnails');
117 this.core.LGel.off('.vimeothumbnails');
118 };
119 return VimeoThumbnail;
120}());
121exports.default = VimeoThumbnail;
122//# sourceMappingURL=lg-vimeo-thumbnail.js.map
\No newline at end of file