vue-layout-gitcode 1.12.15-beta.49 → 1.12.15-beta.50

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-lXkdtPpx.js";
3
+ import { u as useReportRepo, S as SearchRepoCard, f as formatNameSpace } from "./useReportRepo-DbHCQaPO.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-D27sLwSF.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-lXkdtPpx.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-D27sLwSF.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-lXkdtPpx.js";
3
3
  import { useRouter } from "vue-router";
4
- import { t as transWebUrl } from "./transWebUrl-DFYqL_Qw.js";
4
+ import { t as transWebUrl } from "./transWebUrl-DGesD31K.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";
@@ -250,7 +250,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
250
250
  };
251
251
  return (_ctx, _cache) => {
252
252
  return openBlock(), createElementBlock("ul", _hoisted_1, [
253
- __props.type === "project" ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
253
+ _ctx.type === "project" ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
254
254
  createElementVNode("div", _hoisted_2, [
255
255
  _cache[17] || (_cache[17] = createElementVNode("span", { class: "devui-menu-icon" }, null, -1)),
256
256
  createElementVNode("span", _hoisted_3, [
@@ -311,7 +311,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
311
311
  }, 8, ["modelValue", "placeholder"])
312
312
  ], 2)
313
313
  ], 64)) : createCommentVNode("", true),
314
- __props.type === "team" ? (openBlock(), createElementBlock(Fragment, { key: 1 }, [
314
+ _ctx.type === "team" ? (openBlock(), createElementBlock(Fragment, { key: 1 }, [
315
315
  createElementVNode("div", _hoisted_4, [
316
316
  _cache[18] || (_cache[18] = createElementVNode("span", { class: "devui-menu-icon" }, null, -1)),
317
317
  createElementVNode("span", _hoisted_5, [
@@ -350,7 +350,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
350
350
  }, 8, ["modelValue", "placeholder"])
351
351
  ], 2)
352
352
  ], 64)) : createCommentVNode("", true),
353
- __props.type === "enterprise" ? (openBlock(), createElementBlock(Fragment, { key: 2 }, [
353
+ _ctx.type === "enterprise" ? (openBlock(), createElementBlock(Fragment, { key: 2 }, [
354
354
  createElementVNode("div", _hoisted_6, [
355
355
  _cache[19] || (_cache[19] = createElementVNode("span", { class: "devui-menu-icon" }, null, -1)),
356
356
  createElementVNode("span", _hoisted_7, [
@@ -399,10 +399,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
399
399
  "data-openBlank": true,
400
400
  "data-href": unref(transformUrl)(unref(transWebUrl)(item.web_url)),
401
401
  class: "text",
402
- title: __props.type === "project" ? `${item.namespace}/${item.label}` : item.label
402
+ title: _ctx.type === "project" ? `${item.namespace}/${item.label}` : item.label
403
403
  }, {
404
404
  icon: withCtx(() => [
405
- __props.type === "project" ? (openBlock(), createBlock(GIcon, {
405
+ _ctx.type === "project" ? (openBlock(), createBlock(GIcon, {
406
406
  key: 0,
407
407
  name: "gt-line-project",
408
408
  color: "var(--theme-menu-icon-fill)",
@@ -417,7 +417,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
417
417
  }, null, 8, ["src", "name", "class"]))
418
418
  ]),
419
419
  default: withCtx(() => [
420
- __props.type === "project" ? (openBlock(), createElementBlock("span", _hoisted_8, [
420
+ _ctx.type === "project" ? (openBlock(), createElementBlock("span", _hoisted_8, [
421
421
  createElementVNode("span", _hoisted_9, toDisplayString((item.namespace || "").slice(0, 10)) + toDisplayString((item.namespace || "").length > 10 ? "..." : ""), 1),
422
422
  createElementVNode("span", _hoisted_10, "/" + toDisplayString(item.label), 1)
423
423
  ])) : (openBlock(), createElementBlock("span", _hoisted_11, toDisplayString(item.label), 1))
@@ -425,14 +425,14 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
425
425
  _: 2
426
426
  }, 1032, ["data-href", "title"]);
427
427
  }), 128)),
428
- __props.type !== "enterprise" && !totalNum.value && !firstLoading.value ? (openBlock(), createBlock(unref(Button), {
428
+ _ctx.type !== "enterprise" && !totalNum.value && !firstLoading.value ? (openBlock(), createBlock(unref(Button), {
429
429
  key: 4,
430
430
  variant: "text",
431
431
  class: "more-btn",
432
432
  onClick: withModifiers(createRepoOrOrg, ["stop"])
433
433
  }, {
434
434
  default: withCtx(() => [
435
- createTextVNode(toDisplayString(__props.buttonText), 1)
435
+ createTextVNode(toDisplayString(_ctx.buttonText), 1)
436
436
  ]),
437
437
  _: 1
438
438
  })) : createCommentVNode("", true),
@@ -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-D27sLwSF.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-lXkdtPpx.js";
3
3
  import { useRouter } from "vue-router";
4
- import { t as transWebUrl } from "./transWebUrl-DFYqL_Qw.js";
4
+ import { t as transWebUrl } from "./transWebUrl-DGesD31K.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
  },
@@ -220,7 +220,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
220
220
  onClick: withModifiers(createRepoOrOrg, ["stop"])
221
221
  }, {
222
222
  default: withCtx(() => [
223
- createTextVNode(toDisplayString(__props.buttonText), 1)
223
+ createTextVNode(toDisplayString(_ctx.buttonText), 1)
224
224
  ]),
225
225
  _: 1
226
226
  })) : createCommentVNode("", true),
@@ -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-D27sLwSF.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-lXkdtPpx.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-D27sLwSF.js";
2
+ import { a as i18n, n as normalizeSearchHistoryEntry, G as GIcon, _ as _export_sfc } from "./index-lXkdtPpx.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-search",
48
+ hoverIcon: "gt-search"
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
  };
@@ -117,15 +120,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
117
120
  };
118
121
  return (_ctx, _cache) => {
119
122
  return openBlock(), createElementBlock("div", _hoisted_1, [
120
- __props.searchHistoryList.length ? (openBlock(), createElementBlock("ul", {
123
+ _ctx.searchHistoryList.length ? (openBlock(), createElementBlock("ul", {
121
124
  key: 0,
122
125
  class: "history-list-box history-list-box--mt",
123
126
  onMouseleave: resetIndex
124
127
  }, [
125
128
  (openBlock(true), createElementBlock(Fragment, null, renderList(historyList.value, (item, index) => {
126
129
  return openBlock(), createElementBlock("li", {
127
- key: item,
128
- class: normalizeClass(__props.activeIndex === index ? "hoverbg" : ""),
130
+ key: `${item.q}-${item.type || "repo"}-${index}`,
131
+ class: normalizeClass(_ctx.activeIndex === index ? "hoverbg" : ""),
129
132
  onClick: ($event) => toSearch(item),
130
133
  onMouseenter: ($event) => onSearchEnter(index)
131
134
  }, [
@@ -148,10 +151,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
148
151
  ]),
149
152
  createElementVNode("div", _hoisted_8, [
150
153
  createElementVNode("span", {
151
- class: normalizeClass(__props.activeIndex === index ? "history-list-box__type-text--active" : "history-list-box__type-text")
154
+ class: normalizeClass(_ctx.activeIndex === index ? "history-list-box__type-text--active" : "history-list-box__type-text")
152
155
  }, toDisplayString(getRepoType(item).text), 3),
153
156
  createVNode(GIcon, {
154
- name: __props.activeIndex === index ? getRepoType(item).hoverIcon : getRepoType(item).icon
157
+ name: _ctx.activeIndex === index ? getRepoType(item).hoverIcon : getRepoType(item).icon
155
158
  }, null, 8, ["name"])
156
159
  ])
157
160
  ]),
@@ -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-Bv4s4B-r.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-D27sLwSF.js";
2
+ import { u as useReportRepo, S as SearchRepoCard } from "./useReportRepo-DbHCQaPO.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-lXkdtPpx.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-D27sLwSF.js";
2
+ import { a as i18n, G as GIcon, _ as _export_sfc } from "./index-lXkdtPpx.js";
3
3
  import "vue-devui-lal/icon";
4
4
  import "vue-devui-lal/icon/style.css";
5
5
  const _hoisted_1 = ["onClick"];
@@ -25,7 +25,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
25
25
  };
26
26
  return (_ctx, _cache) => {
27
27
  return openBlock(), createElementBlock("ul", null, [
28
- (openBlock(true), createElementBlock(Fragment, null, renderList(__props.searchScopeList, (item, index) => {
28
+ (openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.searchScopeList, (item, index) => {
29
29
  return openBlock(), createElementBlock("li", {
30
30
  key: index,
31
31
  class: "g-header-search-scopechoose",
@@ -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-D27sLwSF.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-lXkdtPpx.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
  };
@@ -8,7 +8,7 @@ import { Message } from "vue-devui-lal/message";
8
8
  import "vue-devui-lal/message/style.css";
9
9
  import { FixedOverlay } from "vue-devui-lal/overlay";
10
10
  import "vue-devui-lal/overlay/style.css";
11
- import { a as i18n, k as usePageResize, z as isZh, _ as _export_sfc } from "./index-D27sLwSF.js";
11
+ import { a as i18n, k as usePageResize, A as isZh, _ as _export_sfc } from "./index-lXkdtPpx.js";
12
12
  const _YunpianCaptchaManager = class _YunpianCaptchaManager {
13
13
  // eslint-disable-next-line no-useless-constructor
14
14
  constructor() {
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, onMounted, nextTick, onUnmounted, createBlock, openBlock, unref, withCtx, createElementVNode } from "vue";
2
- import { x as slidCaptchaManager, y as useLayoutConfig, z as isZh, _ as _export_sfc } from "./index-D27sLwSF.js";
2
+ import { y as slidCaptchaManager, z as useLayoutConfig, A as isZh, _ as _export_sfc } from "./index-lXkdtPpx.js";
3
3
  import { FixedOverlay } from "vue-devui-lal/overlay";
4
4
  import "vue-devui-lal/overlay/style.css";
5
5
  const TARGET_TEXT = "Click in order:";
@@ -105,10 +105,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
105
105
  });
106
106
  return (_ctx, _cache) => {
107
107
  return openBlock(), createBlock(unref(FixedOverlay), { class: "captcha-overlay-slid" }, {
108
- default: withCtx(() => [..._cache[0] || (_cache[0] = [
108
+ default: withCtx(() => _cache[0] || (_cache[0] = [
109
109
  createElementVNode("div", { id: "captcha-box" }, null, -1)
110
- ])]),
111
- _: 1
110
+ ])),
111
+ _: 1,
112
+ __: [0]
112
113
  });
113
114
  };
114
115
  }