You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

selectDataset.vue 36 kB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155
  1. <template>
  2. <div
  3. class="inline field"
  4. :class="{
  5. dataset_flex: confirmDatasetList && confirmFlag,
  6. required: required,
  7. margin_b_0: benchmarkNew,
  8. }"
  9. >
  10. <label
  11. v-if="benchmarkNew"
  12. class="label-fix-width"
  13. style="font-weight: normal"
  14. >数据集</label
  15. >
  16. <label v-else>数据集</label>
  17. <span
  18. :class="
  19. benchmarkNew === true ? 'dataset-train-span' : 'dataset-debug-span'
  20. "
  21. v-if="confirmDatasetList && confirmFlag"
  22. >
  23. <input type="hidden" name="attachment" :value="confirmDatasetList" />
  24. <div class="multi-dataset-box">
  25. <span
  26. v-for="(item, index) in confirmChecklist"
  27. :key="index"
  28. class="select-dataset-label"
  29. :title="item"
  30. style="padding: 0.2rem 0"
  31. >{{ item }};
  32. </span>
  33. </div>
  34. </span>
  35. <span v-else>
  36. <input
  37. v-if="benchmarkNew"
  38. type="text"
  39. class="disabled"
  40. style="width: 48.5%"
  41. placeholder="选择数据集文件"
  42. required
  43. />
  44. <input
  45. v-else
  46. type="text"
  47. class="disabled"
  48. :required="required"
  49. placeholder="选择数据集文件"
  50. />
  51. </span>
  52. <el-button
  53. type="text"
  54. @click="openDataset"
  55. icon="el-icon-plus"
  56. :class="
  57. confirmFlag && confirmDatasetList
  58. ? 'select-dataset-button'
  59. : 'select-dataset-button-color'
  60. "
  61. >选择数据集
  62. </el-button>
  63. <el-dialog
  64. title="选择数据集"
  65. :visible.sync="dialogVisible"
  66. :width="dialogWidth"
  67. >
  68. <div class="ui icon input dataset-search-vue">
  69. <i
  70. class="search icon"
  71. style="cursor: pointer; pointer-events: auto"
  72. @click="searchName"
  73. ></i>
  74. <input
  75. type="text"
  76. placeholder="搜数据集名称/描述..."
  77. v-model="search"
  78. @keydown.enter.stop.prevent="searchName"
  79. />
  80. </div>
  81. <el-row>
  82. <el-col
  83. :span="17"
  84. style="
  85. padding-right: 1rem;
  86. border-right: 1px solid #f5f5f6;
  87. position: relative;
  88. "
  89. >
  90. <el-tabs v-model="activeName" @tab-click="handleClick">
  91. <!-- 当前项目的数据集 -->
  92. <el-tab-pane label="本项目" name="first" v-loading="loadingCurrent">
  93. <el-row>
  94. <el-tree
  95. :data="currentDatasetList"
  96. ref="currentTree"
  97. highlight-current
  98. show-checkbox
  99. node-key="id"
  100. :default-expanded-keys="initCurrentTreeNode"
  101. :props="defaultProps"
  102. :index="20"
  103. accordion
  104. @check="onCheck"
  105. >
  106. <span slot-scope="{ node, data }" class="slot-wrap">
  107. <span v-if="data.parent" class="custom-tree-node">
  108. <el-tooltip v-if="data.Description" placement="top-start">
  109. <div slot="content" class="multiple-wrap">
  110. {{ data.Description }}
  111. </div>
  112. <span class="dataset-title dataset-nowrap"
  113. ><div class="dataset_flex">
  114. <span
  115. style="flex: inherit"
  116. class="dataset-nowrap"
  117. >{{ node.label }}</span
  118. >
  119. <img
  120. v-if="data.Recommend"
  121. style="margin-left: 0.4rem"
  122. src="/img/jian.svg"
  123. />
  124. </div>
  125. </span>
  126. </el-tooltip>
  127. <span v-else class="dataset-title dataset-nowrap"
  128. ><div class="dataset_flex">
  129. <span style="flex: inherit" class="dataset-nowrap">{{
  130. node.label
  131. }}</span>
  132. <img
  133. v-if="data.Recommend"
  134. style="margin-left: 0.4rem"
  135. src="/img/jian.svg"
  136. />
  137. </div>
  138. </span>
  139. <span
  140. class="dataset-repolink dataset-nowrap"
  141. @click.stop="return false;"
  142. >
  143. <a
  144. :href="
  145. '/' +
  146. data.Repo.OwnerName +
  147. '/' +
  148. data.Repo.Name +
  149. '/datasets'
  150. "
  151. target="_blank"
  152. :title="data.Repo.OwnerName + '/' + data.Repo.Alias"
  153. >{{ data.Repo.OwnerName }}/{{ data.Repo.Alias }}</a
  154. >
  155. </span>
  156. </span>
  157. <span v-else style="display: flex">
  158. <span class="dataset-nowrap" :title="node.label">
  159. {{ node.label }}
  160. </span>
  161. <span
  162. class="zip-loading"
  163. v-if="data.DecompressState === 2"
  164. >
  165. 正在解压缩
  166. </span>
  167. <span
  168. class="unzip-failed"
  169. v-if="data.DecompressState === 3"
  170. >
  171. 解压失败
  172. </span>
  173. </span>
  174. </span>
  175. </el-tree>
  176. <div></div>
  177. </el-row>
  178. <div
  179. class="ui container"
  180. style="margin-top: 25px; text-align: center"
  181. >
  182. <el-pagination
  183. background
  184. @current-change="currentChangePage"
  185. :current-page="initCurrentPage"
  186. :page-size="5"
  187. layout="total, prev, pager, next"
  188. :total="totalNumCurrent"
  189. >
  190. </el-pagination>
  191. </div>
  192. </el-tab-pane>
  193. <!-- 我上传的数据集 -->
  194. <el-tab-pane label="我上传的" name="second" v-loading="loadingMy">
  195. <el-row>
  196. <el-tree
  197. :data="myDatasetList"
  198. ref="myTree"
  199. highlight-current
  200. show-checkbox
  201. node-key="id"
  202. :default-expanded-keys="initMyTreeNode"
  203. :props="defaultProps"
  204. :index="20"
  205. accordion
  206. @check="onCheck"
  207. >
  208. <span slot-scope="{ node, data }" class="slot-wrap">
  209. <span v-if="data.parent" class="custom-tree-node">
  210. <el-tooltip v-if="data.Description" placement="top-start">
  211. <div slot="content" class="multiple-wrap">
  212. {{ data.Description }}
  213. </div>
  214. <span class="dataset-title dataset-nowrap"
  215. ><div class="dataset_flex">
  216. <span
  217. style="flex: inherit"
  218. class="dataset-nowrap"
  219. >{{ node.label }}</span
  220. >
  221. <img
  222. v-if="data.Recommend"
  223. style="margin-left: 0.4rem"
  224. src="/img/jian.svg"
  225. />
  226. </div>
  227. </span>
  228. </el-tooltip>
  229. <span v-else class="dataset-title dataset-nowrap"
  230. ><div class="dataset_flex">
  231. <span style="flex: inherit" class="dataset-nowrap">{{
  232. node.label
  233. }}</span>
  234. <img
  235. v-if="data.Recommend"
  236. style="margin-left: 0.4rem"
  237. src="/img/jian.svg"
  238. />
  239. </div>
  240. </span>
  241. <span
  242. class="dataset-repolink dataset-nowrap"
  243. @click.stop="return false;"
  244. >
  245. <a
  246. :href="
  247. '/' +
  248. data.Repo.OwnerName +
  249. '/' +
  250. data.Repo.Name +
  251. '/datasets'
  252. "
  253. target="_blank"
  254. :title="data.Repo.OwnerName + '/' + data.Repo.Alias"
  255. >{{ data.Repo.OwnerName }}/{{ data.Repo.Alias }}</a
  256. >
  257. </span>
  258. </span>
  259. <span v-else style="display: flex">
  260. <span class="dataset-nowrap" :title="node.label">
  261. {{ node.label }}
  262. </span>
  263. <span
  264. class="zip-loading"
  265. v-if="data.DecompressState === 2"
  266. >
  267. 正在解压缩
  268. </span>
  269. <span
  270. class="unzip-failed"
  271. v-if="data.DecompressState === 3"
  272. >
  273. 解压失败
  274. </span>
  275. </span>
  276. </span>
  277. </el-tree>
  278. <div></div>
  279. </el-row>
  280. <div
  281. class="ui container"
  282. style="margin-top: 25px; text-align: center"
  283. >
  284. <el-pagination
  285. background
  286. @current-change="myChangePage"
  287. :current-page="initMyPage"
  288. :page-size="5"
  289. layout="total, prev, pager, next"
  290. :total="totalNumMy"
  291. >
  292. </el-pagination>
  293. </div>
  294. </el-tab-pane>
  295. <!-- 公开的数据集 -->
  296. <el-tab-pane
  297. label="公开数据集"
  298. name="third"
  299. v-loading="loadingPublic"
  300. >
  301. <el-row>
  302. <el-tree
  303. :data="publicDatasetList"
  304. ref="publicTree"
  305. highlight-current
  306. show-checkbox
  307. node-key="id"
  308. :default-expanded-keys="initPublicTreeNode"
  309. :props="defaultProps"
  310. :index="20"
  311. accordion
  312. @check="onCheck"
  313. >
  314. <span slot-scope="{ node, data }" class="slot-wrap">
  315. <span v-if="data.parent" class="custom-tree-node">
  316. <el-tooltip v-if="data.Description" placement="top-start">
  317. <div slot="content" class="multiple-wrap">
  318. {{ data.Description }}
  319. </div>
  320. <span class="dataset-title dataset-nowrap"
  321. ><div class="dataset_flex">
  322. <span
  323. style="flex: inherit"
  324. class="dataset-nowrap"
  325. >{{ node.label }}</span
  326. >
  327. <img
  328. v-if="data.Recommend"
  329. style="margin-left: 0.4rem"
  330. src="/img/jian.svg"
  331. />
  332. </div>
  333. </span>
  334. </el-tooltip>
  335. <span v-else class="dataset-title dataset-nowrap"
  336. ><div class="dataset_flex">
  337. <span style="flex: inherit" class="dataset-nowrap">{{
  338. node.label
  339. }}</span>
  340. <img
  341. v-if="data.Recommend"
  342. style="margin-left: 0.4rem"
  343. src="/img/jian.svg"
  344. />
  345. </div>
  346. </span>
  347. <span
  348. class="dataset-repolink dataset-nowrap"
  349. @click.stop="return false;"
  350. >
  351. <a
  352. :href="
  353. '/' +
  354. data.Repo.OwnerName +
  355. '/' +
  356. data.Repo.Name +
  357. '/datasets'
  358. "
  359. target="_blank"
  360. :title="data.Repo.OwnerName + '/' + data.Repo.Alias"
  361. >{{ data.Repo.OwnerName }}/{{ data.Repo.Alias }}</a
  362. >
  363. </span>
  364. </span>
  365. <span v-else style="display: flex">
  366. <span class="dataset-nowrap" :title="node.label">
  367. {{ node.label }}
  368. </span>
  369. <span
  370. class="zip-loading"
  371. v-if="data.DecompressState === 2"
  372. >
  373. 正在解压缩
  374. </span>
  375. <span
  376. class="unzip-failed"
  377. v-if="data.DecompressState === 3"
  378. >
  379. 解压失败
  380. </span>
  381. </span>
  382. </span>
  383. </el-tree>
  384. <div></div>
  385. </el-row>
  386. <div
  387. class="ui container"
  388. style="margin-top: 25px; text-align: center"
  389. >
  390. <el-pagination
  391. background
  392. @current-change="publicChangePage"
  393. :current-page="initPublicPage"
  394. :page-size="5"
  395. layout="total, prev, pager, next"
  396. :total="totalNumPublic"
  397. >
  398. </el-pagination>
  399. </div>
  400. </el-tab-pane>
  401. <!-- 我点赞的数据集 -->
  402. <el-tab-pane
  403. label="我收藏的"
  404. name="four"
  405. v-loading="loadingFavorite"
  406. >
  407. <el-row>
  408. <el-tree
  409. :data="MyFavoriteDatasetList"
  410. ref="favoriteTree"
  411. highlight-current
  412. show-checkbox
  413. node-key="id"
  414. :default-expanded-keys="initFavoriteTreeNode"
  415. :props="defaultProps"
  416. :index="20"
  417. accordion
  418. @check="onCheck"
  419. >
  420. <span slot-scope="{ node, data }" class="slot-wrap">
  421. <span v-if="data.parent" class="custom-tree-node">
  422. <el-tooltip v-if="data.Description" placement="top-start">
  423. <div slot="content" class="multiple-wrap">
  424. {{ data.Description }}
  425. </div>
  426. <span class="dataset-title dataset-nowrap"
  427. ><div class="dataset_flex">
  428. <span
  429. style="flex: inherit"
  430. class="dataset-nowrap"
  431. >{{ node.label }}</span
  432. >
  433. <img
  434. v-if="data.Recommend"
  435. style="margin-left: 0.4rem"
  436. src="/img/jian.svg"
  437. />
  438. </div>
  439. </span>
  440. </el-tooltip>
  441. <span v-else class="dataset-title dataset-nowrap"
  442. ><div class="dataset_flex">
  443. <span style="flex: inherit" class="dataset-nowrap">{{
  444. node.label
  445. }}</span>
  446. <img
  447. v-if="data.Recommend"
  448. style="margin-left: 0.4rem"
  449. src="/img/jian.svg"
  450. />
  451. </div>
  452. </span>
  453. <span
  454. class="dataset-repolink dataset-nowrap"
  455. @click.stop="return false;"
  456. >
  457. <a
  458. :href="
  459. '/' +
  460. data.Repo.OwnerName +
  461. '/' +
  462. data.Repo.Name +
  463. '/datasets'
  464. "
  465. target="_blank"
  466. :title="data.Repo.OwnerName + '/' + data.Repo.Alias"
  467. >{{ data.Repo.OwnerName }}/{{ data.Repo.Alias }}</a
  468. >
  469. </span>
  470. </span>
  471. <span v-else style="display: flex">
  472. <span class="dataset-nowrap" :title="node.label">
  473. {{ node.label }}
  474. </span>
  475. <span
  476. class="zip-loading"
  477. v-if="data.DecompressState === 2"
  478. >
  479. 正在解压缩
  480. </span>
  481. <span
  482. class="unzip-failed"
  483. v-if="data.DecompressState === 3"
  484. >
  485. 解压失败
  486. </span>
  487. </span>
  488. </span>
  489. </el-tree>
  490. <div></div>
  491. </el-row>
  492. <div
  493. class="ui container"
  494. style="margin-top: 25px; text-align: center"
  495. >
  496. <el-pagination
  497. background
  498. @current-change="favoriteChangePage"
  499. :current-page="initFavoritePage"
  500. :page-size="5"
  501. layout="total, prev, pager, next"
  502. :total="totalNumFavorite"
  503. >
  504. </el-pagination>
  505. </div>
  506. </el-tab-pane>
  507. </el-tabs>
  508. </el-col>
  509. <el-col
  510. :span="7"
  511. style="
  512. display: flex;
  513. flex-direction: column;
  514. height: 100%;
  515. right: 0;
  516. position: absolute;
  517. padding: 0 1.5rem;
  518. "
  519. >
  520. <div
  521. style="
  522. font-size: 14px;
  523. height: 40px;
  524. text-align: left;
  525. color: #0066ff;
  526. line-height: 40px;
  527. "
  528. >
  529. 已选数据文件
  530. </div>
  531. <div style="flex: 1; margin-top: 1.5rem">
  532. <el-checkbox-group v-model="checkList">
  533. <el-checkbox
  534. v-for="(item, index) in selectDatasetArray"
  535. :key="index"
  536. :label="item.label"
  537. :title="item.label"
  538. @change="(checked) => changeCheckbox(checked, item)"
  539. ></el-checkbox>
  540. </el-checkbox-group>
  541. </div>
  542. <div style="text-align: end">
  543. <el-button
  544. @click.native="confirmDataset"
  545. size="small"
  546. style="
  547. background: #389e0d;
  548. color: #fff;
  549. border: 1px solid #389e0d;
  550. "
  551. >确定</el-button
  552. >
  553. </div>
  554. </el-col>
  555. </el-row>
  556. </el-dialog>
  557. </div>
  558. </template>
  559. <script>
  560. const { _AppSubUrl, _StaticUrlPrefix, csrf } = window.config;
  561. export default {
  562. components: {},
  563. data() {
  564. return {
  565. defaultProps: {
  566. children: "Attachments",
  567. label: "label",
  568. },
  569. dialogWidth: "65%",
  570. dialogVisible: false,
  571. benchmarkNew: false,
  572. imageAddress: "",
  573. activeName: "first",
  574. search: "",
  575. required: true,
  576. type: 0,
  577. repoLink: "",
  578. selectDatasetArray: [],
  579. checkList: [],
  580. confirmChecklist: [],
  581. confirmDatasetList: "",
  582. confirmFlag: false,
  583. saveStatusList: [],
  584. //当前项目数据集页面配置的初始化
  585. initCurrentPage: 1,
  586. totalNumCurrent: 0,
  587. paramsCurrent: { page: 1, q: "" },
  588. currentDatasetList: [],
  589. loadingCurrent: false,
  590. initCurrentTreeNode: [],
  591. //我上传的数据集页面配置的初始化
  592. initMyPage: 1,
  593. totalNumMy: 0,
  594. paramsMy: { page: 1, q: "" },
  595. myDatasetList: [],
  596. loadingMy: false,
  597. initMyTreeNode: [],
  598. //公开的数据集页面配置的初始化
  599. initPublicPage: 1,
  600. totalNumPublic: 0,
  601. paramsPublics: { page: 1, q: "" },
  602. publicDatasetList: [],
  603. loadingPublic: false,
  604. initPublicTreeNode: [],
  605. //我点赞的数据集页面配置的初始化
  606. initFavoritePage: 1,
  607. totalNumFavorite: 0,
  608. MyFavoriteDatasetList: [],
  609. paramsFavorite: { page: 1, q: "" },
  610. loadingFavorite: false,
  611. initFavoriteTreeNode: [],
  612. };
  613. },
  614. methods: {
  615. openDataset() {
  616. this.dialogVisible = true;
  617. if (!this.confirmDatasetList) {
  618. this.confirmFlag = false;
  619. }
  620. this.getCurrentRepoDataset();
  621. },
  622. handleClick(tab, event) {
  623. this.search = "";
  624. if (tab.name == "first") {
  625. // this.paramsPublic.q = "";
  626. this.getCurrentRepoDataset();
  627. }
  628. if (tab.name == "second") {
  629. this.getMyUploadDataset();
  630. }
  631. if (tab.name == "third") {
  632. this.getPublicDataset();
  633. }
  634. if (tab.name == "four") {
  635. this.getMyFavoriteDataset();
  636. }
  637. },
  638. //tree 勾选触发事件
  639. onCheck(data, checkedInfo) {
  640. if (
  641. this.selectDatasetArray.length === 0 ||
  642. this.selectDatasetArray.every((item) => item.id !== data.id)
  643. ) {
  644. if (
  645. this.selectDatasetArray.some((item) => {
  646. return item.label.split(".")[0] === data.label.split(".")[0];
  647. })
  648. ) {
  649. this.$refs[data.ref].setChecked(data.id, false, false);
  650. this.$message.warning("不能选择相同名称的数据文件");
  651. } else if (this.selectDatasetArray.length === 5) {
  652. this.$refs[data.ref].setChecked(data.id, false, false);
  653. this.$message.error("最多不超过五个文件");
  654. } else {
  655. this.selectDatasetArray.push(data);
  656. }
  657. } else {
  658. let index = this.selectDatasetArray.findIndex((item) => {
  659. return item.id === data.id;
  660. });
  661. this.selectDatasetArray.splice(index, 1);
  662. }
  663. this.checkList = this.selectDatasetArray.map((item) => {
  664. return item.label;
  665. });
  666. this.saveStatusList = this.selectDatasetArray.map((item) => {
  667. return item.UUID;
  668. });
  669. // this.confirmDatasetList = this.saveStatusList.join(";");
  670. },
  671. //已选择数据集checkbox group 勾选事件
  672. changeCheckbox(checked, data) {
  673. this.$refs.currentTree.setChecked(data.id, false, false);
  674. this.$refs.myTree.setChecked(data.id, false, false);
  675. this.$refs.publicTree.setChecked(data.id, false, false);
  676. this.$refs.favoriteTree.setChecked(data.id, false, false);
  677. let index = this.selectDatasetArray.findIndex((item) => {
  678. return item.id === data.id;
  679. });
  680. this.selectDatasetArray.splice(index, 1);
  681. this.saveStatusList.splice(index, 1);
  682. // this.confirmDatasetList = this.saveStatusList.join(";");
  683. },
  684. tableHeaderStyle({ row, column, rowIndex, columnIndex }) {
  685. if (rowIndex === 0) {
  686. return "background:#f5f5f6;color:#606266";
  687. }
  688. },
  689. currentChangePage(val) {
  690. this.paramsCurrent.page = val;
  691. this.getCurrentRepoDataset();
  692. },
  693. myChangePage(val) {
  694. this.paramsMy.page = val;
  695. this.getMyUploadDataset();
  696. },
  697. publicChangePage(val) {
  698. this.paramsPublics.page = val;
  699. this.getPublicDataset();
  700. },
  701. favoriteChangePage(val) {
  702. this.paramsFavorite.page = val;
  703. this.getMyFavoriteDataset();
  704. },
  705. getCurrentRepoDataset() {
  706. this.loadingCurrent = true;
  707. let url = this.repoLink + "/datasets/current_repo_m";
  708. this.paramsCurrent.type = this.type;
  709. this.$axios
  710. .get(url, {
  711. params: this.paramsCurrent,
  712. })
  713. .then((res) => {
  714. this.loadingCurrent = false;
  715. let data = JSON.parse(res.data.data);
  716. this.currentDatasetList = this.transformeTreeData(
  717. data,
  718. "currentTree",
  719. this.paramsCurrent.page
  720. );
  721. this.initCurrentTreeNode = this.currentDatasetList[0]?.id ? [this.currentDatasetList[0].id] : [];
  722. this.totalNumCurrent = parseInt(res.data.count);
  723. let setCheckedKeysList = this.currentDatasetList.reduce(
  724. (pre, cur) => {
  725. cur.Attachments.forEach((item) => {
  726. if (this.saveStatusList.includes(item.id)) {
  727. pre.push(item.id);
  728. }
  729. });
  730. return pre;
  731. },
  732. []
  733. );
  734. this.$refs.currentTree.setCheckedKeys(setCheckedKeysList);
  735. })
  736. .catch((error) => {
  737. this.loadingCurrent = false;
  738. console.log(error);
  739. });
  740. },
  741. getMyUploadDataset() {
  742. this.loadingMy = true;
  743. let url = this.repoLink + "/datasets/my_datasets_m";
  744. this.paramsMy.type = this.type;
  745. this.$axios
  746. .get(url, {
  747. params: this.paramsMy,
  748. })
  749. .then((res) => {
  750. this.loadingMy = false;
  751. let data = JSON.parse(res.data.data);
  752. this.myDatasetList = this.transformeTreeData(
  753. data,
  754. "myTree",
  755. this.paramsMy.page
  756. );
  757. this.initMyTreeNode = this.myDatasetList[0]?.id ? [this.myDatasetList[0].id] : [];
  758. this.totalNumMy = parseInt(res.data.count);
  759. let setCheckedKeysList = this.myDatasetList.reduce((pre, cur) => {
  760. cur.Attachments.forEach((item) => {
  761. if (this.saveStatusList.includes(item.id)) {
  762. pre.push(item.id);
  763. }
  764. });
  765. return pre;
  766. }, []);
  767. this.$refs.myTree.setCheckedKeys(setCheckedKeysList);
  768. })
  769. .catch((error) => {
  770. console.log(error);
  771. });
  772. },
  773. getPublicDataset() {
  774. this.loadingPublic = true;
  775. let url = this.repoLink + "/datasets/public_datasets_m";
  776. this.paramsPublics.type = this.type;
  777. this.$axios
  778. .get(url, {
  779. params: this.paramsPublics,
  780. })
  781. .then((res) => {
  782. this.loadingPublic = false;
  783. let data = JSON.parse(res.data.data);
  784. this.publicDatasetList = this.transformeTreeData(
  785. data,
  786. "publicTree",
  787. this.paramsPublics.page
  788. );
  789. this.initPublicTreeNode = this.publicDatasetList[0]?.id ? [this.publicDatasetList[0].id] : [];
  790. this.totalNumPublic = parseInt(res.data.count);
  791. let setCheckedKeysList = this.publicDatasetList.reduce((pre, cur) => {
  792. cur.Attachments.forEach((item) => {
  793. if (this.saveStatusList.includes(item.id)) {
  794. pre.push(item.id);
  795. }
  796. });
  797. return pre;
  798. }, []);
  799. this.$refs.publicTree.setCheckedKeys(setCheckedKeysList);
  800. })
  801. .catch((error) => {
  802. this.loadingPublic = false;
  803. console.log(error);
  804. });
  805. },
  806. getMyFavoriteDataset() {
  807. this.loadingFavorite = true;
  808. let url = this.repoLink + "/datasets/my_favorite_m";
  809. this.paramsFavorite.type = this.type;
  810. this.$axios
  811. .get(url, {
  812. params: this.paramsFavorite,
  813. })
  814. .then((res) => {
  815. this.loadingFavorite = false;
  816. let data = JSON.parse(res.data.data);
  817. this.MyFavoriteDatasetList = this.transformeTreeData(
  818. data,
  819. "favoriteTree",
  820. this.paramsFavorite.page
  821. );
  822. this.initFavoriteTreeNode = this.MyFavoriteDatasetList[0]?.id ? [this.MyFavoriteDatasetList[0].id] : [];
  823. this.totalNumFavorite = parseInt(res.data.count);
  824. let setCheckedKeysList = this.MyFavoriteDatasetList.reduce(
  825. (pre, cur) => {
  826. cur.Attachments.forEach((item) => {
  827. if (this.saveStatusList.includes(item.id)) {
  828. pre.push(item.id);
  829. }
  830. });
  831. return pre;
  832. },
  833. []
  834. );
  835. this.$refs.favoriteTree.setCheckedKeys(setCheckedKeysList);
  836. })
  837. .catch((error) => {
  838. this.loadingFavorite = false;
  839. console.log(error);
  840. });
  841. },
  842. transformeTreeData(data, ref, page) {
  843. return data.reduce((preParent, curParent) => {
  844. curParent.id = curParent.ID;
  845. curParent.disabled = true;
  846. curParent.parent = true;
  847. curParent.label = curParent.Title;
  848. let childrenData = curParent.Attachments.reduce(
  849. (preChild, curchild) => {
  850. curchild.id = curchild.UUID;
  851. if (curchild.DecompressState !== 1) {
  852. curchild.disabled = true;
  853. }
  854. curchild.ref = ref;
  855. curchild.label = curchild.Name;
  856. preChild.push(curchild);
  857. return preChild;
  858. },
  859. []
  860. );
  861. preParent.push(curParent);
  862. return preParent;
  863. }, []);
  864. },
  865. searchName() {
  866. if (this.activeName == "first") {
  867. this.paramsCurrent.q = this.search;
  868. this.paramsCurrent.page = 1;
  869. this.getCurrentRepoDataset();
  870. }
  871. if (this.activeName == "second") {
  872. this.paramsMy.q = this.search;
  873. this.paramsMy.page = 1;
  874. this.getMyUploadDataset();
  875. }
  876. if (this.activeName == "third") {
  877. this.paramsPublics.q = this.search;
  878. this.paramsPublics.page = 1;
  879. this.getPublicDataset();
  880. }
  881. if (this.activeName == "four") {
  882. this.paramsFavorite.q = this.search;
  883. this.paramsFavorite.page = 1;
  884. this.getMyFavoriteDataset();
  885. }
  886. return false;
  887. },
  888. confirmDataset() {
  889. this.confirmDatasetList = this.saveStatusList.join(";");
  890. this.confirmChecklist = this.checkList;
  891. this.dialogVisible = false;
  892. this.confirmFlag = true;
  893. },
  894. setDialogWidth() {
  895. const cWidth = document.body.clientWidth;
  896. if (cWidth > 1600) {
  897. this.dialogWidth = "1200px";
  898. } else if (cWidth < 1600 && 1200 < cWidth) {
  899. this.dialogWidth = "1127px";
  900. } else if (992 < cWidth && cWidth < 1200) {
  901. this.dialogWidth = "993px";
  902. } else {
  903. this.dialogWidth = "723px";
  904. }
  905. },
  906. },
  907. watch: {
  908. search(val) {
  909. if (!val) {
  910. switch (this.activeName) {
  911. case "first": {
  912. this.paramsCurrent.q = val;
  913. this.getCurrentRepoDataset();
  914. break;
  915. }
  916. case "second": {
  917. this.paramsMy.q = val;
  918. this.getMyUploadDataset();
  919. break;
  920. }
  921. case "third": {
  922. this.paramsPublics.q = val;
  923. this.getPublicDataset();
  924. break;
  925. }
  926. case "four": {
  927. this.paramsFavorite.q = val;
  928. this.getMyFavoriteDataset();
  929. break;
  930. }
  931. default:
  932. console.log("error");
  933. }
  934. }
  935. },
  936. },
  937. mounted() {
  938. this.type = $(".cloudbrain-type").data("cloudbrain-type");
  939. this.repoLink = $(".cloudbrain-type").data("repo-link");
  940. if (
  941. location.href.indexOf("benchmark") !== -1 ||
  942. location.href.indexOf("train-job") !== -1
  943. ) {
  944. this.benchmarkNew = true;
  945. }
  946. if (location.href.indexOf("modelarts/notebook/create") !== -1 || location.href.indexOf("/cloudbrain/create") !== -1) {
  947. this.required = false;
  948. }
  949. window.onresize = () => {
  950. return (() => {
  951. this.setDialogWidth();
  952. })();
  953. };
  954. },
  955. created() {
  956. this.setDialogWidth();
  957. },
  958. };
  959. </script>
  960. <style scoped>
  961. .header-wrapper {
  962. background-color: #f5f5f6;
  963. padding-top: 15px;
  964. }
  965. .image_text {
  966. padding: 25px 0 55px 0;
  967. }
  968. #header {
  969. position: relative;
  970. top: -40px;
  971. }
  972. #success {
  973. background-color: #5bb973;
  974. color: white;
  975. }
  976. .text-over {
  977. overflow: hidden;
  978. text-overflow: ellipsis;
  979. vertical-align: middle;
  980. white-space: nowrap;
  981. }
  982. .image_title {
  983. display: inline-block;
  984. width: 80%;
  985. cursor: default;
  986. color: rgb(66, 98, 144);
  987. }
  988. .image_desc {
  989. -webkit-line-clamp: 2;
  990. -webkit-box-orient: vertical;
  991. display: -webkit-box;
  992. text-overflow: ellipsis;
  993. overflow: hidden;
  994. }
  995. .heart-stroke {
  996. stroke: #666;
  997. stroke-width: 2;
  998. fill: #fff;
  999. }
  1000. .stars_active {
  1001. fill: #fa8c16 !important;
  1002. stroke: #fa8c16 !important;
  1003. }
  1004. /deep/ .el-dialog__body {
  1005. position: relative;
  1006. }
  1007. .el-tree {
  1008. max-height: 400px;
  1009. overflow-y: auto;
  1010. overflow-x: hidden;
  1011. position: relative;
  1012. cursor: default;
  1013. background: #fff;
  1014. color: #606266;
  1015. font-family: SourceHanSansSC-medium;
  1016. }
  1017. .custom-tree-node {
  1018. display: flex;
  1019. align-items: center;
  1020. justify-content: space-between;
  1021. }
  1022. .custom-tree-node .dataset-title {
  1023. font-size: 14px;
  1024. color: #101010;
  1025. font-weight: 600;
  1026. flex: 1;
  1027. }
  1028. .custom-tree-node .dataset-repolink {
  1029. flex: 1;
  1030. text-align: right;
  1031. font-size: 12px;
  1032. }
  1033. .el-tree /deep/ .el-tree-node__content {
  1034. height: 40px;
  1035. background-color: #f5f5f6;
  1036. }
  1037. .el-tree /deep/ .el-tree-node__children .el-tree-node__content {
  1038. height: 30px;
  1039. background-color: #fff;
  1040. line-height: 20px;
  1041. font-size: 12px;
  1042. }
  1043. /deep/ .el-checkbox-group .el-checkbox {
  1044. max-width: 100%;
  1045. min-width: 80%;
  1046. }
  1047. /deep/ .el-checkbox-group .el-checkbox .el-checkbox__label {
  1048. max-width: 100%;
  1049. overflow: hidden;
  1050. vertical-align: middle;
  1051. text-overflow: ellipsis;
  1052. }
  1053. .dataset-nowrap {
  1054. overflow: hidden;
  1055. text-overflow: ellipsis;
  1056. }
  1057. .slot-wrap {
  1058. flex: 1;
  1059. padding-right: 2rem;
  1060. max-width: 93%;
  1061. }
  1062. .multiple-wrap {
  1063. -webkit-line-clamp: 3;
  1064. -webkit-box-orient: vertical;
  1065. display: -webkit-box;
  1066. max-width: 400px;
  1067. overflow: hidden;
  1068. }
  1069. .unzip-failed {
  1070. margin-left: 1rem;
  1071. color: red;
  1072. }
  1073. .zip-loading {
  1074. margin-left: 1rem;
  1075. color: #fcca00;
  1076. }
  1077. .dataset-search-vue {
  1078. z-index: 9999;
  1079. position: absolute;
  1080. right: 31%;
  1081. height: 30px;
  1082. top: 6px;
  1083. }
  1084. .select-dataset-label {
  1085. max-width: 100%;
  1086. overflow: hidden;
  1087. text-overflow: ellipsis;
  1088. margin-right: 1rem;
  1089. white-space: nowrap;
  1090. }
  1091. .dataset_flex {
  1092. display: flex;
  1093. align-items: center;
  1094. }
  1095. .dataset-debug-span {
  1096. display: inline-block;
  1097. width: 50%;
  1098. margin-left: 0.3rem;
  1099. }
  1100. .dataset-train-span {
  1101. display: inline-block;
  1102. width: 48.5%;
  1103. margin-left: 0.3rem;
  1104. }
  1105. .margin_b_0 {
  1106. margin-bottom: 0 !important;
  1107. }
  1108. .select-dataset-button {
  1109. margin-left: 0.3rem;
  1110. color: #0366d6;
  1111. }
  1112. .select-dataset-button-color {
  1113. color: #0366d6;
  1114. }
  1115. .multi-dataset-box {
  1116. border: 1px solid rgba(34, 36, 38, 0.15);
  1117. padding: 0.678571em 1em;
  1118. border-radius: 0.285714rem;
  1119. background: rgb(255, 255, 255);
  1120. display: flex;
  1121. flex-direction: column;
  1122. }
  1123. @media screen and (min-width: 1200px) and (max-width: 1600px) {
  1124. .dataset-search-vue {
  1125. top: -36px;
  1126. }
  1127. }
  1128. @media screen and (min-width: 1200px) and (max-width: 1400px) {
  1129. .multiple-wrap {
  1130. max-width: 200px;
  1131. }
  1132. }
  1133. </style>