@difizen/magent-au
Version:
118 lines • 8.96 kB
JavaScript
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
var _dec, _dec2, _dec3, _dec4, _class, _class2, _descriptor, _descriptor2;
function _initializerDefineProperty(target, property, descriptor, context) { if (!descriptor) return; Object.defineProperty(target, property, { enumerable: descriptor.enumerable, configurable: descriptor.configurable, writable: descriptor.writable, value: descriptor.initializer ? descriptor.initializer.call(context) : void 0 }); }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a 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, _toPropertyKey(descriptor.key), descriptor); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
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 _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
function _applyDecoratedDescriptor(target, property, decorators, descriptor, context) { var desc = {}; Object.keys(descriptor).forEach(function (key) { desc[key] = descriptor[key]; }); desc.enumerable = !!desc.enumerable; desc.configurable = !!desc.configurable; if ('value' in desc || desc.initializer) { desc.writable = true; } desc = decorators.slice().reverse().reduce(function (desc, decorator) { return decorator(target, property, desc) || desc; }, desc); if (context && desc.initializer !== void 0) { desc.value = desc.initializer ? desc.initializer.call(context) : void 0; desc.initializer = undefined; } if (desc.initializer === void 0) { Object.defineProperty(target, property, desc); desc = null; } return desc; }
function _initializerWarningHelper(descriptor, context) { throw new Error('Decorating class property failed. Please ensure that ' + 'transform-class-properties is enabled and runs after the decorators transform.'); }
import { InboxOutlined } from '@ant-design/icons';
import { getPageConfig } from '@difizen/magent-core';
import { BaseView, inject, singleton, view } from '@difizen/mana-app';
import { message, Upload } from 'antd';
import { forwardRef } from 'react';
import { useParams } from 'react-router-dom';
import { RouterHistory } from "../../common/router.js";
import { MainView } from "../common/main-view.js";
import "./index.less";
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
import { Fragment as _Fragment } from "react/jsx-runtime";
var Dragger = Upload.Dragger;
var viewId = 'magent-knowledge-upload';
export var uploadslot = "".concat(viewId, "-slot");
var KnowledgeUploadComponent = /*#__PURE__*/forwardRef(function KnowledgeUploadComponent() {
var _useParams = useParams(),
knowledgeId = _useParams.knowledgeId;
var pageConfig = getPageConfig();
var baseUrl = pageConfig['baseUrl'];
return /*#__PURE__*/_jsx("div", {
className: "".concat(viewId, "-wrapper"),
children: /*#__PURE__*/_jsxs(Dragger, {
className: "".concat(viewId, "-dragger"),
name: "file",
multiple: true,
data: {
knowledge_id: knowledgeId
},
method: "post",
action: "".concat(baseUrl).concat(baseUrl.endsWith('/') ? '' : '/', "api/v1/knowledge/upload"),
listType: "picture",
onChange: function onChange(info) {
var status = info.file.status;
if (status === 'done') {
message.success("".concat(info.file.name, " file uploaded successfully."));
} else if (status === 'error') {
message.error("".concat(info.file.name, " file upload failed."));
}
}
// onDrop={(e) => {}}
,
children: [/*#__PURE__*/_jsx("p", {
className: "ant-upload-drag-icon",
children: /*#__PURE__*/_jsx(InboxOutlined, {})
}), /*#__PURE__*/_jsx("p", {
className: "ant-upload-text",
children: "Click or drag file to this area to upload"
}), /*#__PURE__*/_jsx("p", {
className: "ant-upload-hint",
children: "Support for a single or bulk upload. Strictly prohibited from uploading company data or other banned files."
})]
})
});
});
export var KnowledgeUploadView = (_dec = singleton(), _dec2 = view(viewId), _dec3 = inject(MainView), _dec4 = inject(RouterHistory), _dec(_class = _dec2(_class = (_class2 = /*#__PURE__*/function (_BaseView) {
_inherits(KnowledgeUploadView, _BaseView);
var _super = _createSuper(KnowledgeUploadView);
function KnowledgeUploadView() {
var _this;
_classCallCheck(this, KnowledgeUploadView);
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
_this = _super.call.apply(_super, [this].concat(args));
_initializerDefineProperty(_this, "mainView", _descriptor, _assertThisInitialized(_this));
_initializerDefineProperty(_this, "history", _descriptor2, _assertThisInitialized(_this));
_this.view = KnowledgeUploadComponent;
_this.goBack = function () {
return _this.history.push('/portal/knowledge');
};
_this.pageTitle = function () {
return /*#__PURE__*/_jsx(_Fragment, {
children: "\u4E0A\u4F20\u77E5\u8BC6"
});
};
return _this;
}
_createClass(KnowledgeUploadView, [{
key: "onViewUnmount",
value: function onViewUnmount() {
this.mainView.active = undefined;
}
}, {
key: "onViewMount",
value: function onViewMount() {
this.mainView.active = this;
}
}]);
return KnowledgeUploadView;
}(BaseView), (_descriptor = _applyDecoratedDescriptor(_class2.prototype, "mainView", [_dec3], {
configurable: true,
enumerable: true,
writable: true,
initializer: null
}), _descriptor2 = _applyDecoratedDescriptor(_class2.prototype, "history", [_dec4], {
configurable: true,
enumerable: true,
writable: true,
initializer: null
})), _class2)) || _class) || _class);