This is an DIY practical.
You must to get your solution to your GitLab repository, and deploy it to webik, before 6.4.2025.
./practical-05/user-interface
webik.ms.mff.cuni.cz/~{your-user-name}/nswi153/practical-05/
Employ Vite and rendering library ( React, Vue, Angular, Svelte, ... ) of choice to implement functionality as described at following slides.
package.json must contain the build script for building the application into dist directory.
Create a simple application with pages: Home, Increase, Decrease, Dialog.
Each page must have a navigation bar with links to all pages in your application. The application must not reload upon navigation (single-page-application style). You may implement routing (navigating from page to page) yourself or utilize a library.
Use following URLs:
Content of your choice.
Pages 'Increase' and 'Decrease' should contain a button. The label of the button should be a value of a counter. The counter must be shared between pages. When a user clicks the first button ('Increase' page), with id = "increase-value", the counter will increase. When the user clicks the other button ('Decrease' page), with id = "decrease-value", the counter will decrease. Keep in mind that each button is located on a different page.
Your framework of choice may provide a state management library or technique (context) to help you with sharing the data.
Find and use any ui component library compatible with your selected framework. Add layout to the application, and make it look cool.
Below are libraries you may consider. Keep in mind that libraries are often framework specific.
The navigation bar must contain links to all pages. In the navigation bar each "a" element must contain property "data-target" with value according to following list:
Purpose of this page is to create a non-trivial dialog. The dialog should allow user create an association. The association can be placed inside a model, can be specialization of another association or can inherit values from other associations. We need to be able to edit following:
See next slide for more fields.
The dialog should allow user to inherit values from a selected profile. The idea is that the user can either provide value manually (manual-mode) or inherit the value (inherit-mode). The "inherit-mode" is active when Inherit label is checked an a profile is selected in Label inherit from.
If the "inherit-mode" is active and user removes the selected profile (Label inherit from) from profiles (Profiles). The Inherit label is set to unchecked. The value of Label is set to inherited value from the profile.
See next slide for more fields.
Similar to Label we define fields for description with equivalent functionality.
See next slide for more fields.
The dialog should load data from URL specified by "data-source" URL input query argument. There is JSON-schema as well as an example input document.
The dialog should contain "Create and clear" button. If the dialog state is valid and user clicks the button, the JSON file according to JSON-schema should be send by POST (JSON in body) to URL specified by "submit-url" URL input query argument.
If user try to click "Create and clear" the dialog should validate for the first time. Since that validation should happen as user change any of the input fields. The dialog is invalid if:
The validation message should be visible close to the validated input field. Text color should be red.