├── .all-contributorsrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .prettierrc.json ├── README.md ├── craco.config.js ├── package.json ├── public ├── electron.js ├── favicon.png ├── icon.png ├── index.html ├── invoicify.ttf ├── logo.png ├── manifest.json ├── pdf.worker.js ├── printPdf.js └── robots.txt └── src ├── assets └── no-net.mp4 ├── components ├── Alert │ └── index.js ├── CustomizationComponents │ ├── LeftPanel │ │ ├── index.js │ │ └── index.scss │ ├── MiddleSection │ │ ├── index.js │ │ └── index.scss │ ├── RightPanel │ │ ├── index.js │ │ └── index.scss │ └── index.js ├── Header │ ├── HeaderRightSection │ │ └── index.js │ ├── index.js │ └── index.scss ├── HoverTotal │ ├── index.js │ └── index.scss ├── ImportProducts │ ├── index.js │ └── index.scss ├── Invoice │ ├── index.js │ └── index.scss ├── InvoiceItems │ ├── index.js │ └── index.scss ├── InvoiceItemsTable │ ├── index.js │ └── index.scss ├── InvoicePageFooter │ ├── index.js │ └── index.scss ├── ListEmpty │ └── index.js ├── LockScreen │ ├── index.js │ └── index.scss ├── ProductForm │ ├── index.js │ └── index.scss ├── ProductsPage │ ├── index.js │ └── index.scss ├── SetPasswordModal │ ├── index.js │ └── index.scss ├── Settings │ ├── index.js │ └── index.scss ├── UpdatePanel │ ├── DownloadSection │ │ └── index.js │ ├── ReleaseNotes │ │ └── index.js │ ├── index.js │ └── index.scss └── index.js ├── contexts ├── AuthContext │ └── index.js ├── InvoiceContext │ └── index.js └── index.js ├── index.js ├── index.scss ├── logo.svg ├── pages ├── CustomizationPage │ ├── index.js │ └── index.scss ├── HomePage │ ├── index.js │ └── index.scss ├── InvoiceSettings │ ├── index.js │ └── index.scss └── index.js ├── services ├── apiService.js ├── dbService.js ├── nodeService.js ├── pdfService.js └── settingsService.js └── utils ├── constants.js └── utils.js /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | public/pdf.worker.js 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/README.md -------------------------------------------------------------------------------- /craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/craco.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/package.json -------------------------------------------------------------------------------- /public/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/public/electron.js -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/invoicify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/public/invoicify.ttf -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/pdf.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/public/pdf.worker.js -------------------------------------------------------------------------------- /public/printPdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/public/printPdf.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/assets/no-net.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/assets/no-net.mp4 -------------------------------------------------------------------------------- /src/components/Alert/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/Alert/index.js -------------------------------------------------------------------------------- /src/components/CustomizationComponents/LeftPanel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/CustomizationComponents/LeftPanel/index.js -------------------------------------------------------------------------------- /src/components/CustomizationComponents/LeftPanel/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/CustomizationComponents/LeftPanel/index.scss -------------------------------------------------------------------------------- /src/components/CustomizationComponents/MiddleSection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/CustomizationComponents/MiddleSection/index.js -------------------------------------------------------------------------------- /src/components/CustomizationComponents/MiddleSection/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/CustomizationComponents/MiddleSection/index.scss -------------------------------------------------------------------------------- /src/components/CustomizationComponents/RightPanel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/CustomizationComponents/RightPanel/index.js -------------------------------------------------------------------------------- /src/components/CustomizationComponents/RightPanel/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/CustomizationComponents/RightPanel/index.scss -------------------------------------------------------------------------------- /src/components/CustomizationComponents/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/CustomizationComponents/index.js -------------------------------------------------------------------------------- /src/components/Header/HeaderRightSection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/Header/HeaderRightSection/index.js -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/Header/index.js -------------------------------------------------------------------------------- /src/components/Header/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/Header/index.scss -------------------------------------------------------------------------------- /src/components/HoverTotal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/HoverTotal/index.js -------------------------------------------------------------------------------- /src/components/HoverTotal/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/HoverTotal/index.scss -------------------------------------------------------------------------------- /src/components/ImportProducts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/ImportProducts/index.js -------------------------------------------------------------------------------- /src/components/ImportProducts/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/ImportProducts/index.scss -------------------------------------------------------------------------------- /src/components/Invoice/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/Invoice/index.js -------------------------------------------------------------------------------- /src/components/Invoice/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/Invoice/index.scss -------------------------------------------------------------------------------- /src/components/InvoiceItems/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/InvoiceItems/index.js -------------------------------------------------------------------------------- /src/components/InvoiceItems/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/InvoiceItems/index.scss -------------------------------------------------------------------------------- /src/components/InvoiceItemsTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/InvoiceItemsTable/index.js -------------------------------------------------------------------------------- /src/components/InvoiceItemsTable/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/InvoiceItemsTable/index.scss -------------------------------------------------------------------------------- /src/components/InvoicePageFooter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/InvoicePageFooter/index.js -------------------------------------------------------------------------------- /src/components/InvoicePageFooter/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/InvoicePageFooter/index.scss -------------------------------------------------------------------------------- /src/components/ListEmpty/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/ListEmpty/index.js -------------------------------------------------------------------------------- /src/components/LockScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/LockScreen/index.js -------------------------------------------------------------------------------- /src/components/LockScreen/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/LockScreen/index.scss -------------------------------------------------------------------------------- /src/components/ProductForm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/ProductForm/index.js -------------------------------------------------------------------------------- /src/components/ProductForm/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/ProductForm/index.scss -------------------------------------------------------------------------------- /src/components/ProductsPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/ProductsPage/index.js -------------------------------------------------------------------------------- /src/components/ProductsPage/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/ProductsPage/index.scss -------------------------------------------------------------------------------- /src/components/SetPasswordModal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/SetPasswordModal/index.js -------------------------------------------------------------------------------- /src/components/SetPasswordModal/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/SetPasswordModal/index.scss -------------------------------------------------------------------------------- /src/components/Settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/Settings/index.js -------------------------------------------------------------------------------- /src/components/Settings/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/Settings/index.scss -------------------------------------------------------------------------------- /src/components/UpdatePanel/DownloadSection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/UpdatePanel/DownloadSection/index.js -------------------------------------------------------------------------------- /src/components/UpdatePanel/ReleaseNotes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/UpdatePanel/ReleaseNotes/index.js -------------------------------------------------------------------------------- /src/components/UpdatePanel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/UpdatePanel/index.js -------------------------------------------------------------------------------- /src/components/UpdatePanel/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/UpdatePanel/index.scss -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/contexts/AuthContext/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/contexts/AuthContext/index.js -------------------------------------------------------------------------------- /src/contexts/InvoiceContext/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/contexts/InvoiceContext/index.js -------------------------------------------------------------------------------- /src/contexts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/contexts/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/CustomizationPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/pages/CustomizationPage/index.js -------------------------------------------------------------------------------- /src/pages/CustomizationPage/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/pages/CustomizationPage/index.scss -------------------------------------------------------------------------------- /src/pages/HomePage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/pages/HomePage/index.js -------------------------------------------------------------------------------- /src/pages/HomePage/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/pages/HomePage/index.scss -------------------------------------------------------------------------------- /src/pages/InvoiceSettings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/pages/InvoiceSettings/index.js -------------------------------------------------------------------------------- /src/pages/InvoiceSettings/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/pages/InvoiceSettings/index.scss -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/services/apiService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/services/apiService.js -------------------------------------------------------------------------------- /src/services/dbService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/services/dbService.js -------------------------------------------------------------------------------- /src/services/nodeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/services/nodeService.js -------------------------------------------------------------------------------- /src/services/pdfService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/services/pdfService.js -------------------------------------------------------------------------------- /src/services/settingsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/services/settingsService.js -------------------------------------------------------------------------------- /src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/utils/constants.js -------------------------------------------------------------------------------- /src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/invoicify-app/HEAD/src/utils/utils.js --------------------------------------------------------------------------------