Giter Club home page Giter Club logo

ueditor-blazor's Introduction

ueditor-blazor

A wysiwyg rich text web editor based on UEditor and Blazor.

๐Ÿ’ฟ Current Version

  • Release: UEditorBlazor
  • Development: UEditorBlazor

Usage

  1. Install the package

      $ dotnet add package UEditorBlazor -v 0.1.0-*
  2. Import js resources

        <script>
            window.NEDITOR_UPLOAD = "/api/upload";
        </script>
        <script src="_content/UEditorBlazor/neditor.config.js"></script>
        <script src="_content/UEditorBlazor/neditor.all.min.js" defer></script>
        <script src="_content/UEditorBlazor/ueditor-blazor.js"></script>
  3. That's all! Then you can use the UEditor.Editor component.

    <UEditor.Editor @ref="editor" @bind-Value="value" @bind-Html="html" Height="500px" Width="700px" />
    
    @code {
        string value = "Hello Blazor!";
        string html;
    
        Editor editor;
    }

Image Loading

If you want to implement custom image loading, follow the instructions listed below:

1. Setting the upload api endpoint:

<script>
    window.NEDITOR_UPLOAD = "/api/upload";
</script>

In neditor.service.js, be sure in getActionUrl function, return window.NEDITOR_UPLOAD.

2. Image upload server implementing:

2.1 Before adding an api controller, register some stuffs

services.AddControllers();

2.2 Add a directory to store images

app.UseStaticFiles(new StaticFileOptions {
    FileProvider = new PhysicalFileProvider(image_path),
    RequestPath = "/I"
})

The /I suffix is used to show preview images. You can modify image_path and /I meantime in the controller.

2.3 Write an api controller to process /api/upload request

See ImageController.cs. Remember the root and result.url variants should be the same as mentioned in 2.2.

3. Enjoy.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.