-
Notifications
You must be signed in to change notification settings - Fork 501
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Start bulk CID import * Get functional MVP working with csv file * Get it working with txt file * WIP: bulk import modal UX * WIP, need to debug modal UX * Modal UX working, need to clean up code * Remove comments * Clean code * Add validation to file select * Use localization * Add correct type, remove progress tracking * Refactor code * Add storybook file * Remove comments * Update Add menu test * Remove prop-types * Use functional component * Use useTranslation * Update to TS file * Update import path * fix(explore): browsing chunked files and inspecting via context menu (#2305) * fix(explore): chunked files This includes latest ipld-explorer-components with fix from ipfs/ipld-explorer-components#462 also bumped kubo and caniuse and non-breaking audit suggestions * fix(files): Inspect via context menu Closes #2306 * chore(ci): set cluster pin timeout to 30m https://github.com/ipfs/ipfs-webui/actions/workflows/ci.yml?page=4&query=is%3Asuccess are usually under 10-20 minutes if something takes longer it will likely take ages and then fail, so better to fail faster, allowing user to retry release * chore(ci): use repo in offline mode no need to start node and open outgoing connections github CI may be punishing us by throttling egress * Get functional MVP working with csv file * Get it working with txt file * WIP: bulk import modal UX * WIP, need to debug modal UX * Modal UX working, need to clean up code * Remove comments * Clean code * Add validation to file select * Use localization * Add correct type, remove progress tracking * Refactor code * Add storybook file * Remove comments * Update Add menu test * chore(release): 4.4.1 [skip ci] ## [4.4.1](v4.4.0...v4.4.1) (2024-11-30) CID `bafybeiatztgdllxnp5p6zu7bdwhjmozsmd7jprff4bdjqjljxtylitvss4` --- ### Bug Fixes * add lithuanian to languages.json ([#2293](#2293)) ([40c512b](40c512b)) * analyze script doesn't persist stats.json ([#2290](#2290)) ([dbbdd70](dbbdd70)) * **explore:** browsing chunked files and inspecting via context menu ([#2305](#2305)) ([0412970](0412970)), closes [#2306](#2306) ### Trivial Changes * **ci:** add CAR file directly to cluster ([#2304](#2304)) ([e2ae110](e2ae110)) * **ci:** no replication factor when pinning - use cluster's default ([#2302](#2302)) ([81b8f29](81b8f29)) * **ci:** set cluster pin timeout to 30m ([4b8fc00](4b8fc00)) * **ci:** udpate artifact actions to v4 ([#2292](#2292)) ([305908f](305908f)) * **ci:** use repo in offline mode ([eaf63ed](eaf63ed)) * pull new translations ([#2291](#2291)) ([bfe7e40](bfe7e40)) * pull transifex translations ([#2296](#2296)) ([502abd4](502abd4)) * pull transifex translations ([#2303](#2303)) ([89c094b](89c094b)) * size-related labels in Files screen ([#2295](#2295)) ([49019d4](49019d4)) * chore: pull new translations (#2308) Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: lidel <[email protected]> * Remove prop-types * Use functional component * Use useTranslation * Update to TS file * Update import path --------- Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Marcin Rataj <[email protected]> Co-authored-by: semantic-release-bot <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: lidel <[email protected]> Co-authored-by: Russell Dempsey <[email protected]>
- Loading branch information
1 parent
d751fc6
commit 830a30d
Showing
12 changed files
with
229 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/files/modals/bulk-import-modal/bulk-import-modal.stories.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from 'react' | ||
import { action } from '@storybook/addon-actions' | ||
import i18n from '../../../i18n-decorator.js' | ||
import BulkImportModal from './bulk-import-modal.tsx' | ||
|
||
/** | ||
* @type {import('@storybook/react').Meta} | ||
*/ | ||
export default { | ||
title: 'Files/Modals', | ||
decorators: [i18n] | ||
} | ||
|
||
/** | ||
* @type {import('@storybook/react').StoryObj} | ||
*/ | ||
export const BulkImport = () => ( | ||
<div className="ma3"> | ||
<BulkImportModal onCancel={action('Cancel')} onBulkCidImport={action('Bulk CID Import')} /> | ||
</div> | ||
) |
Oops, something went wrong.