Questions tagged [ui]
User Interface _ the application interface designated for the end users
133 questions
-1
votes
2
answers
149
views
Is there a model or some implementation logic for web layouts?
I am making an application in which the user types BDD scenarios of using a webpage. From this retrieve the widgets and their functionalities and make a "webpage prototype" in Figma. I am ...
1
vote
1
answer
97
views
Singe Page Application for the Web with (dynamic) tabbed interface - is there need for the navigation and url update for ERP application?
I am developing React SPA ERP application (so - no SEO requirement) with dynamic tabbed interface - where each form (e.g. invoice id=1, invoice id=2, invoice new, list of invoices, accounting report) ...
1
vote
3
answers
873
views
Architecture to avoid circular imports in Python, specifically a flask server
I have a flask server which uses a controller-service-resource model.
For simplification it is like this:
Controller(parses requests, dispatches to A or B):
ServiceA
ServiceB
However there are ...
1
vote
2
answers
145
views
CQRS how to display failed commands in the GUI
I am trying to use CQRS in my project and I was thinking how the GUI gets notified about failures in the GUI, when commands are fire and forget. My commandhandlers are not returning anything, but ...
1
vote
3
answers
386
views
How to avoid duplicating Create and Update UIs in CRUD apps
For most apps I've built which deal with CRUD operations, I end up two very similar UI pages: one for the creation of the object, one for updating it.
An example would be StackExchange's UI for ...
0
votes
2
answers
200
views
Who should own observable data in a hierarchical architecture?
I mostly write mobile apps so this is definitely coming from that perspective, but I think it applies for most UI development.
Suppose I have a UI with the following pattern:
I want to have some user ...
1
vote
1
answer
166
views
Silently re-using data vs requiring the user to pass a "re-use" argument?
Context
After creating a (bash) CLI interface that creates self-signed SSL certificates (for onion domains), the user can choose to re-use some of the data that is created in past runs. For example, a ...
0
votes
1
answer
92
views
Handling IO operations through a server and building the UI using a separate framework/application
I am trying to build a file editor, and I wanted to build the UI using Flutter. However I wanted to implement IO operations (reading a file, applying changes, etc) in Rust.
The reason I would like to ...
0
votes
0
answers
690
views
What approach for this kind of drawing application in C#/WPF
I've got experience with WPF, but I have always been creating standard UI's. I want to build a drawing application for electrical wiring diagrams (single-wire diagrams).
Example of the kind of ...
0
votes
2
answers
109
views
How to make a mobile (flutter) app that also works in VR (unity)
I'm interested to build a VR app which will allow the user to interact with some 2d screens in a 3d world.
I would like these same 2d screens to be available on a mobile app, so that the user could ...
0
votes
3
answers
517
views
UI/UX design feels like waterfall, What do you think should be the proper process?
I'm currently working as Fullstack developer, our frontend is being built in React.
Our current process involves:
The client / product owner describes a feature to the UI / UX designer.
The designer ...
2
votes
1
answer
1k
views
What is a Reactive User Interface? Where did the term come from?
I heard about Reactive User Interfaces in a React course. I would like to understand the concept, but was unable to find reliable sources. Best I could find is that they are some sort of declarative ...
1
vote
2
answers
154
views
How to maintain cohesion, loose coupling, and SRP when building a reporting tool?
I'm building a reporting tool with three core layers:
Extract data from a database
Transform this data to compute business metrics
Display these metrics in a report (a heavily formatted Excel export ...
2
votes
3
answers
1k
views
How do you achieve encapsulation while "separating view and business logic"?
I've been trying to get a better understanding of OOP (I'm not the biggest fan of it, but I still want to understand it).
One of the core principles of OOP is encapsulation - you're supposed to ...
0
votes
1
answer
299
views
Wrapping the UI framework
I want to write an application where I would delegate certain functionalities to 3rd party libraries. To make sure the code remains modular, I want to put these libraries behind an interface so I can ...