react-shields.io
Version:
Shields.io for react component, Quality metadata badges for open source projects.
79 lines (58 loc) • 2.62 kB
JavaScript
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
import _inherits from "@babel/runtime/helpers/esm/inherits";
import _possibleConstructorReturn from "@babel/runtime/helpers/esm/possibleConstructorReturn";
import _getPrototypeOf from "@babel/runtime/helpers/esm/getPrototypeOf";
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
import Base from '../common/Base';
var Version = /*#__PURE__*/function (_Base) {
_inherits(Version, _Base);
var _super = _createSuper(Version);
function Version(props) {
var _this;
_classCallCheck(this, Version);
_this = _super.call(this, props, {
platform: 'github',
type: 'version-release'
});
_this.getUrl = function () {
var _this$state = _this.state,
type = _this$state.type,
platform = _this$state.platform,
user = _this$state.user,
repo = _this$state.repo,
base = _this$state.base,
branch = _this$state.branch;
var typePath = '';
switch (type) {
case 'version-release':
typePath = 'v/release';
break;
case 'version-tag':
typePath = 'v/tag';
break;
case 'package-json':
typePath = 'package-json/v';
break;
case 'manifest-json':
typePath = 'manifest-json/v';
break;
case 'go-mod':
typePath = 'go-mod/go-version';
break;
default:
break;
}
if (platform !== 'github' || !typePath) return '';
var baseData = [base, platform, typePath, user, repo];
if (/(go\-mod|manifest\-json|package\-json)/.test(type || '') && branch) {
return [].concat(baseData, [branch]).join('/');
}
return baseData.join('/');
};
return _this;
}
return Version;
}(Base);
export { Version as default };
//# sourceMappingURL=Version.js.map