@difizen/magent-chat
Version:
103 lines • 8.65 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, _dec5, _dec6, _class, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _DefaultChatMessageItemModel, _dec7, _dec8, _class3, _class4, _descriptor6;
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 _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 _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 { autoFactory, AutoFactoryOption } from '@difizen/magent-core';
import { inject, prop } from '@difizen/mana-app';
import dayjs from 'dayjs';
import { QuestionState } from "./protocol.js";
export var DefaultChatMessageItemModel = (_dec = autoFactory(), _dec2 = prop(), _dec3 = prop(), _dec4 = prop(), _dec5 = prop(), _dec6 = prop(), _dec(_class = (_class2 = (_DefaultChatMessageItemModel = /*#__PURE__*/function () {
function DefaultChatMessageItemModel(option) {
_classCallCheck(this, DefaultChatMessageItemModel);
this.id = void 0;
this.msgId = void 0;
this.sender = void 0;
this.option = void 0;
this.parent = void 0;
_initializerDefineProperty(this, "_content", _descriptor, this);
_initializerDefineProperty(this, "created", _descriptor2, this);
_initializerDefineProperty(this, "modified", _descriptor3, this);
_initializerDefineProperty(this, "error", _descriptor4, this);
_initializerDefineProperty(this, "state", _descriptor5, this);
this.option = option;
this.id = option.id;
this.parent = option.parent;
this.created = dayjs(option.created);
this.modified = dayjs(option.modified);
this.sender = option.sender;
this.content = option.content;
}
DefaultChatMessageItemModel = inject(AutoFactoryOption)(DefaultChatMessageItemModel, undefined, 0) || DefaultChatMessageItemModel;
_createClass(DefaultChatMessageItemModel, [{
key: "content",
get: function get() {
return this._content;
},
set: function set(v) {
this._content = v;
}
}]);
return DefaultChatMessageItemModel;
}(), _DefaultChatMessageItemModel.isOption = function (option) {
return !!option && 'parent' in option;
}, _DefaultChatMessageItemModel), (_descriptor = _applyDecoratedDescriptor(_class2.prototype, "_content", [_dec2], {
configurable: true,
enumerable: true,
writable: true,
initializer: null
}), _descriptor2 = _applyDecoratedDescriptor(_class2.prototype, "created", [_dec3], {
configurable: true,
enumerable: true,
writable: true,
initializer: null
}), _descriptor3 = _applyDecoratedDescriptor(_class2.prototype, "modified", [_dec4], {
configurable: true,
enumerable: true,
writable: true,
initializer: null
}), _descriptor4 = _applyDecoratedDescriptor(_class2.prototype, "error", [_dec5], {
configurable: true,
enumerable: true,
writable: true,
initializer: null
}), _descriptor5 = _applyDecoratedDescriptor(_class2.prototype, "state", [_dec6], {
configurable: true,
enumerable: true,
writable: true,
initializer: null
})), _class2)) || _class);
export var HumanChatMessageItemModel = (_dec7 = autoFactory(), _dec8 = prop(), _dec7(_class3 = (_class4 = /*#__PURE__*/function (_DefaultChatMessageIt) {
_inherits(HumanChatMessageItemModel, _DefaultChatMessageIt);
var _super = _createSuper(HumanChatMessageItemModel);
function HumanChatMessageItemModel(option) {
var _this;
_classCallCheck(this, HumanChatMessageItemModel);
_this = _super.call(this, option);
if (option.content) {
_this.state = QuestionState.SUCCESS;
} else {
_this.state = QuestionState.SENDING;
}
return _this;
}
HumanChatMessageItemModel = inject(AutoFactoryOption)(HumanChatMessageItemModel, undefined, 0) || HumanChatMessageItemModel;
return _createClass(HumanChatMessageItemModel);
}(DefaultChatMessageItemModel), (_descriptor6 = _applyDecoratedDescriptor(_class4.prototype, "state", [_dec8], {
configurable: true,
enumerable: true,
writable: true,
initializer: null
})), _class4)) || _class3);