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 {chatChannelState} from "../states/chatChannelStates";
import {webrtcStates} from "AnyR/states/webrtcStates"; import {webrtcStates} from "../states/webrtcStates";
import {userStates} from "AnyR/states/wsStates"; import {userStates} from "../states/wsStates";
export class Agora { export class Agora {
......
import {Agora} from "AnyR/agora"; import {Agora} from "./agora";
import {chatChannelState, isUserHost} from "AnyR/states/chatChannelStates"; import {chatChannelState, isUserHost} from "./states/chatChannelStates";
import {userStates} from "AnyR/states/wsStates"; import {userStates} from "./states/wsStates";
import {generateMessageId} from "AnyR/utils/generateMessageId"; import {generateMessageId} from "./utils/generateMessageId";
import {CallState} from "AnyR/constants/chatChannelRelated"; import {CallState} from "./constants/chatChannelRelated";
import {clearStateOfChatChannel} from "AnyR/functionals/chatChannel"; import {clearStateOfChatChannel} from "./functionals/chatChannel";
import {handleCommonCall} from "AnyR/functionals/callMsg"; import {handleCommonCall} from "./functionals/callMsg";
import {addMessageItemInMeeting} from "AnyR/functionals/callMsg"; import {addMessageItemInMeeting} from "./functionals/callMsg";
import {convertObj2FU} from "AnyR/utils/cnvertObjectToFormData"; import {convertObj2FU} from "./utils/cnvertObjectToFormData";
export class AgoraHandle { export class AgoraHandle {
agoraOptions = {} agoraOptions = {}
......
import {chatChannelState} from "AnyR/states/chatChannelStates"; import {chatChannelState} from "../states/chatChannelStates";
import {getNowDate} from "AnyR/utils/dateRelated"; import {getNowDate} from "../utils/dateRelated";
export function handleCommonCall(msgData) { export function handleCommonCall(msgData) {
if (msgData.msgData?.isMR) { if (msgData.msgData?.isMR) {
......
import {chatChannelState} from "AnyR/states/chatChannelStates"; import {chatChannelState} from "../states/chatChannelStates";
import {CallState} from "AnyR/constants/chatChannelRelated"; import {CallState} from "../constants/chatChannelRelated";
export function clearStateOfChatChannel() { export function clearStateOfChatChannel() {
chatChannelState.value.volumeSet = []; chatChannelState.value.volumeSet = [];
......
import {WSInt} from "AnyR/ws"; import {WSInt} from "./ws";
import {AgoraHandle} from "AnyR/agoraHandle"; import {AgoraHandle} from "./agoraHandle";
import {userStates} from "AnyR/states/wsStates"; import {userStates} from "./states/wsStates";
export class AnyRemote { export class AnyRemote {
......
import {computed, ref} from "vue"; import {computed, ref} from "vue";
import {CallState} from "AnyR/constants/chatChannelRelated"; import {CallState} from "../constants/chatChannelRelated";
import {userStates} from "AnyR/states/wsStates"; import {userStates} from "../states/wsStates";
export const chatChannelState = ref({ export const chatChannelState = ref({
volumeSet: [], volumeSet: [],
......
import {makeSID} from "AnyR/utils/makeSID"; import {makeSID} from "./makeSID";
export function generateMessageId() { export function generateMessageId() {
return `sid${makeSID(16)}${Date.now()}` return `sid${makeSID(16)}${Date.now()}`
......
import {SocketBroadcaster} from "AnyR/bc"; import {SocketBroadcaster} from "../bc";
import { import {
currentTabIdNameGet, currentTabIdNameGet,
currentWSTabReceive, currentWSTabReceive,
...@@ -9,8 +9,8 @@ import { ...@@ -9,8 +9,8 @@ import {
wsOtherLoginNow, wsOtherLoginNow,
wsQueryForMain, wsQueryForMain,
wsTabCloseSet, wsTabCloseSet,
} from "AnyR/ws/eventTypes"; } from "../ws/eventTypes";
import {userStates} from "AnyR/states/wsStates"; import {userStates} from "../states/wsStates";
export class WSInt { export class WSInt {
static BCName = '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