1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- "use strict";
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- var __assign = (this && this.__assign) || function () {
- __assign = Object.assign || function(t) {
- for (var s, i = 1, n = arguments.length; i < n; i++) {
- s = arguments[i];
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
- t[p] = s[p];
- }
- return t;
- };
- return __assign.apply(this, arguments);
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- var MsgBase_1 = require("./MsgBase");
- var MediaMsg = (function (_super) {
- __extends(MediaMsg, _super);
- function MediaMsg() {
- var _this = _super !== null && _super.apply(this, arguments) || this;
- _this.msgType = 'audio';
- return _this;
- }
- MediaMsg.createMsg = function (baseMsg) {
- var msg = new MediaMsg();
- Object.assign(msg, baseMsg);
- return msg;
- };
- MediaMsg.createFromClipboard = function (baseMsg, clipboardData) {
- if (clipboardData && clipboardData.types) {
- if (clipboardData.items.length > 0) {
- var blob = clipboardData.items[0].getAsFile();
- var url = window.URL.createObjectURL(blob);
- return MediaMsg.createMsg(__assign({}, baseMsg, { file: {
- data: blob,
- url: url
- } }));
- }
- }
- return null;
- };
- return MediaMsg;
- }(MsgBase_1.MsgBase));
- exports.MediaMsg = MediaMsg;
|