Re-refactored Codebase
This commit is contained in:
parent
c7ef96b412
commit
beb8785ce6
6 changed files with 59 additions and 67 deletions
|
@ -19,7 +19,6 @@ const DetailsContainer = styled.div`
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const AppLink = styled.a`
|
const AppLink = styled.a`
|
||||||
font-family: Roboto, sans-serif;
|
|
||||||
flex: 1 0 auto;
|
flex: 1 0 auto;
|
||||||
color: ${selectedTheme.mainColor};
|
color: ${selectedTheme.mainColor};
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
@ -34,7 +33,6 @@ const AppLink = styled.a`
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const AppDescription = styled.p`
|
const AppDescription = styled.p`
|
||||||
font-family: Roboto, sans-serif;
|
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-size: 0.65rem;
|
font-size: 0.65rem;
|
||||||
|
|
|
@ -4,17 +4,17 @@ import { App } from './app';
|
||||||
import { ItemList, Item, SubHeadline } from './elements';
|
import { ItemList, Item, SubHeadline } from './elements';
|
||||||
|
|
||||||
const CategoryHeadline = styled(SubHeadline)`
|
const CategoryHeadline = styled(SubHeadline)`
|
||||||
|
padding-top: 1rem;
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const CategoryContainer = styled.div`
|
const CategoryContainer = styled.div`
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding-top: 1rem;
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const Category = ({ name, items }) => (
|
export const AppCategory = ({ name, items }) => (
|
||||||
<CategoryContainer>
|
<CategoryContainer>
|
||||||
<CategoryHeadline>{name}</CategoryHeadline>
|
{name && <CategoryHeadline>{name}</CategoryHeadline>}
|
||||||
<ItemList>
|
<ItemList>
|
||||||
{items.map((app, idx) => (
|
{items.map((app, idx) => (
|
||||||
<Item key={[app.name, idx].join('')}>
|
<Item key={[app.name, idx].join('')}>
|
|
@ -1,13 +1,10 @@
|
||||||
import React, { useCallback, useEffect, useState } from 'react';
|
import React, { useCallback, useEffect, useState } from 'react';
|
||||||
import { App } from './app';
|
import { AppCategory } from './appCategory';
|
||||||
import { Category } from './category';
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
handleResponse,
|
handleResponse,
|
||||||
Headline,
|
Headline,
|
||||||
ListContainer,
|
ListContainer,
|
||||||
ItemList,
|
|
||||||
Item,
|
|
||||||
ErrorMessage,
|
ErrorMessage,
|
||||||
} from './elements';
|
} from './elements';
|
||||||
|
|
||||||
|
@ -39,29 +36,19 @@ const AppList = () => {
|
||||||
return (
|
return (
|
||||||
<ListContainer>
|
<ListContainer>
|
||||||
<Headline>Applications</Headline>
|
<Headline>Applications</Headline>
|
||||||
|
{error && <ErrorMessage>{error}</ErrorMessage>}
|
||||||
{categories &&
|
{categories &&
|
||||||
categories.map((category, idx) => (
|
categories.map(({ name, items }, idx) => (
|
||||||
<Category
|
<AppCategory
|
||||||
key={[category.name, idx].join('')}
|
key={[name, idx].join('')}
|
||||||
name={category.name}
|
name={name}
|
||||||
items={category.items}
|
items={items}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
|
<AppCategory
|
||||||
<ItemList>
|
name={categories ? 'Uncategorized apps' : null}
|
||||||
{error && <ErrorMessage>{error}</ErrorMessage>}
|
items={apps}
|
||||||
{apps.map((app, idx) => (
|
/>
|
||||||
<Item key={[app.name, idx].join('')}>
|
|
||||||
<App
|
|
||||||
name={app.name}
|
|
||||||
icon={app.icon}
|
|
||||||
url={app.url}
|
|
||||||
displayURL={app.displayURL}
|
|
||||||
/>
|
|
||||||
</Item>
|
|
||||||
))}
|
|
||||||
</ItemList>
|
|
||||||
</ListContainer>
|
</ListContainer>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
36
src/components/bookmarkGroup.js
Normal file
36
src/components/bookmarkGroup.js
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
import React from 'react';
|
||||||
|
import styled from 'styled-components';
|
||||||
|
import { Item, SubHeadline } from './elements';
|
||||||
|
import selectedTheme from './themeManager';
|
||||||
|
|
||||||
|
const GroupContainer = styled.div`
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
flex: 2 1 auto;
|
||||||
|
padding: 1rem 0;
|
||||||
|
`;
|
||||||
|
|
||||||
|
const Bookmark = styled.a`
|
||||||
|
font-weight: 400;
|
||||||
|
text-decoration: none;
|
||||||
|
color: ${selectedTheme.accentColor};
|
||||||
|
padding-top: 10px;
|
||||||
|
font-size: 14px;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
export const BookmarkGroup = ({ name: groupName, items }) => (
|
||||||
|
<Item>
|
||||||
|
<GroupContainer>
|
||||||
|
<SubHeadline>{groupName}</SubHeadline>
|
||||||
|
{items.map(({ name, url }, idx) => (
|
||||||
|
<Bookmark key={[name, idx].join('')} href={url}>
|
||||||
|
{name}
|
||||||
|
</Bookmark>
|
||||||
|
))}
|
||||||
|
</GroupContainer>
|
||||||
|
</Item>
|
||||||
|
);
|
|
@ -1,35 +1,14 @@
|
||||||
import React, { useCallback, useEffect, useState } from 'react';
|
import React, { useCallback, useEffect, useState } from 'react';
|
||||||
import styled from 'styled-components';
|
|
||||||
|
|
||||||
import selectedTheme from './themeManager';
|
|
||||||
import {
|
import {
|
||||||
handleResponse,
|
handleResponse,
|
||||||
Headline,
|
Headline,
|
||||||
SubHeadline,
|
|
||||||
ListContainer,
|
ListContainer,
|
||||||
ItemList,
|
ItemList,
|
||||||
Item,
|
|
||||||
ErrorMessage,
|
ErrorMessage,
|
||||||
} from './elements';
|
} from './elements';
|
||||||
|
|
||||||
const BookmarkGroup = styled.div`
|
import { BookmarkGroup } from './bookmarkGroup';
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
flex: 2 1 auto;
|
|
||||||
padding: 1rem 0;
|
|
||||||
`;
|
|
||||||
|
|
||||||
const Bookmark = styled.a`
|
|
||||||
font-weight: 400;
|
|
||||||
text-decoration: none;
|
|
||||||
color: ${selectedTheme.accentColor};
|
|
||||||
padding-top: 10px;
|
|
||||||
font-size: 14px;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
const useBookmarkData = () => {
|
const useBookmarkData = () => {
|
||||||
const [bookmarkData, setBookmarkData] = useState({
|
const [bookmarkData, setBookmarkData] = useState({
|
||||||
|
@ -63,22 +42,15 @@ const BookmarkList = () => {
|
||||||
return (
|
return (
|
||||||
<ListContainer>
|
<ListContainer>
|
||||||
<Headline>Bookmarks</Headline>
|
<Headline>Bookmarks</Headline>
|
||||||
|
{error && <ErrorMessage>{error}</ErrorMessage>}
|
||||||
<ItemList>
|
<ItemList>
|
||||||
{error && <ErrorMessage>{error}</ErrorMessage>}
|
{groups.map(({ name, items }, idx) => (
|
||||||
{groups.map((group, idx) => {
|
<BookmarkGroup
|
||||||
return (
|
key={[name, idx].join('')}
|
||||||
<Item key={[group.name, idx].join('')}>
|
name={name}
|
||||||
<BookmarkGroup>
|
items={items}
|
||||||
<SubHeadline>{group.name}</SubHeadline>
|
/>
|
||||||
{group.items.map(({ url, name: linkName }) => (
|
))}
|
||||||
<Bookmark key={linkName} href={url}>
|
|
||||||
{linkName}
|
|
||||||
</Bookmark>
|
|
||||||
))}
|
|
||||||
</BookmarkGroup>
|
|
||||||
</Item>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</ItemList>
|
</ItemList>
|
||||||
</ListContainer>
|
</ListContainer>
|
||||||
);
|
);
|
||||||
|
|
|
@ -39,7 +39,6 @@ const FormContainer = styled.div`
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const Table = styled.table`
|
const Table = styled.table`
|
||||||
font-family: Roboto, sans-serif;
|
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
background: none;
|
background: none;
|
||||||
color: ${selectedTheme.mainColor};
|
color: ${selectedTheme.mainColor};
|
||||||
|
|
Loading…
Add table
Reference in a new issue