hexo-tag-aplayer
Version:
Embed aplayer in Hexo posts/pages
58 lines (43 loc) • 3.09 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
var _base = require("./base");
var _constant = require("../../common/constant");
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
var APlayerListTag = function (_BaseTag) {
_inherits(APlayerListTag, _BaseTag);
function APlayerListTag(hexo, args, pid) {
_classCallCheck(this, APlayerListTag);
var _this = _possibleConstructorReturn(this, (APlayerListTag.__proto__ || Object.getPrototypeOf(APlayerListTag)).call(this, hexo, args, pid));
_this.settings = _this.parse(args);
return _this;
}
_createClass(APlayerListTag, [{
key: "parse",
value: function parse(options) {
var _this2 = this;
var settings = Object.assign({
narrow: false,
autoplay: false,
showlrc: 0
}, JSON.parse(options));
settings.music.forEach(function (info) {
info.url = _this2.processUrl(info.url);
info.pic = info.pic ? _this2.processUrl(info.pic) : '';
});
return settings;
}
}, {
key: "generate",
value: function generate() {
var settings = JSON.stringify(this.settings);
return "\n <div id=\"" + this.id + "\" class=\"aplayer " + _constant.APLAYER_TAG_MARKER + "\" style=\"margin-bottom: 20px;\"></div>\n\t\t\t <script>\n\t\t\t\t var options = " + settings + ";\n\t\t\t\t options.element = document.getElementById(\"" + this.id + "\");\n\t\t\t\t var ap = new APlayer(options);\n\t\t\t window.aplayers || (window.aplayers = []);\n\t\t\t\t window.aplayers.push(ap);\n\t\t\t </script>";
}
}]);
return APlayerListTag;
}(_base.BaseTag);
exports.default = APlayerListTag;