state.ts 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. import { reactive } from 'vue';
  2. import { browser } from './helpers/utils';
  3. import { postMessage } from './helpers/native-message';
  4. type status = 'init' | 'login' | 'logout' | 'error';
  5. export const state = reactive({
  6. user: {
  7. status: 'init' as status,
  8. data: {} as any
  9. },
  10. vipShow: false, // 是否打开会员
  11. buyVipId: '', // 购买会员编号
  12. buyVipType: '' as '' | 'MUSIC' | 'LESSON',
  13. vipFrom: '' as 'exercise' | '', // 来源
  14. platformType: 'STUDENT' as 'STUDENT' | 'TEACHER' | 'SCHOOL',
  15. clientId: {
  16. STUDENT: 'jmedu-student',
  17. TEACHER: 'jmedu-teacher',
  18. SCHOOL: 'jmedu-school'
  19. },
  20. platformApi: '/api-student' as
  21. | '/api-student'
  22. | '/api-teacher'
  23. | '/api-school',
  24. version: '', // 版本号 例如: 1.0.0
  25. navBarHeight: 0, // 状态栏高度
  26. ossUploadUrl: 'https://ks3-cn-beijing.ksyuncs.com/',
  27. musicCertStatus: false as boolean, // 是否音乐认证
  28. openLiveStatus: false as boolean, // 是否开通直播
  29. max: -1, // 表示不限制
  30. vIds: [] as any, // 已经选择的视频
  31. choiseType: '', // 需要选择资源的类型
  32. });
  33. /** 购买会员提示 */
  34. export const handleShowVip = (buyVipId: string, buyVipType: '' | 'MUSIC' | 'LESSON', vipFrom = '' as 'exercise' | '') => {
  35. state.vipShow = true;
  36. state.buyVipId = buyVipId;
  37. state.buyVipType = buyVipType;
  38. state.vipFrom = vipFrom
  39. }
  40. // 预览上传到oss的地址
  41. export const getOssUploadUrl = (bucket: string) => {
  42. const tmpBucket = bucket || 'gyt';
  43. return `https://${tmpBucket}.ks3-cn-beijing.ksyuncs.com/`;
  44. };
  45. export const setLoginInit = () => {
  46. state.user.status = 'init';
  47. state.user.data = null;
  48. };
  49. export const setLogin = (data: any) => {
  50. state.user.status = 'login';
  51. state.user.data = data;
  52. };
  53. export const setLogout = () => {
  54. state.user.status = 'logout';
  55. state.user.data = null;
  56. };
  57. export const setLoginError = () => {
  58. state.user.status = 'error';
  59. state.user.data = null;
  60. };
  61. // 用于处理跳转地址,如果是在app内,则打开一个新的webview, 否则跳转连接
  62. export const openDefaultWebView = (url?: string, callBack?: any) => {
  63. if (browser().isApp) {
  64. postMessage({
  65. api: 'openWebView',
  66. content: {
  67. url,
  68. orientation: 1,
  69. isHideTitle: false
  70. }
  71. });
  72. } else {
  73. callBack && callBack();
  74. }
  75. };
  76. /**
  77. * @description 微信授权-会根据环境去判断
  78. * @param wxAppId
  79. * @param urlString 回调链接【默认当前页面地址】
  80. * @returns void
  81. */
  82. export const goWechatAuth = (wxAppId: string, urlString?: string) => {
  83. // 开发环境
  84. if (import.meta.env.DEV) {
  85. const replaceUrl =
  86. `https://online.lexiaoya.cn/getWxCode?appid=${wxAppId || 'wx8654c671631cfade'
  87. }&state=STATE&redirect_uri=` +
  88. encodeURIComponent(urlString || window.location.href);
  89. window.location.replace(replaceUrl);
  90. }
  91. // 生产环境
  92. if (import.meta.env.PROD) {
  93. goAuth(wxAppId, urlString);
  94. }
  95. };
  96. const goAuth = (wxAppId: string, urlString?: string) => {
  97. // 用户授权
  98. console.log(
  99. urlString || window.location.href,
  100. 'urlString || window.location.href'
  101. );
  102. const urlNow = encodeURIComponent(urlString || window.location.href);
  103. console.log(urlNow, 'urlNow');
  104. const scope = 'snsapi_base'; //snsapi_userinfo //静默授权 用户无感知
  105. const appid = wxAppId || 'wx8654c671631cfade';
  106. const url = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appid}&redirect_uri=${urlNow}&response_type=code&scope=${scope}&state=STATE&connect_redirect=1#wechat_redirect`;
  107. window.location.replace(url);
  108. };
  109. /**
  110. * @description 支付宝授权-会根据环境去判断
  111. * @param wxAppId
  112. * @param urlString 回调链接【默认当前页面地址】
  113. * @returns void
  114. */
  115. export const goAliAuth = (alipayAppId: string, urlString?: string) => {
  116. // 支付宝授权
  117. const urlNow = encodeURIComponent(urlString || window.location.href);
  118. const appid = alipayAppId || '2021004113639386';
  119. // 开发环境
  120. if (import.meta.env.DEV) {
  121. const url = `https://online.lexiaoya.cn/getAliCode?app_id=${appid}&state=STATE&redirect_uri=${urlNow}`;
  122. window.location.replace(url);
  123. }
  124. // 生产环境
  125. if (import.meta.env.PROD) {
  126. alipayAuth(alipayAppId, urlString);
  127. }
  128. };
  129. const alipayAuth = (alipayAppId: string, urlString?: string) => {
  130. // 用户授权
  131. const urlNow = encodeURIComponent(urlString || window.location.href);
  132. const scope = 'auth_base'; //snsapi_userinfo //静默授权 用户无感知
  133. const appid = alipayAppId || '2021004113639386';
  134. // 判断是否是线上
  135. const url = `https://openauth.alipay.com/oauth2/publicAppAuthorize.htm?app_id=${appid}&redirect_uri=${urlNow}&response_type=auth_code&scope=${scope}&state=STATE`;
  136. window.location.replace(url);
  137. };