123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- import { reactive } from 'vue';
- import { browser } from './helpers/utils';
- import { postMessage } from './helpers/native-message';
- type status = 'init' | 'login' | 'logout' | 'error';
- export const state = reactive({
- user: {
- status: 'init' as status,
- data: {} as any
- },
- vipShow: false, // 是否打开会员
- buyVipId: '', // 购买会员编号
- buyVipType: '' as '' | 'MUSIC' | 'LESSON',
- vipFrom: '' as 'exercise' | '', // 来源
- platformType: 'STUDENT' as 'STUDENT' | 'TEACHER' | 'SCHOOL',
- clientId: {
- STUDENT: 'jmedu-student',
- TEACHER: 'jmedu-teacher',
- SCHOOL: 'jmedu-school'
- },
- platformApi: '/api-student' as
- | '/api-student'
- | '/api-teacher'
- | '/api-school',
- version: '', // 版本号 例如: 1.0.0
- navBarHeight: 0, // 状态栏高度
- ossUploadUrl: 'https://ks3-cn-beijing.ksyuncs.com/',
- musicCertStatus: false as boolean, // 是否音乐认证
- openLiveStatus: false as boolean, // 是否开通直播
- max: -1, // 表示不限制
- vIds: [] as any, // 已经选择的视频
- choiseType: '', // 需要选择资源的类型
- });
- /** 购买会员提示 */
- export const handleShowVip = (buyVipId: string, buyVipType: '' | 'MUSIC' | 'LESSON', vipFrom = '' as 'exercise' | '') => {
- state.vipShow = true;
- state.buyVipId = buyVipId;
- state.buyVipType = buyVipType;
- state.vipFrom = vipFrom
- }
- // 预览上传到oss的地址
- export const getOssUploadUrl = (bucket: string) => {
- const tmpBucket = bucket || 'gyt';
- return `https://${tmpBucket}.ks3-cn-beijing.ksyuncs.com/`;
- };
- export const setLoginInit = () => {
- state.user.status = 'init';
- state.user.data = null;
- };
- export const setLogin = (data: any) => {
- state.user.status = 'login';
- state.user.data = data;
- };
- export const setLogout = () => {
- state.user.status = 'logout';
- state.user.data = null;
- };
- export const setLoginError = () => {
- state.user.status = 'error';
- state.user.data = null;
- };
- // 用于处理跳转地址,如果是在app内,则打开一个新的webview, 否则跳转连接
- export const openDefaultWebView = (url?: string, callBack?: any) => {
- if (browser().isApp) {
- postMessage({
- api: 'openWebView',
- content: {
- url,
- orientation: 1,
- isHideTitle: false
- }
- });
- } else {
- callBack && callBack();
- }
- };
- /**
- * @description 微信授权-会根据环境去判断
- * @param wxAppId
- * @param urlString 回调链接【默认当前页面地址】
- * @returns void
- */
- export const goWechatAuth = (wxAppId: string, urlString?: string) => {
- // 开发环境
- if (import.meta.env.DEV) {
- const replaceUrl =
- `https://online.lexiaoya.cn/getWxCode?appid=${wxAppId || 'wx8654c671631cfade'
- }&state=STATE&redirect_uri=` +
- encodeURIComponent(urlString || window.location.href);
- window.location.replace(replaceUrl);
- }
- // 生产环境
- if (import.meta.env.PROD) {
- goAuth(wxAppId, urlString);
- }
- };
- const goAuth = (wxAppId: string, urlString?: string) => {
- // 用户授权
- console.log(
- urlString || window.location.href,
- 'urlString || window.location.href'
- );
- const urlNow = encodeURIComponent(urlString || window.location.href);
- console.log(urlNow, 'urlNow');
- const scope = 'snsapi_base'; //snsapi_userinfo //静默授权 用户无感知
- const appid = wxAppId || 'wx8654c671631cfade';
- 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`;
- window.location.replace(url);
- };
- /**
- * @description 支付宝授权-会根据环境去判断
- * @param wxAppId
- * @param urlString 回调链接【默认当前页面地址】
- * @returns void
- */
- export const goAliAuth = (alipayAppId: string, urlString?: string) => {
- // 支付宝授权
- const urlNow = encodeURIComponent(urlString || window.location.href);
- const appid = alipayAppId || '2021004113639386';
- // 开发环境
- if (import.meta.env.DEV) {
- const url = `https://online.lexiaoya.cn/getAliCode?app_id=${appid}&state=STATE&redirect_uri=${urlNow}`;
- window.location.replace(url);
- }
- // 生产环境
- if (import.meta.env.PROD) {
- alipayAuth(alipayAppId, urlString);
- }
- };
- const alipayAuth = (alipayAppId: string, urlString?: string) => {
- // 用户授权
- const urlNow = encodeURIComponent(urlString || window.location.href);
- const scope = 'auth_base'; //snsapi_userinfo //静默授权 用户无感知
- const appid = alipayAppId || '2021004113639386';
- // 判断是否是线上
- const url = `https://openauth.alipay.com/oauth2/publicAppAuthorize.htm?app_id=${appid}&redirect_uri=${urlNow}&response_type=auth_code&scope=${scope}&state=STATE`;
- window.location.replace(url);
- };
|