npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@making-sense/antlr-editor

v2.0.0

Published

ANTLR Typescript editor

Downloads

168

Readme

ANTLR Editor

ANTLR Editor CI NPM version Storybook

ANTLR Typescript editor.

Usage

Install

yarn add @making-sense/antlr-editor antlr4ts monaco-editor @monaco-editor/react

Create React app

As far as antlr4ts require some node modules which are no longer provided by Webpack@5, you have to complete the webpack configuration thanks to react-app-rewired (or eject your CRA application, what we will not recommend here), following these steps:

  • Install react-app-rewired, assert, path and util as devDependency
yarn add -D react-app-rewired assert path util
  • Override the create-react-app webpack config file

At the root of your project, create the config-overrides.js file and add the following code to it:

/*
We use this file to in order to be able to use webpack plugin without ejecting from CRA.
This file is picked up by react-app-rewired that we use in place of react-scripts
*/

module.exports = function override(config) {
    if (!config.resolve.fallback) {
        config.resolve.fallback = {};
    }

    config.resolve.fallback["assert"] = require.resolve("assert");
    config.resolve.fallback["path"] = require.resolve("path");
    config.resolve.fallback["util"] = require.resolve("util");

    if (!config.plugins) {
        config.plugins = [];
    }
    return config;
};
  • Switch the existing calls to react-scripts in your project scripts for start, build and test
  /* package.json */

  "scripts": {
-   "start": "react-scripts start",
+   "start": "react-app-rewired start",
-   "build": "react-scripts build",
+   "build": "react-app-rewired build",
-   "test": "react-scripts test",
+   "test": "react-app-rewired test",
    "eject": "react-scripts eject"
}

VTLEditor

yarn add @making-sense/vtl-2-0-antlr-tools-ts
import { AntlrEditor as VTLEditor } from "@making-sense/antlr-editor";
import { getSuggestionsFromRange, monarchDefinition } from "./vtl-monaco";
import * as VTLTools from "@making-sense/vtl-2-0-antlr-tools-ts";

const customTools = { ...VTLTools, getSuggestionsFromRange, monarchDefinition };

const Editor = () => {
    return <VTLEditor tools={customTools} />;
};

export default Editor;

Developement mode

Storybook

yarn storybook

Linked app

git clone https://github.com/Making-Sense-Info/ANTLR-Editor
cd ANTLR-Editor
yarn

# Start the test app in watch mode
yarn start-test-app

# Link in an external project in watch mode
yarn link-in-app test-app # ../YOUR-APP is supposed to exist

AntlrEditor Props

| Name | Type | Default value | | ------------------ | :---------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------: | | script | string | - | | setScript | Function | - | | customFetcher | Function * | - | | tools | Tools * | - | | variables | Variables * | { } | | variablesInputURLs | VariableURLs * | [ ] | | onListErrors | Function | undefined | | height | string | "50vh" | | width | string | "100%" | | theme | string | "vs-dark" | | options | IStandaloneEditorConstructionOptions | {} |

See details about * props below

Props

tools

tools has to be mainly antlr4 auto-generated Lexer & Parser.

| Name | Type | Default value | | ----------- | :-----------: | :-----------: | | id | string | - | | initialRule | string | - | | grammar | string | - | | Lexer | Antlr4 Lexer | - | | Parser | Antlr4 Parser | - |

Have a look to VTL 2.0 Antlr Tools for example.

For autosuggestion, provide getSuggestionsFromRange (example here).

For highlighting, provide monarchDefinition (example here)

customFetcher

customFetcher enable to provide a custom fetch, adding Authorization header for instance:

u => fetch(u, headers:{ Authorization: 'Bearer XXX'})

This function will be used to fetch variableURLs & sdmxResultURL props.

variables

variables enable to pass an object to provide auto-suggestion.

The shape of this object is:

const obj = {
    "var1": {"type": "STRING", "role": "IDENTIFIER"},
    "var2": {"type": "INTEGER", "role": "MEASURE"},
}

variableURLs

variableURLs enable to pass an array of string to fetch to provide auto-suggestion:

["http://metadata/1", "http://metadata/2"]

The shape of each fetched resources has to be:

[
    { "name": "var1", "type": "STRING", "role": "IDENTIFIER" },
    { "name": "var2", "type": "INTEGER", "role": "MEASURE" }
]