This Web app allows users to easily execute queries over multiple data sources (including Solid pods) and inspect the corresponding results.
Table of contents:
- Getting Started
- Static build
- Logging in
- Configuration file
- Representation Mapper
- Using the local pods
- Testing
To install the application:
npm installTo run the Web application in development mode:
npm run devNow you can browse the displayed URL.
To see the queries provided in the example configuration src/config.json at work,
you also need to activate the supporting resources:
-
In a new terminal window, prepare and start the local pods:
npm run prepare:pods && npm run start:pods -
In a new terminal window, start the http proxy:
npm run start:proxy
-
In a new terminal window, start a server which denies all CORS headers:
npm run start:badCors
Some queries require a log in.
Log in with the IDP http://localhost:8080 and the credentials for the user owning the pod named example in the file seeded-pod-config.json.
To make a standalone version of the result of this project, you can make a static build and serve it using any webserver. Execute:
npm run buildThe static build appears in the dist folder.
Some queries access data sources that are only readable by authenticated users. This requires you to log in. To log in, you need to provide an Identity Provider or a WebID. The application will detect which one you use and redirect you to the login page of your Identity Provider. If you use your WebID, the first OIDC issuer on your WebID is used when there are multiple.
The configuration file follows a simple structure.
{
"title": "Title shown at the top of the app.",
"logoLocation": "Image location of the logo shown at the top of the app (relative to public folder.).",
"logoRedirectURL": "The URL the Web application redirects to when a user clicks on the logo.",
"mainAppColor": "The main colors used in the app, can be any CSS color.",
"backgroundColor": "Background color of the app, can be any CSS color.",
"titleColor": "The color of the title, can be any CSS color",
"textColor": "The color of all the text in teh app body, this means all text except header and footer.",
"footer": "HTML components or text that will function as the footer (will be placed in the footer div.)",
"defaultIDP": "The default value used for IDP when logging in, this IDP can be manually changed in the Web app as well. ",
"queryFolder": "The base location of the queries, all query locations will start from this folder (relative to public folder.)",
"httpProxy": "The http proxy through which the requests will be rerouted. When left empty, the Comunica query engine will handle it. This is useful when CORS headers are not set (correctly) on the queried source.",
"introductionText": "The text that the app shows on the dashboard, which the app also shows when you first open it.",
"queries": [
{
"queryLocation": "path to the query location, relative to 'queryFolder'",
"name": "A name for the query",
"description": "Description of the query",
"id": "A unique ID for the query",
"icon": "The key to the icon for the query . This is optional and a default menu icon will be used when left empty.",
"comunicaContext": {
"sources": "Sources over which the query should be executed",
"useProxy": "True or false, whether the query should be executed through the proxy or not. This field is optional and defaults to false.",
... any other field that can be used in the Comunica query engine https://comunica.dev/docs/query/advanced/context/
},
"variables": {
"variableExampleString": ["\"String1\"", "\"String2\""],
"variableExampleUri": ["<https://example.com/uri1>", "<https://example.com/uri2>"]
},
"askQuery": {
"trueText": "The text that is to be shown when the query result is true (in ASK queries).",
"falseText": "The text that is to be shown when the query result is false (in ASK queries)."
}
},
... etc
]
}When executing a query, it gives us either a URL, a literal value or a blank node. These URLs could reference to anything e.g. a picture, spreadsheet, resume, and so on. Also literals can be lots of things e.g. a float, integer, string, birthdate, price, and so on. By clarifying what the expected type is of the query result corresponding to a given variable we can fully interpret how we can display and represent the result.
You can specify the type of a variable by extending its name with the type in the query as such: variableName_variableType.
The underscore _ here is crucial to make a clear distinction between name and type.
This application supports queries whose contents are not completely fixed upfront: they contain variables whose value can be set interactively.
To change a query into a templated query:
- replace the fixed portion(s) of the query with (a) variable(s); a variable is an identifier preceded by a
$sign, e.g.$genre - add a
variablesobject in the query's entry in the configuration file - in the
variablesobject, for each variable, add a property with name equal to the variable's identifier - set each such property's value to an array of possible values for the corresponding variable
Note that variables' values are not restricted to strings: URIs for example are alo possible.
As a consequence, for strings the surround double quotes " must be added to the values in the list.
This is shown in the configuration structure above.
In the selection menu the name of the query is proceeded by an icon.
You configure this icon per query in the configuration file.
For this to work you need to add the icon to the exports in IconProvider.js.
We advise to use the Material UI icons as this is what's used internally in react-admin and it is also included in the dependencies.
Nevertheless, you can use any React component you want, just make sure it's a functional component.
If you want to add your own type representations you can do this by adding your representation to the representationProvider.js file. This can be useful for example when querying images. The result of the query is a reference to the image. By mapping a representation we can show the actual image instead of the reference.
The mapper follows a structure:
{
"typeName": mapperComponent,
...
}With typeName being the name of the variable as defined in the query
which is defined in the configuration file.
The function mapperComponent takes the query result for the corresponding variable and
returns either a React component (see below).
Examples of how you can do this can already be found in the representationProvider components folder.
The components get the following props:
record(the query result), an object ofRDF/JSobjects.variablethe variable name and key ofrecord, a string.
Hint use the Field components
from react-admin to display the result.
They've already got styling matching that of react-admin and are easy to use.
Warning if you change the record object, the changed will still be present in the next render.
To support the provided example configuration src/config.json and the tests, this repo integrates some local pods.
You can make use of these for your own tests. Follow these steps:
- Add your data and
.aclfiles in theinitial-pod-datafolder. These files will be available in the pod relative tohttp://localhost:8080/example/. - Prepare the pods by executing
npm run prepare:pods.
For testing we use Cypress. To test, follow the next steps:
-
Prepare and start the local pods:
npm run prepare:pods && npm run start:pods -
In a new terminal window, start the Web application:
npm run dev
-
In a new terminal window, start the http proxy:
npm run start:proxy
-
In a new terminal window, start a server which denies all CORS headers:
npm run start:badCors
-
Finally, in a new terminal window, you can execute the tests by running:
npm run test