SaldoPlanerWeb is a modern React-based web application designed for personal budget management.
It provides an interactive dashboard that allows users to track expenses, plan budgets,
visualize financial data and manage financial events in a clear and user-friendly way.
The application is part of the XSWare ecosystem and communicates with XSWareAPI, which handles authentication and business logic.
- Personal budget and expense management
- Interactive financial dashboards
- Data visualization with charts and counters
- Calendar-based planning
- Kanban-style task and workflow management
- Rich text editing
- Map and geolocation features
- Fully responsive UI
- Built entirely on top of open-source libraries
- React
- JavaScript / TypeScript
- HTML5 / CSS3
- Material UI
- MUI (Material UI) – React UI library for faster and easier web development
- React Table – Lightweight and extensible data tables
- React Select – Advanced select inputs (multiselect, async, creatable)
- React Flatpickr – Date picker component
- React Tag Input – Tag creation and management
- React Circular Slider – Circular slider component
- React Tilt – Parallax hover tilt effects
- React Images Viewer – Responsive image viewer
- React Quill – WYSIWYG rich text editor
- SweetAlert2 – Customizable alert and popup dialogs
- React ChartJS 2 – Charts and financial data visualization
- React CountUp – Animated numerical counters
- ChromaJS – Color manipulation and scales
- FullCalendar – Drag & drop event calendar
- React Kanban – Kanban / Trello-style board
- Dropzone – Drag & drop file uploads with previews
- Formik – Form handling and validation
- UUID – Unique ID generation
- React HTML Parser – Convert HTML strings to React components
The application is configured using environment variables.
Example .env file:
REACT_APP_API_BASE_URL=https://api.xsware.local
### Spring Profiles
- `dev` – development environment
- `production` – production environmentInstall dependencies
npm installor
yarn installRun in development mode
npm startor
yarn startBuild for production
npm run buildor
yarn build- Authentication handled via JWT
- Tokens are issued by XSWareAPI
- Secured API communication over HTTPS
- Frontend stores authentication tokens according to best practices
src/
├── assets
├── components
├── layouts
├── pages
├── routes
├── services
├── types
└── utils
- User interacts with SaldoPlanerWeb
- Application sends requests to XSWareAPI
- API validates authentication and business logic
- Data is fetched from XSWareDBService
- Processed data is returned and visualized in the UI
Testing strategy depends on the selected setup (e.g. Jest / React Testing Library).
Example:
npm test- XSWareAPI – Backend API (Spring Boot, Java)
- XSWareDBService – Database service (Kotlin, Spring Boot)
