Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Submissions geupdated voor nieuwe docker output #265

Merged
merged 6 commits into from
May 17, 2024

Conversation

badduck32
Copy link
Contributor

Submission pagina is nu aangepast zodat het de nieuwe docker output ondersteunt.

Volgende snippet code kan nog problemen veroorzaken:

    useEffect(() => {
        const getFileName = async () => {
            //mss is er een betere manier om de filename te krijgen, dit werkt maar kan mss langzaam zijn met hele grote files/directories
            try {
                const response = await apiCall.get(submission.fileUrl, undefined, undefined, {
                    responseType: 'blob',
                    transformResponse: [(data) => data],
                });
                const contentDisposition = response.headers['content-disposition'];
                if (contentDisposition) {
                    const fileNameMatch = contentDisposition.match(/filename=([^;]+)/);
                    console.log(fileNameMatch);
                    if (fileNameMatch && fileNameMatch[1]) {
                        setFilename(fileNameMatch[1]); // use the filename from the headers
                    }
                }
            } catch (err) {
                console.log(err);
                setFilename(null);
            }
        };
    
        getFileName();
    }, [submission]);

Deze code snippet vraagt de filename op van de ingediende file, maar volgens mij downloadt het ook de hele file (dit stuk code is gekopieerd van de file download code). Misschien is het een goed idee om dit anders te doen om alleen de filename op te vragen, maar weet niet hoe. Tips zijn welkom :)

@badduck32 badduck32 added this to the Milestone 2 milestone May 17, 2024
@badduck32 badduck32 requested a review from usserwoutV2 May 17, 2024 12:26
@badduck32 badduck32 self-assigned this May 17, 2024
Copy link
Contributor

@usserwoutV2 usserwoutV2 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ik heb nog een paar UI changes gemaakt (bv correct & output` worden naast elkaar getoond) en heb de '<file name>.zip' aangepast naar een download knop. Voor de rest ziet het er goed uit.

@usserwoutV2 usserwoutV2 merged commit 5dcc833 into frontend May 17, 2024
1 check passed
@usserwoutV2 usserwoutV2 deleted the fontend/submission-update branch May 17, 2024 20:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants