monaco-review
TypeScript icon, indicating that this package has built-in type declarations

0.0.42 • Public • Published

monaco-editor-code-review

Build Status Coverage Status FOSSA Status

screenshot

Lightweight extension (45KiB) for monaco-editor to allow the creation, editing of "comments" in code. This module has 2 explicit dependencies (uuid + moment). There is an peer-dependency dependency on monaco-editor.

For a working examplple of all the features and the behaviours

Simply add the monaco-editor-code-review/index.js to your .html page.

<script src="../index.js"></script>
//Type: ./src/types/index.ts#ReviewManagerConfig
const overriddenConfig = {};

//Type: ./src/types/index.ts#ReviewComment
const existingComments = [{id:"1",
                         createdBy:'developer-1',
                         createdAt:new Date().getTime(),
                         text:'',
                         lineNumber:1 }];

const editor = monaco.editor.create(document.getElementById("container"), {
        value: '...some source code ''',
        language: "javascript",
        contextmenu: true
    });
const reviewManager = MonacoEditorCodeReview.createReviewManager(editor,
                                                    "name-of-current-user",
                                                    existingComments,
                                                    (newComments)=>{console.info("** new comments **", newComments);},
                                                    overriddenConfig);

Features

  • Add comment
  • Reply to comment
  • Delete comment [optionally disable/disable]
  • Navigate between comments [ forward, back]
  • Displays comment marker in scrollbar
  • Supports Monaco Themes

Motivation

Your first reaction might be there is no need for this because github or gitlab all have excellent code review tools, and you are right! However - Monaco can be embedded in many types of applications, and this library enables you integrate a light way of allowing users to annotate documents rendered in it.

License

FOSSA Status

Readme

Keywords

none

Package Sidebar

Install

npm i monaco-review

Weekly Downloads

3

Version

0.0.42

License

MIT

Unpacked Size

2.72 MB

Total Files

72

Last publish

Collaborators

  • jburrow