Commit 3482024b by pangchong

Merge branch 'master' of 122.112.146.86:qlintonger/standalone-anyremote

parents a40e2553 186b7821
import {chatChannelState} from "AnyR/states/chatChannelStates";
import {webrtcStates} from "AnyR/states/webrtcStates";
import {userStates} from "AnyR/states/wsStates";
import {chatChannelState} from "../states/chatChannelStates";
import {webrtcStates} from "../states/webrtcStates";
import {userStates} from "../states/wsStates";
export class Agora {
......
import {Agora} from "AnyR/agora";
import {chatChannelState, isUserHost} from "AnyR/states/chatChannelStates";
import {userStates} from "AnyR/states/wsStates";
import {generateMessageId} from "AnyR/utils/generateMessageId";
import {CallState} from "AnyR/constants/chatChannelRelated";
import {clearStateOfChatChannel} from "AnyR/functionals/chatChannel";
import {handleCommonCall} from "AnyR/functionals/callMsg";
import {addMessageItemInMeeting} from "AnyR/functionals/callMsg";
import {convertObj2FU} from "AnyR/utils/cnvertObjectToFormData";
import {Agora} from "./agora";
import {chatChannelState, isUserHost} from "./states/chatChannelStates";
import {userStates} from "./states/wsStates";
import {generateMessageId} from "./utils/generateMessageId";
import {CallState} from "./constants/chatChannelRelated";
import {clearStateOfChatChannel} from "./functionals/chatChannel";
import {handleCommonCall} from "./functionals/callMsg";
import {addMessageItemInMeeting} from "./functionals/callMsg";
import {convertObj2FU} from "./utils/cnvertObjectToFormData";
export class AgoraHandle {
agoraOptions = {}
......
import {chatChannelState} from "AnyR/states/chatChannelStates";
import {getNowDate} from "AnyR/utils/dateRelated";
import {chatChannelState} from "../states/chatChannelStates";
import {getNowDate} from "../utils/dateRelated";
export function handleCommonCall(msgData) {
if (msgData.msgData?.isMR) {
......
import {chatChannelState} from "AnyR/states/chatChannelStates";
import {CallState} from "AnyR/constants/chatChannelRelated";
import {chatChannelState} from "../states/chatChannelStates";
import {CallState} from "../constants/chatChannelRelated";
export function clearStateOfChatChannel() {
chatChannelState.value.volumeSet = [];
......
import {WSInt} from "AnyR/ws";
import {AgoraHandle} from "AnyR/agoraHandle";
import {userStates} from "AnyR/states/wsStates";
import {WSInt} from "./ws";
import {AgoraHandle} from "./agoraHandle";
import {userStates} from "./states/wsStates";
export class AnyRemote {
......
import {computed, ref} from "vue";
import {CallState} from "AnyR/constants/chatChannelRelated";
import {userStates} from "AnyR/states/wsStates";
import {CallState} from "../constants/chatChannelRelated";
import {userStates} from "../states/wsStates";
export const chatChannelState = ref({
volumeSet: [],
......
import {makeSID} from "AnyR/utils/makeSID";
import {makeSID} from "./makeSID";
export function generateMessageId() {
return `sid${makeSID(16)}${Date.now()}`
......
import {SocketBroadcaster} from "AnyR/bc";
import {SocketBroadcaster} from "../bc";
import {
currentTabIdNameGet,
currentWSTabReceive,
......@@ -9,8 +9,8 @@ import {
wsOtherLoginNow,
wsQueryForMain,
wsTabCloseSet,
} from "AnyR/ws/eventTypes";
import {userStates} from "AnyR/states/wsStates";
} from "../ws/eventTypes";
import {userStates} from "../states/wsStates";
export class WSInt {
static BCName = 'WSInt'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment