vue-layout-gitcode 1.12.35 → 1.12.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,154 @@
1
+ import { defineComponent, inject, createElementBlock, openBlock, Fragment, renderList, withDirectives, createBlock, unref, ref, watch, createElementVNode, createCommentVNode, createVNode, toDisplayString } from "vue";
2
+ import { h as headRequest, R as REPO_MODULE, v as vElementExposure, b as REPO_EVENT, _ as _export_sfc, c as REPO_TYPE, e as extractRepoInfoWithURL, a as i18n, G as GIcon } from "./index-BOa97Aot.js";
3
+ import { u as useReportRepo, S as SearchRepoCard, f as formatNameSpace } from "./useReportRepo-C61yRVsW.js";
4
+ import "vue-devui-lal/icon";
5
+ import "vue-devui-lal/icon/style.css";
6
+ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
7
+ __name: "SearchRepoCardList",
8
+ props: {
9
+ dataList: { default: () => [] },
10
+ searchStr: { default: "" },
11
+ type: { default: "" }
12
+ },
13
+ setup(__props) {
14
+ const props = __props;
15
+ const API = headRequest(inject("request"));
16
+ const { triggerReport } = useReportRepo({ moduleName: REPO_MODULE.SEARCH_SUGGESTION_CARD }, API.viewReport);
17
+ const useReport = inject("useReport");
18
+ const handleReport = (item) => {
19
+ useReport(REPO_EVENT.CLICK, { module_name: REPO_MODULE.SEARCH_SUGGESTION_CARD, repo_id: item.id });
20
+ };
21
+ return (_ctx, _cache) => {
22
+ return openBlock(true), createElementBlock(Fragment, null, renderList(props.dataList, (item, index) => {
23
+ return withDirectives((openBlock(), createBlock(SearchRepoCard, {
24
+ key: `${item.searchType || props.type}-${item.id}`,
25
+ class: "search-repo-list-card",
26
+ info: { ...item, index },
27
+ keyword: props.searchStr,
28
+ hover: "",
29
+ noborder: false,
30
+ hideTopicTags: "",
31
+ hideStarBtn: "",
32
+ hideFooter: "",
33
+ hideDescription: "",
34
+ onReport: () => handleReport(item),
35
+ cardType: item.searchType || props.type,
36
+ "url-params": { source_module: "search_project" }
37
+ }, null, 8, ["info", "keyword", "onReport", "cardType"])), [
38
+ [unref(vElementExposure), { trigger: (type) => unref(triggerReport)(type, item) }]
39
+ ]);
40
+ }), 128);
41
+ };
42
+ }
43
+ });
44
+ const SearchRepoCardList = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-vue-layout-gitcode"]]);
45
+ const normalizeOrigin = (origin) => origin.replace(/\/+$/, "");
46
+ const getStringValue = (value) => typeof value === "string" ? value : "";
47
+ const convertDataList = ({ dataList, searchType, origin }) => {
48
+ if (!Array.isArray(dataList)) {
49
+ return { items: [] };
50
+ }
51
+ const baseOrigin = normalizeOrigin(origin);
52
+ const items = dataList.slice(0, 3).filter((item) => Boolean(item) && typeof item === "object" && !Array.isArray(item)).map((item) => {
53
+ const isGitcodeRepo = REPO_TYPE.GITCODE === item.is_mirrors;
54
+ const importUrl = getStringValue(item.import_url);
55
+ const importedRepoName = importUrl ? extractRepoInfoWithURL(importUrl) : "";
56
+ const nameWithNamespace = getStringValue(item.name_with_namespace);
57
+ const pathWithNamespace = getStringValue(item.path_with_namespace);
58
+ const repoName = (isGitcodeRepo ? nameWithNamespace : importedRepoName) || nameWithNamespace || pathWithNamespace;
59
+ const displayName = formatNameSpace(repoName).join("/");
60
+ const path = `${baseOrigin}/${pathWithNamespace}`;
61
+ return {
62
+ ...item,
63
+ searchType,
64
+ path,
65
+ displayName,
66
+ web_url: path
67
+ };
68
+ });
69
+ return { items };
70
+ };
71
+ const mergeSearchSuggestions = ({ response = {}, origin }) => ({
72
+ items: [
73
+ ...convertDataList({ dataList: response.recommend_project, searchType: "repo", origin }).items,
74
+ ...convertDataList({ dataList: response.recommend_model, searchType: "model", origin }).items,
75
+ ...convertDataList({ dataList: response.recommend_dataset, searchType: "dataset", origin }).items
76
+ ]
77
+ });
78
+ const _hoisted_1 = {
79
+ key: 0,
80
+ class: "history-list-project history-list-project--padded"
81
+ };
82
+ const _sfc_main = /* @__PURE__ */ defineComponent({
83
+ __name: "GloabarSearch",
84
+ props: {
85
+ searchStr: {}
86
+ },
87
+ emits: ["searchMore"],
88
+ setup(__props, { emit: __emit }) {
89
+ const emits = __emit;
90
+ const { t: $t } = i18n.global;
91
+ const API = headRequest(inject("request", () => Promise.resolve({ data: {} })));
92
+ const useReport = inject("useReport", () => {
93
+ });
94
+ const searchSuggestionList = ref([]);
95
+ const origin = window.location.origin;
96
+ const props = __props;
97
+ let timer = null;
98
+ const handleSearchAll = () => {
99
+ emits("searchMore", "all");
100
+ };
101
+ const getData = async () => {
102
+ if (!props.searchStr) {
103
+ return;
104
+ }
105
+ try {
106
+ useReport("search-project", {});
107
+ const res = await API.getGloabarSearchKeyLink({ q: props.searchStr });
108
+ searchSuggestionList.value = mergeSearchSuggestions({ response: res.data || {}, origin }).items;
109
+ } catch (error) {
110
+ console.error("Failed to fetch search results:", error);
111
+ searchSuggestionList.value = [];
112
+ }
113
+ };
114
+ if (props.searchStr) {
115
+ getData();
116
+ }
117
+ watch(
118
+ () => props.searchStr,
119
+ () => {
120
+ if (timer) {
121
+ clearTimeout(timer);
122
+ }
123
+ timer = setTimeout(() => {
124
+ getData();
125
+ }, 300);
126
+ }
127
+ );
128
+ return (_ctx, _cache) => {
129
+ return openBlock(), createElementBlock(Fragment, null, [
130
+ createElementVNode("button", {
131
+ type: "button",
132
+ class: "global-search-all",
133
+ onClick: handleSearchAll
134
+ }, [
135
+ createVNode(GIcon, {
136
+ name: "gt-search",
137
+ color: "var(--theme-placeholder)"
138
+ }),
139
+ createElementVNode("span", null, toDisplayString(unref($t)("gitCodeLayout.header.searchAll", { keyword: _ctx.searchStr })), 1)
140
+ ]),
141
+ searchSuggestionList.value.length ? (openBlock(), createElementBlock("div", _hoisted_1, [
142
+ createVNode(SearchRepoCardList, {
143
+ "data-list": searchSuggestionList.value,
144
+ "search-str": _ctx.searchStr,
145
+ type: "repo"
146
+ }, null, 8, ["data-list", "search-str"])
147
+ ])) : createCommentVNode("", true)
148
+ ], 64);
149
+ };
150
+ }
151
+ });
152
+ export {
153
+ _sfc_main as default
154
+ };
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, inject, useSlots, computed, ref, createBlock, openBlock, unref, withCtx, createElementVNode, normalizeClass, createElementBlock, createCommentVNode, createTextVNode, toDisplayString, renderSlot } from "vue";
2
- import { a as i18n, y as useLayoutConfig, A as ThemeType, B as currentTheme, L as LANG_ZH, C as LANG_EN, D as getLocaleLang, G as GIcon, F as emitEvent, b as REPO_EVENT, H as ASIDE_MENU_REPO, I as isHttps, J as navigateWithMigrationGuard, _ as _export_sfc } from "./index-Cx67TeFL.js";
2
+ import { a as i18n, z as useLayoutConfig, B as ThemeType, C as currentTheme, L as LANG_ZH, D as LANG_EN, F as getLocaleLang, G as GIcon, H as emitEvent, b as REPO_EVENT, I as ASIDE_MENU_REPO, J as isHttps, K as navigateWithMigrationGuard, _ as _export_sfc } from "./index-BOa97Aot.js";
3
3
  import { useRouter } from "vue-router";
4
4
  import { Popover } from "vue-devui-lal/popover";
5
5
  import "vue-devui-lal/popover/style.css";
@@ -76,7 +76,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
76
76
  return nameMap[getLocaleLang()] || props.item.left_menu_name_cn;
77
77
  });
78
78
  const isShowPopover = computed(() => {
79
- return props.item.is_show_popup && props.slotKeys.includes(props.item.popup_key) && slots[props.item.popup_key] && asideSetShow.value;
79
+ return Boolean(props.item.is_show_popup && props.slotKeys.includes(props.item.popup_key) && slots[props.item.popup_key] && asideSetShow.value);
80
80
  });
81
81
  const handleMouseEnter = () => {
82
82
  isHover.value = true;
@@ -1,7 +1,7 @@
1
1
  import { defineComponent, inject, ref, reactive, watch, computed, createElementBlock, openBlock, createCommentVNode, createBlock, withDirectives, Fragment, createElementVNode, createVNode, toDisplayString, unref, withModifiers, normalizeClass, withCtx, renderList, createTextVNode, vShow } from "vue";
2
- import { a as i18n, y as useLayoutConfig, G as GIcon, t as transformUrl, M as _sfc_main$1, N as loadAsideData, J as navigateWithMigrationGuard, F as emitEvent, s as setLoginTriggerSource, f as useRequestReport, K as asideRequest, _ as _export_sfc } from "./index-Cx67TeFL.js";
2
+ import { a as i18n, z as useLayoutConfig, G as GIcon, t as transformUrl, N as _sfc_main$1, O as loadAsideData, K as navigateWithMigrationGuard, H as emitEvent, s as setLoginTriggerSource, f as useRequestReport, M as asideRequest, _ as _export_sfc } from "./index-BOa97Aot.js";
3
3
  import { useRouter } from "vue-router";
4
- import { t as transWebUrl } from "./transWebUrl-ChZBJdJ1.js";
4
+ import { t as transWebUrl } from "./transWebUrl-BjEWcV7K.js";
5
5
  import { Select, Option } from "vue-devui-lal/select";
6
6
  import { Input } from "vue-devui-lal/input";
7
7
  import { Skeleton } from "vue-devui-lal/skeleton";
@@ -1,7 +1,7 @@
1
1
  import { defineComponent, inject, ref, reactive, computed, watch, createElementBlock, openBlock, createElementVNode, createVNode, createBlock, createCommentVNode, withDirectives, toDisplayString, unref, withModifiers, normalizeClass, withCtx, Fragment, renderList, createTextVNode, vShow } from "vue";
2
- import { a as i18n, y as useLayoutConfig, t as transformUrl, K as asideRequest, G as GIcon, J as navigateWithMigrationGuard, F as emitEvent, s as setLoginTriggerSource, f as useRequestReport, _ as _export_sfc } from "./index-Cx67TeFL.js";
2
+ import { a as i18n, z as useLayoutConfig, t as transformUrl, M as asideRequest, G as GIcon, K as navigateWithMigrationGuard, H as emitEvent, s as setLoginTriggerSource, f as useRequestReport, _ as _export_sfc } from "./index-BOa97Aot.js";
3
3
  import { useRouter } from "vue-router";
4
- import { t as transWebUrl } from "./transWebUrl-ChZBJdJ1.js";
4
+ import { t as transWebUrl } from "./transWebUrl-BjEWcV7K.js";
5
5
  import { Input } from "vue-devui-lal/input";
6
6
  import { Skeleton } from "vue-devui-lal/skeleton";
7
7
  import { MenuItem } from "vue-devui-lal/menu";
@@ -26,7 +26,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
26
26
  props: {
27
27
  buttonText: { default: "" },
28
28
  subShow: { type: Boolean, default: false },
29
- defaultData: {},
29
+ defaultData: { default: () => ({ loading: false }) },
30
30
  isLogin: { type: Boolean, default: false },
31
31
  username: { default: "" }
32
32
  },
@@ -1,5 +1,5 @@
1
- import { ref, inject, computed, withDirectives, createElementBlock, openBlock, createElementVNode, toDisplayString, unref, Fragment, renderList, createVNode, vShow } from "vue";
2
- import { a as i18n, h as headRequest, G as GIcon, r as reqCatch } from "./index-Cx67TeFL.js";
1
+ import { defineComponent, ref, inject, computed, withDirectives, createElementBlock, openBlock, createElementVNode, toDisplayString, unref, Fragment, renderList, createVNode, vShow } from "vue";
2
+ import { a as i18n, h as headRequest, G as GIcon, r as reqCatch } from "./index-BOa97Aot.js";
3
3
  import { useRoute, useRouter } from "vue-router";
4
4
  import "vue-devui-lal/icon";
5
5
  import "vue-devui-lal/icon/style.css";
@@ -8,16 +8,21 @@ const _hoisted_2 = { class: "history-list-project-globartitle history-list-proje
8
8
  const _hoisted_3 = ["href"];
9
9
  const _hoisted_4 = { class: "history-list-project-globarbox" };
10
10
  const _hoisted_5 = { class: "ellipsis history-list-project__name" };
11
- const _sfc_main = /* @__PURE__ */ Object.assign({ name: "SearchFileList" }, {
11
+ const _sfc_main = /* @__PURE__ */ defineComponent({
12
+ ...{ name: "SearchFileList" },
12
13
  __name: "ProjectSearch",
13
- props: ["searchStr", "searchInfo", "isSearchPage"],
14
+ props: {
15
+ searchStr: {},
16
+ searchInfo: {},
17
+ isSearchPage: { type: Boolean }
18
+ },
14
19
  setup(__props) {
15
20
  const { t: $t } = i18n.global;
16
21
  const props = __props;
17
22
  const filedList = ref([]);
18
23
  const route = useRoute();
19
24
  const router = useRouter();
20
- const API = headRequest(inject("request"));
25
+ const API = headRequest(inject("request", () => Promise.resolve({ data: {} })));
21
26
  const loadFileList = async () => {
22
27
  var _a, _b, _c;
23
28
  if (!((_a = props == null ? void 0 : props.searchInfo) == null ? void 0 : _a.searchScopeName)) return;
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, computed, createElementBlock, openBlock, createCommentVNode, Fragment, renderList, normalizeClass, createElementVNode, createVNode, toDisplayString, withModifiers } from "vue";
2
- import { a as i18n, G as GIcon, _ as _export_sfc } from "./index-Cx67TeFL.js";
2
+ import { a as i18n, n as normalizeSearchHistoryEntry, G as GIcon, _ as _export_sfc } from "./index-BOa97Aot.js";
3
3
  import "vue-devui-lal/icon";
4
4
  import "vue-devui-lal/icon/style.css";
5
5
  const _hoisted_1 = { class: "history-list" };
@@ -42,6 +42,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
42
42
  icon: "gt-plane-project",
43
43
  hoverIcon: "gt-plane-project-red"
44
44
  },
45
+ all: {
46
+ text: t("gitCodeLayout.common.all"),
47
+ icon: "gt-plane-column1",
48
+ hoverIcon: "gt-plane-column-red"
49
+ },
45
50
  model: {
46
51
  text: t("gitCodeLayout.aihub.model"),
47
52
  icon: "gt-plane-Models",
@@ -83,11 +88,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
83
88
  hoverIcon: "gt-plane-topic-red"
84
89
  }
85
90
  };
86
- return typeMap[item.type] || typeMap["repo"];
91
+ const type = normalizeSearchHistoryEntry(item).type;
92
+ return typeMap[type] || typeMap["repo"];
87
93
  };
88
94
  const historyList = computed(() => {
89
95
  var _a;
90
- return (_a = props.searchHistoryList) == null ? void 0 : _a.map((raw) => typeof raw === "string" ? { q: raw } : raw).filter((item) => item == null ? void 0 : item.q).map((item) => {
96
+ return (_a = props.searchHistoryList) == null ? void 0 : _a.map((raw) => normalizeSearchHistoryEntry(raw)).filter((item) => item == null ? void 0 : item.q).map((item) => {
91
97
  const repoTitle = item.repo ? `${t("gitCodeLayout.header.repo")} ${decodeURIComponent(item.repo)}:` : "";
92
98
  const userVal = item.user || (item.scope === "user" ? item.namespace : "");
93
99
  const orgVal = item.org || (item.scope === "user" ? "" : item.namespace);
@@ -100,9 +106,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
100
106
  return { ...item, repoTitle, namespaceTitle };
101
107
  });
102
108
  });
103
- computed(() => {
104
- return props.visitHistoryList;
105
- });
106
109
  const resetIndex = () => {
107
110
  emits("resetIndex");
108
111
  };
@@ -124,7 +127,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
124
127
  }, [
125
128
  (openBlock(true), createElementBlock(Fragment, null, renderList(historyList.value, (item, index) => {
126
129
  return openBlock(), createElementBlock("li", {
127
- key: item,
130
+ key: `${item.q}-${item.type || "repo"}-${index}`,
128
131
  class: normalizeClass(_ctx.activeIndex === index ? "hoverbg" : ""),
129
132
  onClick: ($event) => toSearch(item),
130
133
  onMouseenter: ($event) => onSearchEnter(index)
@@ -1,6 +1,6 @@
1
1
  import { defineComponent, inject, ref, onMounted, createElementBlock, openBlock, createElementVNode, toDisplayString, unref, Fragment, renderList, renderSlot, createBlock, createVNode, withCtx } from "vue";
2
- import { u as useReportRepo, S as SearchRepoCard } from "./index-BsyIPSbg.js";
3
- import { a as i18n, h as headRequest, R as REPO_MODULE, b as REPO_EVENT, l as localStorage, _ as _export_sfc } from "./index-Cx67TeFL.js";
2
+ import { u as useReportRepo, S as SearchRepoCard } from "./useReportRepo-C61yRVsW.js";
3
+ import { a as i18n, h as headRequest, R as REPO_MODULE, b as REPO_EVENT, l as localStorage, _ as _export_sfc } from "./index-BOa97Aot.js";
4
4
  import { Row, Col } from "vue-devui-lal/grid";
5
5
  import { SkeletonItem } from "vue-devui-lal/skeleton";
6
6
  import "vue-devui-lal/grid/style.css";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, createElementBlock, openBlock, Fragment, renderList, createElementVNode, createVNode, createCommentVNode, toDisplayString, unref } from "vue";
2
- import { a as i18n, G as GIcon, _ as _export_sfc } from "./index-Cx67TeFL.js";
2
+ import { a as i18n, G as GIcon, _ as _export_sfc } from "./index-BOa97Aot.js";
3
3
  import "vue-devui-lal/icon";
4
4
  import "vue-devui-lal/icon/style.css";
5
5
  const _hoisted_1 = ["onClick"];
@@ -1,5 +1,5 @@
1
- import { inject, ref, watch, withDirectives, createElementBlock, openBlock, createElementVNode, toDisplayString, unref, Fragment, renderList, createVNode, vShow } from "vue";
2
- import { a as i18n, h as headRequest, G as GIcon, t as transformUrl } from "./index-Cx67TeFL.js";
1
+ import { defineComponent, inject, ref, watch, withDirectives, createElementBlock, openBlock, createElementVNode, toDisplayString, unref, Fragment, renderList, createVNode, vShow } from "vue";
2
+ import { a as i18n, h as headRequest, G as GIcon, t as transformUrl } from "./index-BOa97Aot.js";
3
3
  import "vue-devui-lal/icon";
4
4
  import "vue-devui-lal/icon/style.css";
5
5
  const _hoisted_1 = { class: "history-list-project history-list-project--padded" };
@@ -7,12 +7,15 @@ const _hoisted_2 = { class: "history-list-project-globartitle history-list-proje
7
7
  const _hoisted_3 = ["href"];
8
8
  const _hoisted_4 = { class: "history-list-project-globarbox" };
9
9
  const _hoisted_5 = { class: "ellipsis history-list-project__name" };
10
- const _sfc_main = {
10
+ const _sfc_main = /* @__PURE__ */ defineComponent({
11
11
  __name: "UserSearch",
12
- props: ["searchStr", "searchInfo"],
12
+ props: {
13
+ searchStr: {},
14
+ searchInfo: {}
15
+ },
13
16
  setup(__props) {
14
17
  const { t: $t } = i18n.global;
15
- const API = headRequest(inject("request"));
18
+ const API = headRequest(inject("request", () => Promise.resolve({ data: {} })));
16
19
  const props = __props;
17
20
  const loading = ref(false);
18
21
  const searchFileList = ref([]);
@@ -41,14 +44,14 @@ const _sfc_main = {
41
44
  search: props.searchStr
42
45
  }).then((res) => {
43
46
  const data = res.data || {};
44
- searchFileList.value = data.content.map((item) => {
47
+ searchFileList.value = (data.content || []).map((item) => {
45
48
  return {
46
49
  ...item,
47
- web_url: transformUrl(item.web_url),
48
- ssh_url_to_repo: transformUrl(item.ssh_url_to_repo),
49
- http_url_to_repo: transformUrl(item.http_url_to_repo),
50
- readme_url: transformUrl(item.readme_url),
51
- avatar_url: transformUrl(item.avatar_url)
50
+ web_url: transformUrl(item.web_url || ""),
51
+ ssh_url_to_repo: transformUrl(item.ssh_url_to_repo || ""),
52
+ http_url_to_repo: transformUrl(item.http_url_to_repo || ""),
53
+ readme_url: transformUrl(item.readme_url || ""),
54
+ avatar_url: transformUrl(item.avatar_url || "")
52
55
  };
53
56
  }) || [];
54
57
  }).finally(() => {
@@ -88,7 +91,7 @@ const _sfc_main = {
88
91
  ]);
89
92
  };
90
93
  }
91
- };
94
+ });
92
95
  export {
93
96
  _sfc_main as default
94
97
  };