Skip to content

Commit 53187b3

Browse files
committed
Merge branch 'develop' into production
2 parents f95759f + 6cee515 commit 53187b3

18 files changed

+12288
-17953
lines changed

package-lock.json

-17,757
This file was deleted.

package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -12,34 +12,34 @@
1212
"homepage": "https://grouptabs.net/",
1313
"dependencies": {
1414
"@seznam/compose-react-refs": "^1.0.6",
15-
"@types/jest": "^26.0.22",
16-
"@types/node": "^14.14.37",
15+
"@types/jest": "^26.0.24",
16+
"@types/node": "^14.17.32",
1717
"@types/pouchdb": "^6.4.0",
18-
"@types/react": "^17.0.3",
19-
"@types/react-dom": "^17.0.3",
20-
"@types/react-redux": "^7.1.16",
18+
"@types/react": "^17.0.34",
19+
"@types/react-dom": "^17.0.11",
20+
"@types/react-redux": "^7.1.20",
2121
"@types/react-test-renderer": "^17.0.1",
22-
"@types/redux-first-router": "^2.1.5",
23-
"@types/uuid": "^8.3.0",
24-
"debug": "^4.3.1",
22+
"@types/redux-first-router": "^2.1.7",
23+
"@types/uuid": "^8.3.1",
24+
"debug": "^4.3.2",
2525
"husky": "^4.3.8",
2626
"lint-staged": "^10.5.4",
2727
"lodash.orderby": "^4.6.0",
2828
"lodash.throttle": "^4.1.1",
29-
"pouchdb": "^7.2.2",
3029
"pouchdb-adapter-memory": "^7.2.2",
31-
"prettier": "^2.2.1",
30+
"pouchdb-browser": "^7.2.2",
31+
"prettier": "^2.4.1",
3232
"react": "^17.0.2",
3333
"react-dom": "^17.0.2",
34-
"react-redux": "^7.2.3",
34+
"react-redux": "^7.2.6",
3535
"react-scripts": "4.0.3",
3636
"react-test-renderer": "^17.0.2",
37-
"redux": "^4.0.5",
37+
"redux": "^4.1.2",
3838
"redux-first-router": "^2.1.5",
39-
"redux-thunk": "^2.3.0",
40-
"reselect": "^4.0.0",
39+
"redux-thunk": "^2.4.0",
40+
"reselect": "^4.1.2",
4141
"smooth-scroll": "^16.1.3",
42-
"typescript": "^4.2.3",
42+
"typescript": "^4.4.4",
4343
"uuid": "^8.3.2",
4444
"workbox-background-sync": "^5.1.4",
4545
"workbox-broadcast-update": "^5.1.4",

public/index.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44
<meta charset="utf-8">
55
<link rel="icon" href="%PUBLIC_URL%/favicon.ico">
66
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no">
7-
<meta name="theme-color" content="#131313">
7+
<meta name="theme-color" content="#f5f5f5" media="(prefers-color-scheme: light)">
8+
<meta name="theme-color" content="#131313" media="(prefers-color-scheme: dark)">
89
<meta name="apple-mobile-web-app-capable" content="yes">
10+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
911
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
1012
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
1113
<title>Grouptabs</title>

public/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
],
2121
"start_url": ".",
2222
"display": "standalone",
23-
"theme_color": "#131313",
23+
"theme_color": "#f5f5f5",
2424
"background_color": "#f5f5f5"
2525
}

release-notes.yml

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ description: >
33
Track expenses in a group of people!
44
55
releases:
6+
- version: 1.5.1
7+
date: 2022-04-04
8+
description: Small improvements and updates
9+
improved:
10+
- Optimize display of status bar on mobile devices (color fits app background)
11+
changed:
12+
- Switch from npm to yarn for better developer experience
13+
- Use specific browser distribution of PouchDB for faster developer dependencies installation
614
- version: 1.5.0
715
date: 2021-04-07
816
description: Animated screen transitions and smaller bugfixes and improvements

src/components/__snapshots__/main.test.tsx.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ exports[`renders summary and transaction list 1`] = `
232232
9/20/2020
233233
</div>
234234
<div
235-
className="transaction"
235+
className="transaction list-item-with-arrow"
236236
onClick={[Function]}
237237
>
238238
<table>

src/components/__snapshots__/tabs.test.tsx.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ exports[`renders tab view 1`] = `
103103
className="row tabs"
104104
>
105105
<button
106-
className="full-width"
106+
className="full-width list-item-with-arrow"
107107
onClick={[Function]}
108108
>
109109
TAB NAME

src/components/main.tsx

+6-9
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ const useTransactionHeadingScroller = (
6262
newTransactionsHeadingIsOutOfViewport !==
6363
transactionsHeadingIsOutOfViewportRef.current
6464
) {
65-
transactionsHeadingIsOutOfViewportRef.current = newTransactionsHeadingIsOutOfViewport;
65+
transactionsHeadingIsOutOfViewportRef.current =
66+
newTransactionsHeadingIsOutOfViewport;
6667
setTransactionsHeadingIsOutOfViewport(
6768
newTransactionsHeadingIsOutOfViewport
6869
);
@@ -102,14 +103,10 @@ const Main: FunctionComponent<Props> = (props) => {
102103

103104
const [isScrolled, scrollContainerRef] = useScrollIndicator();
104105

105-
const {
106-
transactionsHeadingIsOutOfViewport,
107-
scrollToTransactionHeading,
108-
} = useTransactionHeadingScroller(
109-
contentContainerRef,
110-
transactionsHeadingRef,
111-
[props.accounts]
112-
);
106+
const { transactionsHeadingIsOutOfViewport, scrollToTransactionHeading } =
107+
useTransactionHeadingScroller(contentContainerRef, transactionsHeadingRef, [
108+
props.accounts,
109+
]);
113110

114111
const handleNewEntryClick = () => {
115112
if (!props.tabId) {

src/components/tablistbutton.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ interface Props {
88

99
const TabListButton: FunctionComponent<Props> = ({ data, onClick }) => {
1010
return (
11-
<button className="full-width" onClick={() => onClick(data.id)}>
11+
<button className="full-width list-item-with-arrow" onClick={() => onClick(data.id)}>
1212
{data.info?.name}
1313
</button>
1414
);

src/components/transactionlist.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ interface DateGroup {
1515

1616
const groupTransactions = (transactions: Transaction[]): DateGroup[] => {
1717
if (!transactions.length) {
18-
return (transactions as unknown) as DateGroup[];
18+
return transactions as unknown as DateGroup[];
1919
}
2020
// XXX Refactor structuring of date groups with a proper loop
2121
let date = formatHumanDate(transactions[0].date);

src/components/transactionlistitem.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const TransactionListItem: FunctionComponent<Props> = ({
8585

8686
return (
8787
<div
88-
className="transaction"
88+
className="transaction list-item-with-arrow"
8989
onClick={() => onDetailsClick(transaction.tabId, transaction.id)}
9090
>
9191
<table>

src/db/manager.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import PouchDB from "pouchdb";
1+
import PouchDB from "pouchdb-browser";
22
import Tab, { Document } from "./tab";
33
import config from "../config";
44
import { Info, Entity, ActionMap } from "../types";
@@ -29,7 +29,7 @@ export default class DbManager {
2929
const db = new PouchDB("test");
3030
this.isIndexedDbAvailable = true;
3131
await db.destroy();
32-
} catch (error) {
32+
} catch (error: any) {
3333
if (error.name === "indexed_db_went_bad") {
3434
this.isIndexedDbAvailable = false;
3535
console.info("Accessing IndexedDB failed. Falling back to in-memory.");

src/db/tab.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import PouchDB from "pouchdb";
1+
import PouchDB from "pouchdb-browser";
22
import debug, { Debugger } from "debug";
33

44
const log = debug("db:tab");

src/index.css

+16-14
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,22 @@ input[type="number"] {
320320
color: var(--subtle-text-color);
321321
}
322322

323+
.list-item-with-arrow {
324+
position: relative;
325+
}
326+
.list-item-with-arrow::after {
327+
content: "";
328+
width: 9px;
329+
height: 100%;
330+
position: absolute;
331+
top: 0;
332+
right: 10px;
333+
background: var(--subtle-text-color);
334+
mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg opacity='.5' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23' xmlns='http://www.w3.org/2000/svg' height='15' width='9' version='1.1' xmlns:cc='http://creativecommons.org/ns%23' xmlns:dc='http://purl.org/dc/elements/1.1/'%3E%3Cpath d='m1.5 0-1 1 6.5 6.5-6.5 6.5 1 1 7.5-7.5z'/%3E%3C/svg%3E");
335+
mask-repeat: no-repeat;
336+
mask-position: center;
337+
}
338+
323339
.empty-info,
324340
.share-info {
325341
padding: 10px;
@@ -515,18 +531,6 @@ input[type="number"] {
515531
background: transparent;
516532
text-align: left;
517533
}
518-
.tabs button::after {
519-
content: "";
520-
width: 9px;
521-
height: 100%;
522-
position: absolute;
523-
top: 0;
524-
right: 10px;
525-
background: var(--subtle-text-color);
526-
mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg opacity='.5' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23' xmlns='http://www.w3.org/2000/svg' height='15' width='9' version='1.1' xmlns:cc='http://creativecommons.org/ns%23' xmlns:dc='http://purl.org/dc/elements/1.1/'%3E%3Cpath d='m1.5 0-1 1 6.5 6.5-6.5 6.5 1 1 7.5-7.5z'/%3E%3C/svg%3E");
527-
mask-repeat: no-repeat;
528-
mask-position: center;
529-
}
530534
.tabs button:last-child {
531535
border-bottom: 1px solid var(--list-item-divider-color);
532536
}
@@ -580,8 +584,6 @@ input[type="number"] {
580584
border-top: 1px solid var(--list-item-divider-color);
581585
min-height: 44px;
582586
cursor: pointer;
583-
background: right 10px center no-repeat;
584-
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg opacity='.5' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23' xmlns='http://www.w3.org/2000/svg' height='15' width='9' version='1.1' xmlns:cc='http://creativecommons.org/ns%23' xmlns:dc='http://purl.org/dc/elements/1.1/'%3E%3Cpath d='m1.5 0-1 1 6.5 6.5-6.5 6.5 1 1 7.5-7.5z'/%3E%3C/svg%3E");
585587
}
586588
#transactions .transaction:first-child {
587589
border-top: none;

0 commit comments

Comments
 (0)