2020-05-08 05:40:14 +00:00
|
|
|
{
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
"datasourceEditorIcon": ".t--entity-name:contains('DataSources)",
|
2020-05-11 09:03:46 +00:00
|
|
|
"host": "input[name='datasourceConfiguration.endpoints[0].host']",
|
|
|
|
|
"port": "input[name='datasourceConfiguration.endpoints[0].port']",
|
|
|
|
|
"databaseName": "input[name='datasourceConfiguration.authentication.databaseName']",
|
|
|
|
|
"username": "input[name='datasourceConfiguration.authentication.username']",
|
|
|
|
|
"password": "input[name='datasourceConfiguration.authentication.password']",
|
|
|
|
|
"authenticationAuthtype": "[data-cy=datasourceConfiguration\\.authentication\\.authType]",
|
2020-06-12 05:09:49 +00:00
|
|
|
"url": "input[name='datasourceConfiguration.url']",
|
2020-06-17 10:47:01 +00:00
|
|
|
"MongoDB": ".t--plugin-name:contains('MongoDB')",
|
|
|
|
|
"RESTAPI": ".t--plugin-name:contains('REST API')",
|
|
|
|
|
"PostgreSQL": ".t--plugin-name:contains('PostgreSQL')",
|
2020-06-12 05:09:49 +00:00
|
|
|
"sectionAuthentication": "[data-cy=section-Authentication]",
|
2020-10-12 13:37:18 +00:00
|
|
|
"PostgresEntity": ".t--entity-name:contains(PostgreSQL)",
|
|
|
|
|
"createQuerty": ".t--create-query",
|
2021-01-13 16:04:23 +00:00
|
|
|
"editDatasource": ".t--edit-datasource",
|
|
|
|
|
"defaultDatabaseName": "input[name='datasourceConfiguration.connection.defaultDatabaseName']",
|
2021-04-06 13:29:27 +00:00
|
|
|
"selConnectionType": "[data-cy='datasourceConfiguration.connection.type']",
|
|
|
|
|
"Mysql": ".t--plugin-name:contains('Mysql')",
|
|
|
|
|
"ElasticSearch": ".t--plugin-name:contains('ElasticSearch')",
|
|
|
|
|
"DynamoDB": ".t--plugin-name:contains('DynamoDB')",
|
|
|
|
|
"Redis": ".t--plugin-name:contains('Redis')",
|
|
|
|
|
"MsSQL": ".t--plugin-name:contains('MsSQL')",
|
|
|
|
|
"Firestore": ".t--plugin-name:contains('Firestore')",
|
|
|
|
|
"Redshift": ".t--plugin-name:contains('Redshift')",
|
|
|
|
|
"AmazonS3": ".t--plugin-name:contains('Amazon S3')",
|
|
|
|
|
"authType": "[data-cy=authType]",
|
|
|
|
|
"OAuth2": "//div[contains(@class,'option') and text()='OAuth 2.0']",
|
|
|
|
|
"accessTokenUrl": "[data-cy='authentication.accessTokenUrl'] input",
|
|
|
|
|
"clienID": "[data-cy='authentication.clientId'] input",
|
|
|
|
|
"clientSecret": "[data-cy='authentication.clientSecret'] input",
|
|
|
|
|
"datasourceConfigUrl": "[data-cy='datasourceConfiguration.url'] input",
|
|
|
|
|
"projectID": "[data-cy='datasourceConfiguration.authentication.username'] input",
|
|
|
|
|
"serviceAccCredential": "[data-cy='datasourceConfiguration.authentication.password'] input",
|
|
|
|
|
"grantType": "[data-cy='authentication.grantType']",
|
|
|
|
|
"authorizationURL":"[data-cy='authentication.authorizationUrl'] input",
|
|
|
|
|
"authorisecode": "//div[contains(@class,'option') and text()='Authorization Code']",
|
2021-05-10 11:57:54 +00:00
|
|
|
"saveAndAuthorize": "button:contains('Save and Authorize')",
|
|
|
|
|
"basic": "//div[contains(@class,'option') and text()='Basic']",
|
|
|
|
|
"basicUsername": "input[name='authentication.username']",
|
|
|
|
|
"basicPassword": "input[name='authentication.password']"
|
2020-05-11 09:03:46 +00:00
|
|
|
}
|