eSQLate is an attempt to give small teams a quick and easy form of administration panel which is significantly more powerful than CRUD based systems but also as easy to set up.
A lot of my work history has been based at small companies with small teams where there is enough resource to build a impressive product using great code, but it is sometimes difficult to justify investing as much time into creating administration panels which nobody other than internal employees will ever see.
There are many times I have had to delve into the database because the narrow range of operations which are available on the administration panels does not cover what I, at that moment, need to do. I don’t think this is always a problem, particularly when the project is at a very early stage but as a project grows having developers or systems administrators log into the database and change settings has some real downsides:
-
You’re taking time away from developers / systems administrators to do things which could, sometimes, be done by less technical employees.
-
Executing database operations is nearly always a bespoke operation on live data, meaning we have to be really, really careful and think things through in great detail.
-
Eventually, everyone will make a mistake, while logged into a live database the unintended effects could be disastrous.
eSQLate interprets a simple JSON (or JSON5) file like this:
{
"name": "product_search",
"title": "Product Search",
"description": "List products that include a substring",
"parameters": [
{
"name": "product_name",
"type": "string"
}
],
"statement": "\
SELECT\n\
product_id,\n\
product_name,\n\
suppliers.company_name as supplier_name,\n\
unit_price\n\
FROM products\n\
LEFT JOIN suppliers on suppliers.supplier_id = products.supplier_id\n\
WHERE LOWER(product_name) LIKE CONCAT('%', LOWER($product_name), '%')"
}
Using the above it will produce a fairly usable and reasonable web interface like what is shown below:
If users are of a nervous disposition and scared off by seeing things they don’t understand (like SQL) they can flip the toggle to convert the query based interface into a simple form.
We can specify parameters as strings, dates, datetimes, integers, selects, decimals and even use a popup to allow rich selection of a specific parameter:
Another powerful feature is to provide the user the ability to link these simple JSON documents together. Doing this gives many possible user journeys allowing basic, but meaningful, self-service administration.
The result sets can also be downloaded as CSV files.
About the most simple thing we can do is create a simple select of a table. This can be achieved by writing some simple JSON5 into a file:
Taking the super simple example it is easy to make it marginally useful
{
"name": "employee_list",
"title": "Employee List",
"description": "List employee details which include a sub string",
"parameters": [
{
"name": "search_string",
"type": "string",
"highlight_fields": ["last_name", "first_name"]
}
],
"statement": "\
SELECT\n\
employees.employee_id,\n\
concat(employees.first_name, ' ', employees.last_name) as full_name,\n\
concat(reports_to.first_name, ' ', reports_to.last_name) as reports_to\n\
FROM employees\n\
LEFT JOIN employees reports_to ON\n\
reports_to.employee_id = employees.reports_to\n\
WHERE\n\
lower(employees.first_name) like CONCAT('%', lower($search_string) , '%') OR\n\
lower(employees.last_name) like CONCAT('%', lower(${search_string}) , '%')\
",
"statement_type": "SELECT"
}
This will find people who’s first_name
or last_name
includes $search_string
anywhere within.
We have:
-
Defined a parameter named
search_string
which could also be wrote as${search_string}
if you need to be unambiguous about where the string terminates -
Added a
statement_type
which really does nothing other than color the button below the query… but it goes a nice red when its aDELETE
.
How does it look?
Taking what we know from `The most simple example'' it is trivial to transform it into an `INSERT
statement, however I took the liberty of adding some comments due to the SQL separates column names from the VALUES
.
{
"name": "employee_add",
"title": "Add an Employee",
"description": "Add an employee",
"parameters": [
{ "name": "last_name", "type": "string" },
{ "name": "first_name", "type": "string" },
{ "name": "title", "type": "string" },
{ "name": "title_of_courtesy", "type": "string" },
{ "name": "birth_date", "type": "date" },
{ "name": "hire_date", "type": "date" },
{ "name": "address", "type": "string" },
{ "name": "city", "type": "string" },
{ "name": "region", "type": "string" },
{ "name": "postal_code", "type": "string" },
{ "name": "country", "type": "string" },
{ "name": "home_phone", "type": "string" },
{ "name": "extension", "type": "string" },
{ "name": "notes", "type": "string" },
{ "name": "reports_to", "type": "integer" }
],
"statement": "\
INSERT INTO employees (\n\
last_name, first_name, title, title_of_courtesy,\n\
birth_date, hire_date, address, city,\n\
region, postal_code, country, home_phone,\n\
extension, notes, reports_to\n\
)\n\
VALUES (\n\
/* last_name = */ $last_name,\n\
/* first_name = */ $first_name,\n\
/* title = */ $title,\n\
/* title_of_courtesy = */ $title_of_courtesy,\n\
/* birth_date = */ $birth_date,\n\
/* hire_date = */ $hire_date,\n\
/* address = */ $address,\n\
/* city = */ $city,\n\
/* region = */ $region,\n\
/* postal_code = */ $postal_code,\n\
/* country = */ $country,\n\
/* home_phone = */ $home_phone,\n\
/* extension = */ $extension,\n\
/* notes = */ $notes,\n\
/* reports_to = */ $reports_to\n\
)",
"statement_type": "INSERT"
}
The end result looks like the below:
I dislike the way a user would have to take note of the user_id that the new employee would report to…
To fix it all we need to do is change { "name": "reports_to", "type": "integer" }
into { "display_field": "full_name", "definition": "employee_list", "value_field": "employee_id", "type": "popup", "name": "reports_to" }
. The final file is shown below:
Also converting the input of dates to dates is really easy (just change the "type"
).
{
"name": "employee_add",
"title": "Add an Employee",
"description": "Add an employee",
"parameters": [
{ "name": "last_name", "type": "string" },
{ "name": "first_name", "type": "string" },
{ "name": "title", "type": "string" },
{ "name": "title_of_courtesy", "type": "string" },
{ "name": "birth_date", "type": "date" }, /* Changed from "string" to "date" */
{ "name": "hire_date", "type": "date" }, /* Changed from "string" to "date" */
{ "name": "address", "type": "string" },
{ "name": "city", "type": "string" },
{ "name": "region", "type": "string" },
{ "name": "postal_code", "type": "string" },
{ "name": "country", "type": "string" },
{ "name": "home_phone", "type": "string" },
{ "name": "extension", "type": "string" },
{ "name": "notes", "type": "string" },
{
"display_field": "full_name", /* Changed from "string" to "popup" */
"definition": "employee_list",
"value_field": "employee_id",
"type": "popup",
"name": "reports_to"
}
],
"statement": "\
INSERT INTO employees (\n\
last_name, first_name, title, title_of_courtesy,\n\
birth_date, hire_date, address, city,\n\
region, postal_code, country, home_phone,\n\
extension, notes, reports_to\n\
)\n\
VALUES (\n\
/* last_name = */ $last_name,\n\
/* first_name = */ $first_name,\n\
/* title = */ $title,\n\
/* title_of_courtesy = */ $title_of_courtesy,\n\
/* birth_date = */ $birth_date,\n\
/* hire_date = */ $hire_date,\n\
/* address = */ $address,\n\
/* city = */ $city,\n\
/* region = */ $region,\n\
/* postal_code = */ $postal_code,\n\
/* country = */ $country,\n\
/* home_phone = */ $home_phone,\n\
/* extension = */ $extension,\n\
/* notes = */ $notes,\n\
/* reports_to = */ $reports_to\n\
)",
"statement_type": "INSERT"
}
The end result is that there will be a new control shown which when clicked will open a pop-up:
The definitions we’ve defined so far do not have to be completely independent. It is possible to define links both on each row of the result set and above/below of the definition / form itself.
Lets first add a link from the Employee List to Employee Add. We can do this in three ways to a definition:
Links are displayed between the definition and the results:
"links": [
{ "href": "#employee_add", "text": "Add an employee" }
]
2. We can add to "top_links"
, which are identical to "links"
except that they occur above the displayed definition
Links are displayed above the definition:
"top_links": [
{ "href": "#employee_add", "text": "Add an employee" }
]
This will add a row on every line of the results table. This is useful if the row denotes some information you want to use in the place which you are linking to. To do this add the following to the root of the definition:
"row_links": [
{ "href": "#employee_add?reports_to=${popup employee_id full_name}", "text": "Add Subordinate for ${full_name}" }
]
If you’re just trying eSQLate out the most simple way to test it out is to use Docker Compose. There is a docker-compose.yml file right in this directory so all you’ll have to do is:
-
Clone this repository with eSQLate with
git clone https://github.com/forbesmyester/esqlate.git
. -
Change into the directory you checked out the code into with
cd esqlate
-
Bring up the services using
docker-compose build && docker-compose up
. -
Open your web browser up to http://localhost:8800/
-
Customize the docker-compose.yml to meet your needs.
Installation is relatively simple. All you need to do is install:
-
PostgreSQL The most awesome SQL database.
-
eSQLate Server Which is provides the API functions and does the actual database queries.
-
eSQLate Front talks to eSQLate Server and provides a web based interface to the user.
If you have a PostgreSQL server and want to run it on your local laptop you may choose to use the desktop method.
This will has the nicety of automagically picking port numbers and opening the browser once everything has started up.
-
Set up a PostgreSQL server and get the hostname, port, username and password (You may want to use
docker-compose -f docker-compose-for-postgres-northwind.yml up
from this repository). -
Clone this repository with eSQLate with
git clone https://github.com/forbesmyester/esqlate.git
. -
Change into the directory you checked out the code into with
cd esqlate
-
Run
npm install
to install dependencies etc. -
Run
./esqlate postgresql
(If you used "docker-compose-for-postgres-northwind.yml" you could run./esqlate postgresql -h 127.0.0.1 -d postgres -U postgres -W postgres
).
Note
|
This can be run using ./esqlate mysql if you are using a MySQL server.
|
There are some basic integration tests that run using Cypress. To run them first bring up testing docker compose and then run the tests:
docker-compose -f ./docker-compose-integration.yml up
Thank you
-
@richrd - esqlate-front: Support for showing results in Extended Display mode
-
@richrd - esqlate-front: Support for displaying JSONB
Esqlate: Work on CI tests and launch script Front: Remove envsubst in esqlate-front build scripts
Esqlate: Improve CI tests Front: Use prePublishOnly to fix esqlate bug 6 Server Use prePublishOnly
Server: Support multiple databases (MySQL and PostgreSQL currently supported) Front: Support for showing JSONB fields - Thanks @richrd