Skip to content

Commit

Permalink
Refactored dashboard sort logic.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecao committed Aug 5, 2022
1 parent 42e87a4 commit 62b032a
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 39 deletions.
4 changes: 2 additions & 2 deletions components/pages/Dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ export default function Dashboard() {
<div>{formatMessage(messages.dashboard)}</div>
{!editing && <DashboardSettingsButton />}
</PageHeader>
{editing && <DashboardEdit data={data} />}
{!editing && <WebsiteList data={data} showCharts={showCharts} limit={max} />}
{editing && <DashboardEdit websites={data} />}
{!editing && <WebsiteList websites={data} showCharts={showCharts} limit={max} />}
{max < data.length && (
<Button className={styles.button} onClick={handleMore}>
{formatMessage(messages.more)}
Expand Down
22 changes: 10 additions & 12 deletions components/pages/DashboardEdit.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import { useState } from 'react';
import { useState, useMemo } from 'react';
import { defineMessages, useIntl } from 'react-intl';
import { DragDropContext, Draggable, Droppable } from 'react-beautiful-dnd';
import useDashboard, { saveDashboard } from 'store/dashboard';
import classNames from 'classnames';
import Button from 'components/common/Button';
import { useMemo } from 'react';
import { orderByWebsiteMap } from 'lib/format';
import { sortArrayByMap } from 'lib/array';
import useDashboard, { saveDashboard } from 'store/dashboard';
import styles from './DashboardEdit.module.css';
import classNames from 'classnames';

const messages = defineMessages({
save: { id: 'label.save', defaultMessage: 'Save' },
Expand All @@ -16,13 +15,13 @@ const messages = defineMessages({

const dragId = 'dashboard-website-ordering';

export default function DashboardEdit({ data: websites }) {
export default function DashboardEdit({ websites }) {
const settings = useDashboard();
const { websiteOrder } = settings;
const { formatMessage } = useIntl();
const [order, setOrder] = useState(websiteOrder);
const [order, setOrder] = useState(websiteOrder || []);

const ordered = useMemo(() => orderByWebsiteMap(websites, order), [websites, order]);
const ordered = useMemo(() => sortArrayByMap(websites, order, 'website_id'), [websites, order]);

console.log({ order, ordered });

Expand All @@ -33,9 +32,7 @@ export default function DashboardEdit({ data: websites }) {
const [removed] = orderedWebsites.splice(source.index, 1);
orderedWebsites.splice(destination.index, 0, removed);

setOrder(
orderedWebsites.map((i, k) => ({ [i.website_uuid]: k })).reduce((a, b) => ({ ...a, ...b })),
);
setOrder(orderedWebsites.map(({ website_id }) => website_id));
}

function handleSave() {
Expand All @@ -50,7 +47,7 @@ export default function DashboardEdit({ data: websites }) {
}

function handleReset() {
setOrder({});
setOrder([]);
}

return (
Expand Down Expand Up @@ -94,6 +91,7 @@ export default function DashboardEdit({ data: websites }) {
)}
</Draggable>
))}
{provided.placeholder}
</div>
)}
</Droppable>
Expand Down
13 changes: 9 additions & 4 deletions components/pages/WebsiteList.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import EmptyPlaceholder from 'components/common/EmptyPlaceholder';
import Arrow from 'assets/arrow-right.svg';
import styles from './WebsiteList.module.css';
import useDashboard from 'store/dashboard';
import { orderByWebsiteMap } from 'lib/format';
import { sortArrayByMap } from 'lib/array';
import { useMemo } from 'react';

const messages = defineMessages({
Expand All @@ -20,11 +20,16 @@ const messages = defineMessages({
},
});

export default function WebsiteList({ data, showCharts, limit }) {
export default function WebsiteList({ websites, showCharts, limit }) {
const { websiteOrder } = useDashboard();
const { formatMessage } = useIntl();

const websites = useMemo(() => orderByWebsiteMap(data, websiteOrder), [data, websiteOrder]);
console.log({ websiteOrder });

const ordered = useMemo(
() => sortArrayByMap(websites, websiteOrder, 'website_id'),
[websites, websiteOrder],
);

if (websites.length === 0) {
return (
Expand All @@ -40,7 +45,7 @@ export default function WebsiteList({ data, showCharts, limit }) {

return (
<div>
{websites.map(({ website_id, name, domain }, index) =>
{ordered.map(({ website_id, name, domain }, index) =>
index < limit ? (
<div key={website_id} className={styles.website}>
<WebsiteChart
Expand Down
6 changes: 1 addition & 5 deletions components/settings/DashboardSettingsButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,7 @@ export default function DashboardSettingsButton() {

function handleSelect(value) {
if (value === 'charts') {
saveDashboard(state => {
const bs = { showCharts: !state.showCharts };
console.log('WTF', { state, bs });
return bs;
});
saveDashboard(state => ({ showCharts: !state.showCharts }));
}
if (value === 'order') {
saveDashboard({ editing: true });
Expand Down
7 changes: 7 additions & 0 deletions lib/array.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,10 @@ export function chunk(arr, size) {

return chunks;
}

export function sortArrayByMap(arr, map = [], key) {
if (!arr) return [];
if (map.length === 0) return arr;

return map.map(id => arr.find(item => item[key] === id));
}
11 changes: 0 additions & 11 deletions lib/format.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,3 @@ export function stringToColor(str) {
}
return color;
}

export function orderByWebsiteMap(websites, orderMap) {
if (!websites) return [];

let ordered = [...websites];
for (let website of websites) {
ordered[orderMap[website.website_uuid]] = website;
}

return ordered;
}
2 changes: 0 additions & 2 deletions lib/web.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ export const getItem = (key, session) => {
return JSON.parse(value);
}
}

return null;
};

export const removeItem = (key, session) => {
Expand Down
5 changes: 2 additions & 3 deletions store/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@ import { getItem, setItem } from 'lib/web';
export const initialState = {
showCharts: true,
limit: DEFAULT_WEBSITE_LIMIT,
websiteOrder: {},
websiteOrder: [],
editing: false,
};

const store = create(() => ({ ...initialState, ...getItem(DASHBOARD_CONFIG) }));

export function saveDashboard(settings) {
const state = typeof settings === 'function' ? settings(store.getState()) : settings;
store.setState(state);
store.setState(settings);

setItem(DASHBOARD_CONFIG, store.getState());
}
Expand Down

0 comments on commit 62b032a

Please sign in to comment.