123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507 |
- /**
- * 页面专用
- */
- import '../../sass/main.scss';
- (function (window) {
- let apiUrl = window.location.origin + '/api/';
- let $ = window.$A;
- $.extend({
- fillUrl(str) {
- if (str.substring(0, 2) === "//" ||
- str.substring(0, 7) === "http://" ||
- str.substring(0, 8) === "https://" ||
- str.substring(0, 6) === "ftp://" ||
- str.substring(0, 1) === "/") {
- return str;
- }
- return window.location.origin + '/' + str;
- },
- aUrl(str) {
- if (str.substring(0, 2) === "//" ||
- str.substring(0, 7) === "http://" ||
- str.substring(0, 8) === "https://" ||
- str.substring(0, 6) === "ftp://" ||
- str.substring(0, 1) === "/") {
- return str;
- }
- return apiUrl + str;
- },
- aAjax(params) {
- if (typeof params !== 'object') return false;
- if (typeof params.success === 'undefined') params.success = () => { };
- params.url = this.aUrl(params.url);
- //
- let beforeCall = params.beforeSend;
- params.beforeSend = () => {
- $A.aAjaxLoad++;
- $A(".w-spinner").show();
- //
- if (typeof beforeCall == "function") {
- beforeCall();
- }
- };
- //
- let completeCall = params.complete;
- params.complete = () => {
- $A.aAjaxLoad--;
- if ($A.aAjaxLoad <= 0) {
- $A(".w-spinner").hide();
- }
- //
- if (typeof completeCall == "function") {
- completeCall();
- }
- };
- //
- let callback = params.success;
- params.success = (data, status, xhr) => {
- if (typeof data === 'object') {
- if (data.ret === -1 && params.checkRole !== false) {
- //身份丢失
- $A.app.$Modal.error({
- title: '温馨提示',
- content: data.msg,
- onOk: () => {
- $A.token("");
- $A.userLogout();
- }
- });
- return;
- }
- if (data.ret === -2 && params.role !== false) {
- //没有权限
- $A.app.$Modal.error({
- title: '权限不足',
- content: data.msg ? data.msg : "你没有相关的权限查看或编辑!"
- });
- }
- }
- if (typeof callback === "function") {
- callback(data, status, xhr);
- }
- };
- //
- $A.ajax(params);
- },
- aAjaxLoad: 0,
- /**
- * 编辑器参数配置
- * @returns {{modules: {toolbar: *[]}}}
- */
- editorOption() {
- return {
- modules: {
- toolbar: [
- ['bold', 'italic'],
- [{ 'list': 'ordered'}, { 'list': 'bullet' }],
- [{ 'size': ['small', false, 'large', 'huge'] }],
- [{ 'header': [1, 2, 3, 4, 5, 6, false] }],
- [{ 'color': [] }, { 'background': [] }],
- [{ 'align': [] }]
- ]
- }
- };
- },
- /**
- * 获取token
- * @returns {boolean}
- */
- getToken() {
- let token = $A.token();
- return $A.count(token) < 10 ? false : token;
- },
- /**
- * 设置token
- * @param token
- */
- setToken(token) {
- $A.token(token);
- },
- /**
- * 获取会员昵称
- * @returns string
- */
- getUserName() {
- if ($A.getToken() === false) {
- return "";
- }
- let userInfo = $A.getUserInfo();
- return $A.ishave(userInfo.username) ? userInfo.username : '';
- },
- /**
- * 获取用户信息(并保存)
- * @param callback 网络请求获取到用户信息回调(监听用户信息发生变化)
- * @param continueListenerName 持续监听标识(字符串或boolean,true:自动生成监听标识,false:自动生成监听标识但首次不请求网络)
- * @returns Object
- */
- getUserInfo(callback, continueListenerName) {
- if (typeof callback === 'function' || (typeof callback === "boolean" && callback === true)) {
- if (typeof continueListenerName === "boolean") {
- if (continueListenerName === true) {
- continueListenerName = "auto-" + $A.randomString(6);
- } else {
- $A.setOnUserInfoListener("auto-" + $A.randomString(6), callback);
- return $A.jsonParse($A.storage("userInfo"));
- }
- }
- //
- $A.aAjax({
- url: 'users/info',
- error: () => {
- this.userLogout();
- },
- success: (res) => {
- if (res.ret === 1) {
- $A.storage("userInfo", res.data);
- $A.setToken(res.data.token);
- $A.triggerUserInfoListener(res.data);
- typeof callback === "function" && callback(res.data, $A.getToken() !== false);
- }
- },
- afterComplete: () => {
- if (typeof continueListenerName == "string" && continueListenerName) {
- $A.setOnUserInfoListener(continueListenerName, callback);
- }
- },
- });
- }
- return $A.jsonParse($A.storage("userInfo"));
- },
- /**
- * 打开登录页面
- */
- userLogout() {
- $A.token("");
- $A.storage("userInfo", {});
- $A.triggerUserInfoListener({});
- if (typeof $A.app === "object") {
- $A.app.goForward({path: '/'}, true);
- } else {
- window.location.href = window.location.origin;
- }
- },
- /**
- * 权限是否通过
- * @param role
- * @returns {boolean}
- */
- identity(role) {
- let userInfo = $A.getUserInfo();
- let identity = userInfo.identity;
- let isRole = false;
- $A.each(identity, (index, res) => {
- if (res === role) {
- isRole = true;
- }
- });
- return isRole;
- },
- /**
- * 监听用户信息发生变化
- * @param listenerName 监听标识
- * @param callback 监听回调
- */
- setOnUserInfoListener(listenerName, callback) {
- if (typeof listenerName != "string") {
- return;
- }
- if (typeof callback === "function") {
- $A.__userInfoListenerObject[listenerName] = {
- callback: callback,
- }
- }
- },
- triggerUserInfoListener(userInfo) {
- let key, item;
- for (key in $A.__userInfoListenerObject) {
- if (!$A.__userInfoListenerObject.hasOwnProperty(key)) continue;
- item = $A.__userInfoListenerObject[key];
- if (typeof item.callback === "function") {
- item.callback(userInfo, $A.getToken() !== false);
- }
- }
- },
- __userInfoListenerObject: {},
- /**
- * 监听任务发生变化
- * @param listenerName 监听标识
- * @param callback 监听回调
- * @param callSpecial 是否监听几种特殊情况
- */
- setOnTaskInfoListener(listenerName, callback, callSpecial) {
- if (typeof listenerName != "string") {
- return;
- }
- if (typeof callback === "function") {
- $A.__taskInfoListenerObject[listenerName] = {
- special: callSpecial === true,
- callback: callback,
- }
- }
- },
- triggerTaskInfoListener(act, taskDetail, sendToWS = true) {
- let key, item;
- for (key in $A.__taskInfoListenerObject) {
- if (!$A.__taskInfoListenerObject.hasOwnProperty(key)) continue;
- item = $A.__taskInfoListenerObject[key];
- if (typeof item.callback === "function") {
- if (['deleteproject', 'deletelabel', 'leveltask'].indexOf(act) === -1 || item.special === true) {
- if (typeof taskDetail.__modifyUsername === "undefined") {
- taskDetail.__modifyUsername = $A.getUserName();
- }
- item.callback(act, taskDetail);
- }
- }
- }
- if (sendToWS === true) {
- $A.WS.sendTo('team', null, {
- type: "taskA",
- act: act,
- taskDetail: taskDetail
- });
- }
- },
- __taskInfoListenerObject: {},
- /**
- * 获取待推送的日志并推送
- * @param taskid
- */
- triggerTaskInfoChange(taskid) {
- $A.aAjax({
- url: 'project/task/pushlog',
- data: {
- taskid: taskid,
- pagesize: 20
- },
- success: (res) => {
- if (res.ret === 1) {
- res.data.lists.forEach((item) => {
- let msgData = {
- type: 'taskB',
- username: item.username,
- userimg: item.userimg,
- indate: item.indate,
- text: item.detail,
- other: item.other
- };
- res.data.follower.forEach((username) => {
- if (username != msgData.username) {
- $A.WS.sendTo('user', username, msgData);
- }
- });
- });
- }
- }
- });
- }
- });
- /**
- * =============================================================================
- * ***************************** websocket assist ****************************
- * =============================================================================
- */
- $.extend({
- WS: {
- __instance: null,
- __connected: false,
- __callbackid: {},
- __autoLine() {
- let tempId = $A.randomString(16);
- this.__autoId = tempId;
- console.log("[WS] Connection auto 30s ...");
- setTimeout(() => {
- if (this.__autoId === tempId) {
- console.log("[WS] Connection auto ...");
- this.connection();
- }
- }, 30 * 1000);
- },
- /**
- * 连接
- */
- connection(force = false) {
- let url = $A.getObject(window.webSocketConfig, 'URL');
- url += ($A.strExists(url, "?") ? "&" : "?") + "token=" + $A.getToken();
- if (!$A.leftExists(url, "ws://") && !$A.leftExists(url, "wss://")) {
- console.log("[WS] Connection nourl ...");
- return;
- }
- if ($A.getToken() === false) {
- console.log("[WS] Connection noid ...");
- return;
- }
- if (this.__instance !== null && force !== true) {
- console.log("[WS] Connection already ...");
- return;
- }
- // 初始化客户端套接字并建立连接
- this.__instance = new WebSocket(url);
- // 连接建立时触发
- this.__instance.onopen = (event) => {
- console.log("[WS] Connection open ...");
- }
- // 接收到服务端推送时执行
- this.__instance.onmessage = (event) => {
- // console.log("[WS] Connection message ...");
- let msgDetail = $A.jsonParse(event.data);
- if (msgDetail.messageType === 'open') {
- console.log("[WS] Connection connected ...");
- this.__connected = true;
- }
- if (msgDetail.messageType === 'feedback') {
- typeof this.__callbackid[msgDetail.messageId] === "function" && this.__callbackid[msgDetail.messageId](msgDetail.content);
- delete this.__callbackid[msgDetail.messageId];
- return;
- }
- this.triggerMsgListener(msgDetail);
- };
- // 连接关闭时触发
- this.__instance.onclose = (event) => {
- console.log("[WS] Connection closed ...");
- this.__connected = false;
- this.__instance = null;
- this.__autoLine();
- }
- // 连接出错
- this.__instance.onerror = (event) => {
- console.log("[WS] Connection error ...");
- this.__connected = false;
- this.__instance = null;
- this.__autoLine();
- }
- return this;
- },
- /**
- * 添加消息监听
- * @param listenerName
- * @param callback
- */
- setOnMsgListener(listenerName, callback) {
- if (typeof listenerName != "string") {
- return;
- }
- if (typeof callback === "function") {
- this.__msgListenerObject[listenerName] = {
- callback: callback,
- }
- }
- return this;
- },
- triggerMsgListener(msgDetail) {
- let key, item;
- for (key in this.__msgListenerObject) {
- if (!this.__msgListenerObject.hasOwnProperty(key)) continue;
- item = this.__msgListenerObject[key];
- if (typeof item.callback === "function") {
- item.callback(msgDetail);
- }
- }
- },
- __msgListenerObject: {},
- /**
- * 发送消息
- * @param type 会话类型:user:指定target、team:团队会员
- * @param target 接收方的标识,仅type=user时有效
- * @param content 发送内容
- * @param callback 发送回调
- * @param againNum
- */
- sendTo(type, target, content, callback, againNum = 0) {
- if (typeof target === "function") {
- content = target;
- target = null;
- }
- if (typeof content === "function") {
- callback = content;
- content = null;
- }
- //
- if (this.__instance === null) {
- if (againNum < 10 && type != 'team') {
- setTimeout(() => {
- this.sendTo(type, target, content, callback, $A.runNum(againNum) + 1)
- }, 600);
- if (againNum === 0) {
- this.connection();
- }
- } else {
- console.log("[WS] 服务未连接");
- typeof callback === "function" && callback({status: 0, message: '服务未连接'});
- }
- return;
- }
- if (this.__connected === false) {
- console.log("[WS] 未连接成功");
- typeof callback === "function" && callback({status: 0, message: '未连接成功'});
- return;
- }
- if (['unread', 'read', 'user', 'team'].indexOf(type) === -1) {
- console.log("[WS] 错误的消息类型-" + type);
- typeof callback === "function" && callback({status: 0, message: '错误的消息类型-' + type});
- return;
- }
- let messageId = '';
- if (typeof callback === "function") {
- messageId = $A.randomString(16);
- this.__callbackid[messageId] = callback;
- }
- this.__instance.send(JSON.stringify({
- messageType: 'send',
- messageId: messageId,
- type: type,
- sender: $A.getUserName(),
- target: target,
- content: content,
- time: Math.round(new Date().getTime() / 1000),
- }));
- return this;
- },
- /**
- * 关闭连接
- */
- close() {
- if (this.__instance === null) {
- console.log("[WS] 服务未连接");
- return;
- }
- if (this.__connected === false) {
- console.log("[WS] 未连接成功");
- return;
- }
- this.__instance.close();
- }
- }
- });
- window.$A = $;
- })(window);
|