feat: 柱状图组件封装
This commit is contained in:
@@ -41,7 +41,7 @@ const isRepoVisited = (id: string): boolean => {
|
||||
// };
|
||||
const fromHomeWeb = ['home', 'search', 'gStar', 'gStarApply', 'explore'];
|
||||
|
||||
export const injectRouter = router => {
|
||||
export const injectRouter = (router) => {
|
||||
const account = useAccountStore();
|
||||
|
||||
router.beforeEach(async (to, from) => {
|
||||
@@ -56,7 +56,7 @@ export const injectRouter = router => {
|
||||
path_name: Array.isArray(namespace) ? namespace.join('/') : namespace
|
||||
};
|
||||
let res = await reqCatch(getPathType, params);
|
||||
if (!res.error) {
|
||||
if (!res.error && res.data) {
|
||||
res = res?.data?.data;
|
||||
|
||||
if (res?.type === null) {
|
||||
@@ -77,15 +77,18 @@ export const injectRouter = router => {
|
||||
const BASE_URL = (import.meta as any).env.VITE_HOST;
|
||||
const beforeRef = sessionStorage.getItem('ref');
|
||||
const ref = beforeRef || document.referrer || '';
|
||||
if (!fromHomeWeb.includes(to.name)) { // 设置全局ref
|
||||
if (!fromHomeWeb.includes(to.name)) {
|
||||
// 设置全局ref
|
||||
window.page_ref = ref;
|
||||
sessionStorage.setItem('ref', BASE_URL + to.fullPath);
|
||||
}
|
||||
|
||||
// 获取组织详情
|
||||
if (to.meta.type === 'org' || globalStore.namespaceType === 1) { // 组织相关页面 || 组织主页
|
||||
if (to.meta.type === 'org' || globalStore.namespaceType === 1) {
|
||||
// 组织相关页面 || 组织主页
|
||||
const { orgId } = useOrgId('%2F', to.params.namespace);
|
||||
if (orgId.value !== currentOrgId) { // 第一次进入或切换组织时调用接口
|
||||
if (orgId.value !== currentOrgId) {
|
||||
// 第一次进入或切换组织时调用接口
|
||||
const { setOrgInfo, setAccessLevel, setVisibility } = orgInfoStore();
|
||||
const res = await reqCatch(getOrg, { orgId: orgId.value, with_full_path: true });
|
||||
if (!res.error) {
|
||||
@@ -94,7 +97,8 @@ export const injectRouter = router => {
|
||||
if (res?.error?.error_code === 404) {
|
||||
return { name: '404' };
|
||||
}
|
||||
if (res?.error?.error_code === 403) { // 403代表无私有组织权限
|
||||
if (res?.error?.error_code === 403) {
|
||||
// 403代表无私有组织权限
|
||||
setAccessLevel(0);
|
||||
setVisibility('private');
|
||||
return { name: '403' };
|
||||
@@ -137,8 +141,8 @@ export const injectRouter = router => {
|
||||
['DISCUSSION', 'repoDiscussion'],
|
||||
['COMMUNITY', 'reqCommunity']
|
||||
]);
|
||||
modules.forEach(item => {
|
||||
if ((to.name === moduleRouteConfig.get(item.key)) && item.value === '0') {
|
||||
modules.forEach((item) => {
|
||||
if (to.name === moduleRouteConfig.get(item.key) && item.value === '0') {
|
||||
globalStore.setIsNotFound(true);
|
||||
}
|
||||
});
|
||||
@@ -204,15 +208,18 @@ export const injectRouter = router => {
|
||||
}
|
||||
|
||||
// 验证登录权限
|
||||
if (to.meta.needLogin) { // 是否需要登录
|
||||
if (account.isLogin) { // 已登录
|
||||
if (to.meta.needLogin) {
|
||||
// 是否需要登录
|
||||
if (account.isLogin) {
|
||||
// 已登录
|
||||
return true;
|
||||
} else {
|
||||
emitEvent('login', { triggerType: to.meta?.loginType, Authorization: Boolean(to?.meta?.Authorization) });
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
if (account.isLogin && to.meta.loginHidden) { // 已登录,不能访问某些页面,进行跳转处理(如:登录注册)
|
||||
if (account.isLogin && to.meta.loginHidden) {
|
||||
// 已登录,不能访问某些页面,进行跳转处理(如:登录注册)
|
||||
const toOauth = to.name === 'oauth' && /(.*)_(.*)/.exec(to.query?.state); // 三方授权不跳转
|
||||
const fromAtomGit = to.query.installation_id && /atomgit.com/.test(document.referrer); // 来自AtomGit应用的跳转
|
||||
if (toOauth || fromAtomGit) return true;
|
||||
@@ -223,7 +230,8 @@ export const injectRouter = router => {
|
||||
});
|
||||
router.afterEach((to, from) => {
|
||||
// 上报PV
|
||||
if (to.fullPath === '/' || to.fullPath !== from.fullPath) { // 同地址切换不上报
|
||||
if (to.fullPath === '/' || to.fullPath !== from.fullPath) {
|
||||
// 同地址切换不上报
|
||||
if (!(to.name === 'repo' || to.name === 'repoDir') || (from.fullPath === '/' && to.name === 'repoDir')) {
|
||||
// 子应用单独处理
|
||||
if (fromHomeWeb.includes(to.name)) return;
|
||||
|
||||
Reference in New Issue
Block a user