summaryrefslogtreecommitdiff
path: root/view
AgeCommit message (Collapse)Author
2024-11-03view: Implement favorite recipesxengineering
This marks favorite recipes with a `⭐` emoticon. The favorite flag value can be set on the recipe edit page. Favorite recipes are listed first on the recipe list view. Furthermore as a second priority the created time stamp is used in the recipe list so that more recent recipes are listed first.
2024-10-24view: Display URL content on recipe pagexengineering
This makes the recipe page less pretty. Nevertheless the URL is more visible to the user which makes it more likely that errors in the URL are detected. This change is based on user feedback. Invalid URLs were added which led effectively to data loss.
2024-10-24view: Order ingredient summary by ingredient namexengineering
This makes it easier to write a shopping list for the required ingredients.
2024-10-23Switch to http.Handlerxengineering
The used `func(http.ResponseWriter, *http.Request)` return values made the HTTP handler factory functions quite unreadable. Thus it is switched to the http.Handler type.
2024-10-22Remove github.com/gorilla/mux dependencyxengineering
The reason for the introduction of this dependency was that it was easy to setup routes with HTTP method restrictions. Since Go 1.22 this feature is part of the standard library. Method restrictions are part of the patterns used to register routes [1]. [1]: https://pkg.go.dev/net/http#hdr-Patterns-ServeMux
2024-10-13model: Replace global db variable by custom typexengineering
Reducing global variables makes it easier to understand functions independently of the rest of the code. Adding the new model.DB type as a custom variant of the sql.DB type makes it possible to write methods for the database which makes the code way more readable.
2024-10-12model: Fix direct access to databasexengineering
Instead a database transaction has to be used. Each database interaction should be wrapped into a transaction to make sure any possible change (even side-effects) can be rolled back in case of errors.
2024-09-11Apply go fmt to all source filesxengineering
This applies default Go code style recommendations.
2024-05-17view: Fix time stamp bugxengineering
The recipe edit page HTML template did not contain the two time stamps "Created" and "LastChanged" as hidden form values. Thus the information was not passed from the backend to the frontend. On a save the recipe without time stamp information was injected into the backend. This effectively deleted any time stamp information. This commit fixes that bug by including all fields of the model.Recipe struct inside the form of the recipe-edit.html template.
2024-05-17view: Use number input for ingredient amountxengineering
This accepts only real numbers with a minimum step of 0.001 as input for the amount field of a recipe ingredient. The browser has the chance to give the user direct feedback that a non-numeric string will not work.
2024-05-15view: Remove empty ingredient summariesxengineering
If the recipe has no ingredients at all the "Ingredient summary:" text used to be displayed. This is not useful and confusing. It is removed with this commit.
2024-05-15view: Require text for stepsxengineering
It does not make sense to add empty steps.
2024-05-15view: Require ingredient typexengineering
It does make sense to add an ingredient only with a type and no amount or unit like 'salt'. But it does not make sense to add an ingredient without a type like '5' or '2 l'.
2024-05-15view: Update to simple.css v2.3.0xengineering
This is the latest available release. Updated to keep up to date and adopt fixes.
2024-05-15view: Rename to 'Ingredient summary:'xengineering
This used to be named 'Ingredients: which might be confusing since ingredients are defined per step and the list at the top of the recipe is just a summary.
2024-05-15When adding a recipe step or an ingredient the browser should focus onxengineering
the first text input of that new element. This supports using Ceres without a mouse and only with tab-based navigation with a keyboard.
2024-05-14view: Complete ingredient editingxengineering
2024-05-13view: Add HTML for editing recipe ingredientsxengineering
2024-05-12view: Add ingredient overview to recipe read pagexengineering
2024-05-12view: Show ingredients on read pagexengineering
2024-05-12view: Use HTML template to add recipe stepsxengineering
This makes the JS function way simpler and removes a duplication of the step HTML code.
2024-05-12view: Create new html/recipe-step.htmlxengineering
This allows to use it in two places: - template for loop for backend-generated steps - a HTML template tag for frontend- / JS-generated steps
2024-05-12view: Move all JS code to static/ceres.jsxengineering
2024-05-12view: Remove global JS code in recipe-edit.htmlxengineering
This makes it impossible to move the whole JS functionality into the central ceres.js script. Moving that JS code there makes caching possible and bundles all JS-related code in one file. The overall goal is to get rid of as many JS code as possible.
2024-05-11view: Add unit test for index handlerxengineering
2024-05-09view: Fix cancel button on recipe createxengineering
2024-05-09view: Replace HTML form labels by placeholdersxengineering
This takes up way less space in the code and the actual user view.
2024-05-09Remove default recipe namexengineering
To avoid not clickable recipes on the /recipes page a default name used to be inserted on recipe creation. This was not a proper fix for the problem and also was annoying that the user first had to remove the default recipe name. This commit removes this default name.
2024-05-09view: Enforce recipe titlesxengineering
In addition to the enforcement of titles in the model package the HTML form field for the title is set to 'required' to give the user feedback via the browser that a title is required.
2024-05-08Introduce model.Transaction()xengineering
It is a very common pattern that some function needs to access the database and wants to wrap all the actions into one transaction. The advantage of a transaction is that it is ACID: - atomic - consistent - isolated - durable In Go it is required to request a new transaction, execute functionality on it and handle rollback or commit of this transaction based on the success of the operation. All this and the error handling can be written down in the model.Transaction() function exactly once. The full signature of it is: func Transaction(f func(*sql.Tx) error) error It requires a function or closure passed as argument which takes the transaction (*sql.Tx) and returns an error which might be nil. This is very generic. It is applied to: - injecting test data - database migrations - data read requests - data write requests
2024-05-07view: Use init() function to parse templatesxengineering
This makes it unnecessary to call this functionality from main().
2024-05-01view: Add /version endpointxengineering
This allows to get the server version via HTTP. The output of `git describe --dirty --always` and a line break is returned together with HTTP 200. If the server build contains no version information an error message and HTTP 404 is returned.
2024-04-07model: Add helper function for safe CRUDxengineering
This removes the redundant setup of a database/sql.Tx in each HTTP handler.
2024-04-06model: Always pass *sql.Tx to CRUD methodsxengineering
When nesting objects like steps into other objects like recipes it is required to pass a *sql.Tx value to the CRUD methods of the inner object to be able to roll back the whole transaction. The top level object used to be responsible for the creation of this *sql.Tx inside its CRUD methods. This is now moved to the caller of the CRUD methods (here the HTTP handler function). The advantage is that all CRUD methods now accept a *sql.Tx as only argument which makes those methods more consistent.
2024-04-04view: Add recipe step addingxengineering
2024-03-24view: Add step removalxengineering
2024-03-24view: Add editing of existing recipe stepsxengineering
2024-03-24view: Add steps to recipe pagexengineering
2024-03-24view: Fix position of header tagxengineering
It should be inside the body tag but used to be before it.
2024-03-23view: Do not change button colorxengineering
Design changes should be avoided for now since simple.css cares about the CSS part of Ceres.
2024-03-10view: Remove nested anchor and button elementsxengineering
There is the need to add buttons to the recipe server which act like a anchor tag (link). This can be achieved by nesting anchor and button tag. The problem is that if the user cycles through the elements of the page with the 'tab' key such a button is handled as two overlapping elements instead of one. This commit solves the issue by using buttons with the attribute `onclick="window.location.href='<url>';`.
2024-03-06view: Rework /recipe page layoutxengineering
2024-03-06view: Display multiline notes correctlyxengineering
2024-03-06view: Use textarea for recipe notesxengineering
They are intended to use multiple lines. This is easier to edit in a textarea element rather than in an input element.
2024-03-06view: Display message in case of no recipesxengineering
2024-03-06view: Make recipe portions, URL and notes optionalxengineering
An empty string for one of these attributes will lead to a recipe view page which does not render the paragraph for this item.
2024-03-03view: Move recipe adding to /recipesxengineering
In the long term the <nav> section at the top should reference the list views of all managed objects (recipes, users, products and so on). With this structure it makes more sense to have the button to add a recipe on the list view on recipes located at /recipes.
2024-03-03view: Add recipe createxengineering
2024-03-03view: Move all JavaScript code to ceres.jsxengineering
This allows to cache the involved JavaScript code.
2024-03-03view: Add template 'nav'xengineering
The <nav> section is the same on every page. This new template reduces code duplication.