title | page_title | description | slug | tags | published | position |
---|---|---|---|---|---|---|
Telerik REPL for Blazor |
Telerik REPL for Blazor |
Telerik REPL for Blazor - Write, Compile, Execute and Share your rich UI Blazor components. |
blazor-repl |
telerik,blazor,repl |
true |
40 |
Progress Telerik REPL for Blazor is innovative web-based application that allows you to write, compile, execute and share your rich Blazor UI components. You can write your code directly in the integrated editor and execute it in the browser security sandbox without any communication with a server. The code is compiled on top of Web Assembly which delivers near to native performance. With Telerik REPL for Blazor you can also easily edit, save and share your code.
important Telerik REPL for Blazor integrates 3.0.0 version of Telerik.UI.for.Blazor. Any snippet created before 3.0.0 that uses the Telerik Components might need an update due to the [breaking changes in the release]({%slug changes-in-3-0-0%}).
In this article:
- Getting Started
- Telerik UI for Blazor documentation Integration
- Telerik UI for Blazor demos Integration
- Visual Studio and Visual Studio Code Integration
The Telerik REPL for Blazor application interface consists of five main sections:
The Toolbar of Telerik REPL for Blazor contains the operations that can be performed:
-
Run
- executes the code from the editor and renders it in the Result View -
Get Started
- links the getting started article for the product -
Share
- allows you to share the snippet. The menu is divided in two sections:Share
- In the popup, you will find a generated public link with the snippet that you can share as desired. The menu also provides several options for direct sharing in social media.Embed
- generates a link which you can use to embed the snippet in blog posts and other websites. Based on your use case, you can choose whether to embed only the Editor, the Result View, the Error Console or all three. You will see a preview of the embed in the popup upon selecting the desired option.
-
Feedback
- leads to the public feedback portal for Telerik REPL for Blazor where you can share your enhancement requests and eventual bug reports. We use it to constantly monitor the community interest and demand and thus improve our products.
The Sidebar provides the following functionalities:
-
NuGet Package Manager - it allows you to install third party NuGet packages that are stored in the public
nuget.org
repository. If the published NuGet requires accepting license agreement, you will see a confirmation prompt. The latestTelerik UI for Blazor
package is already installed by default. -
Static Asset Manager - it allows you to add CDN URLs for your CSS or JavaScript files. Place the file URL in the input and click the download button. This will automatically add references for the corresponding files. Once the desired asset is added, you can easily enable/disable it via a switch. In case some of the installed NuGet packages include CSS/JavaScript files, they will automatically be listed in this section, so you can manage them.
-
Telerik UI Asset Manager - provides a summary of the installed Telerik UI package version and a dropdown for selecting one of the [built-in themes]({%slug general-information/themes%}) (Default, Material, Bootstrap) and some of their corresponding [color swatches]({%slug themes-swatches%}). By selecting different theme or swatch, you can immediately see the applied styles in the Result View.
-
Startup Config - the config icon at the bottom of the Sidebar opens the
Startup.cs
file of the project. You can configure services or other settings there.
The Editor allows you to type, paste and edit your code. It always contains _Main.razor
file and you can also add other files to the project via the +
button.
The newly added files could be .razor
(pages, components) or .cs
(models, code-behind files, services, etc.). All files of type .razor
should be named with a capital letter.
Once you click the Run button, the actual result of your code will be rendered in the Result View of the Telerik REPL for Blazor. To successfully run the code you need to make sure that no errors are thrown (if any, they will be listed in the Error List).
Telerik REPL for Blazor provides an Error List that displays details for the compile time errors and warnings. It can be expanded/collapsed via arrow buttons.
The Error list is located at the bottom of the Editor.
The Telerik UI for Blazor documentation supports integration with the Telerik REPL for Blazor. This provides interactive experience and easy to test snippets for the various components and scenarios. Above the code snippets listed in the documentation articles you will find a toolbar with the following options:
-
Edit
- click to open the source in the integrated the Telerik REPL for Blazor Editor. -
Preview
- click to run the snippet in the integrated the Telerik REPL for Blazor Result View.
The Telerik UI for Blazor demos support integration with the Telerik REPL for Blazor. In the demo window toolbar, along with the "Example" and "View Source" tabs, you will find a tab with dropdown that provides option for editing the demo in Telerik REPL for Blazor. Once you select that option, you will be redirected to the Telerik REPL for Blazor and its editor will contain the source code of the current demo, so you can directly edit and test it.
Telerik Extensions for [Visual Studio]({%slug getting-started-vs-integration-overview%}) and [Visual Studio Code]({%slug getting-started-vs-code-integration-overview%}) provide option to easily share your code to the Telerik REPL for Blazor with a few clicks. You can share the whole file or just a selection.
The command can be used if more than 10 symbols are selected. If less symbols are selected, in Visual Studio it will appear as disabled and in Visual Studio Code you will get an error message ("Expected at least 10 characters"). In case of multiple selection every new piece will be concatenated on a new line.
If no selection is made, the whole file will be shared to Telerik REPL for Blazor. Only single files can be shared per command and not the whole application. Once the share to REPL process is triggered, notifications will appear in the bottom right corner for about 2 to 3 seconds to indicate the status, after that the default browser opens with the uploaded snippet.
The Share to Telerik REPL for Blazor
command can be accessed as follows:
Visual Studio (you can get the extension here):
- Context Menu option - select a section that you want to share, right click on it to open the context menu and click "Share to Telerik REPL for Blazor" option.
Visual Studio Code (you can get the extension here):
- Context Menu option - select a section that you want to share, right click on it to open the context menu and click "Share to Telerik REPL for Blazor" option.`
- Command in the command palette - select a section that you want to share, search for "Share to Telerik REPL for Blazor" in the command palette and choose it.