Skip to content

Commit

Permalink
Merge pull request #490 from KyuTae98/Fake
Browse files Browse the repository at this point in the history
feat(view): FakeIDEAdapter.ts 임의 수정
  • Loading branch information
KyuTae98 committed Sep 30, 2023
2 parents 6db8016 + 8be6c7b commit ea57676
Show file tree
Hide file tree
Showing 6 changed files with 772 additions and 245 deletions.
File renamed without changes.
13 changes: 8 additions & 5 deletions packages/view/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import "reflect-metadata";
import { container } from "tsyringe";
import { useEffect, useRef } from "react";
import BounceLoader from "react-spinners/BounceLoader";
import classNames from "classnames/bind";

import {
BranchSelector,
Expand All @@ -11,13 +12,15 @@ import {
VerticalClusterList,
FilteredAuthors,
} from "components";
import "./App.scss";
import type IDEPort from "ide/IDEPort";
import { useGlobalData } from "hooks";
import { RefreshButton } from "components/RefreshButton";
import type { IDESentEvents } from "types/IDESentEvents";

import styles from "./App.module.scss";

const App = () => {
const cx = classNames.bind(styles);
const initRef = useRef<boolean>(false);

const { filteredData, handleChangeAnalyzedData, handleChangeBranchList, loading, setLoading } = useGlobalData();
Expand Down Expand Up @@ -56,18 +59,18 @@ const App = () => {

return (
<>
<div className="header-container">
<div className={cx("header-container")}>
<BranchSelector />
<div className="header-buttons">
<div className={cx("header-buttons")}>
<ThemeSelector />
<RefreshButton />
</div>
</div>
<div className="top-container">
<div className={cx("top-container")}>
<TemporalFilter />
<FilteredAuthors />
</div>
<div className="middle-container">
<div className={cx("middle-container")}>
{filteredData.length !== 0 ? (
<>
<VerticalClusterList />
Expand Down
Loading

0 comments on commit ea57676

Please sign in to comment.