Skip to content

[WEB-66] Fix Files and Folders Don't Wrap When Resizing Screen #376

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
// Wraps the contents of a file stored on the CMS into its own
// functional component, with hovering capabilities

import React from "react";
import styled, { css } from "styled-components";
import { useNavigate } from "react-router-dom";
import Renamable from "./Renamable";
import React from 'react';
import styled, { css } from 'styled-components';
import { useNavigate } from 'react-router-dom';
import Renamable from './Renamable';

type Props = {
name: string;
Expand All @@ -32,9 +32,10 @@ const IconContainer = styled.div<styledProps>`
text-align: center;
margin-bottom: 10px;
cursor: pointer;
margin: 20px;

border: ${(props) =>
props.active ? "3px solid red" : "3px solid var(--background-color)"};
props.active ? '3px solid red' : '3px solid var(--background-color)'};
`;

function FileContainer({ name, id, selectedFile, setSelectedFile }: Props) {
Expand All @@ -48,22 +49,23 @@ function FileContainer({ name, id, selectedFile, setSelectedFile }: Props) {
console.log(id);
setSelectedFile(id);
if (selectedFile !== null) {
navigate("/editor/" + selectedFile, {
navigate('/editor/' + selectedFile, {
replace: false,
state: {
filename: name
}
}), [navigate];
filename: name,
},
}),
[navigate];
}
};

return (
<div
style={{
display: "flex",
flexDirection: "column",
alignItems: "center",
padding: "35px",
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
width: '140px',
}}
>
<IconContainer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export default function Renderer({ selectedFile, setSelectedFile }: Props) {
<div
style={{
display: 'flex',
flexWrap: 'wrap',
}}
>
{renderItems()}
Expand Down