-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #147 from RevealBi/refactor/update-sandbox
Pre-add sandbox examples
- Loading branch information
Showing
18 changed files
with
338 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Reveal.Sdk.Dom; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class AmazonRedshiftDashboard : IDashboardCreator | ||
{ | ||
public string Name => "Amazon Redshift Data Source"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Reveal.Sdk.Dom; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class AmazonS3Dashboard : IDashboardCreator | ||
{ | ||
public string Name => "Amazon S3 Data Source"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Reveal.Sdk.Dom; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class GoogleAnalytic4Dashboard : IDashboardCreator | ||
{ | ||
public string Name => "Google Analytic4 Data Source"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Reveal.Sdk.Dom; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class GoogleBigQueryDashboard : IDashboardCreator | ||
{ | ||
public string Name => "Google Big Query Data Source"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Reveal.Sdk.Dom; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class GoogleDriveDashboard : IDashboardCreator | ||
{ | ||
public string Name => "Google Drive Data Source"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Reveal.Sdk.Dom; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class GoogleSheetDashboard : IDashboardCreator | ||
{ | ||
public string Name => "Google Sheet Data Source"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Reveal.Sdk.Dom; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class HttpAnalysisDashboard : IDashboardCreator | ||
{ | ||
public string Name => "Http Analysis Data Source"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
e2e/Sandbox/DashboardCreators/MSAnalysisServiceDashboard.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Reveal.Sdk.Dom; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class MSAnalysisServiceDashboard : IDashboardCreator | ||
{ | ||
public string Name => "MS Analysis Service Data Source"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
e2e/Sandbox/DashboardCreators/MSAzureAnalysisServiceDashboard.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Reveal.Sdk.Dom; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class MSAzureAnalysisServiceDashboard : IDashboardCreator | ||
{ | ||
public string Name => "MS Azure Analysis Service Data Source"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using Reveal.Sdk.Dom; | ||
using Sandbox.DashboardFactories; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class MSAzureSqlDashboard : IDashboardCreator | ||
{ | ||
public string Name => "MS Azure Sql Data Source"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Reveal.Sdk.Dom; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class MongoDashboard : IDashboardCreator | ||
{ | ||
public string Name => "Mongo Data Source"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Reveal.Sdk.Dom; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class MySqlDashboard : IDashboardCreator | ||
{ | ||
public string Name => "MySql data source"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Reveal.Sdk.Dom; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class ODataDashboard : IDashboardCreator | ||
{ | ||
public string Name => "OData Data Source"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Reveal.Sdk.Dom; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class OracleDashboard : IDashboardCreator | ||
{ | ||
public string Name => "Oracle Data Source"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,4 +47,4 @@ public RdashDocument CreateDashboard() | |
return document; | ||
} | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
e2e/Sandbox/DashboardCreators/SynapseAnalyticsDashboard.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Reveal.Sdk.Dom; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class SynapseAnalyticsDashboard : IDashboardCreator | ||
{ | ||
public string Name => "MS Synapse Analytics DataSource"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
e2e/Sandbox/DashboardCreators/WebServiceDataSourceDashboard.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Reveal.Sdk.Dom; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Sandbox.DashboardFactories | ||
{ | ||
internal class WebServiceDataSourceDashboard : IDashboardCreator | ||
{ | ||
public string Name => "Web Service Data Source"; | ||
|
||
public RdashDocument CreateDashboard() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters