293 lines
6.7 KiB
JavaScript
293 lines
6.7 KiB
JavaScript
const PREC = {
|
|
COMMENT: -2,
|
|
EOL: -1,
|
|
TEXT_BLOCK_CONTENT: -1,
|
|
UNQUOTED_STRING: 0,
|
|
CONTAINER: 2,
|
|
CONNECTION: 2,
|
|
SHAPE: 3,
|
|
IDENTIFIER: 0,
|
|
ARROW: 0,
|
|
ATTRIBUTE: 0,
|
|
ATTRIBUTE_KEY: 0,
|
|
};
|
|
|
|
module.exports = grammar({
|
|
name: "d2",
|
|
|
|
extras: ($) => [
|
|
/[ \f\t\v\u00a0\u1680\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff]/,
|
|
$.line_comment,
|
|
],
|
|
|
|
word: ($) => $._identifier,
|
|
|
|
conflicts: ($) => [[$._connection_path, $.container]],
|
|
|
|
rules: {
|
|
source_file: ($) => repeat($._root_definition),
|
|
|
|
_root_definition: ($) =>
|
|
choice(
|
|
$._eol,
|
|
seq(
|
|
choice(
|
|
alias($._root_attribute, $.attribute),
|
|
$.shape,
|
|
$.container,
|
|
$.connection
|
|
),
|
|
choice($._end, "\0")
|
|
)
|
|
),
|
|
|
|
// connections
|
|
|
|
connection: ($) =>
|
|
seq(
|
|
$._connection_path,
|
|
repeat1(seq($.arrow, $._connection_path)),
|
|
optional(
|
|
seq(
|
|
optional(seq($._colon, optional($.label))),
|
|
optional(seq(alias($._connection_block, $.block)))
|
|
)
|
|
)
|
|
),
|
|
|
|
_connection_path: ($) =>
|
|
seq(
|
|
repeat(
|
|
prec(PREC.CONNECTION, seq(alias($.shape_key, $.container_key), $.dot))
|
|
),
|
|
$.shape_key
|
|
),
|
|
|
|
_connection_block: ($) =>
|
|
seq("{", repeat($._connection_block_definition), "}"),
|
|
|
|
_connection_block_definition: ($) =>
|
|
choice($._eol, seq($._connection_attribute, $._end)),
|
|
|
|
// containers
|
|
|
|
container: ($) =>
|
|
prec(
|
|
PREC.CONTAINER,
|
|
seq(
|
|
alias($.shape_key, $.container_key),
|
|
choice(
|
|
seq($.dot, choice($.shape, $.container)),
|
|
seq(
|
|
optional(seq($._colon, optional($.label))),
|
|
optional(seq(alias($._container_block, $.block)))
|
|
)
|
|
)
|
|
)
|
|
),
|
|
|
|
_container_block: ($) =>
|
|
seq("{", repeat($._container_block_definition), "}"),
|
|
|
|
_container_block_definition: ($) =>
|
|
choice(
|
|
$._eol,
|
|
seq(
|
|
choice($.shape, $.container, $.connection, $._shape_attribute),
|
|
$._end
|
|
)
|
|
),
|
|
|
|
// shapes
|
|
|
|
shape: ($) =>
|
|
prec(
|
|
PREC.SHAPE,
|
|
seq(
|
|
$.shape_key,
|
|
optional(
|
|
choice(
|
|
seq($.dot, alias($._style_attribute, $.attribute)),
|
|
seq(optional(seq($._colon, choice($.label, $.text_block))))
|
|
)
|
|
)
|
|
)
|
|
),
|
|
|
|
shape_key: ($) => choice($.string, seq($._identifier, optional($._dash))),
|
|
|
|
_identifier: ($) =>
|
|
token(
|
|
prec(
|
|
PREC.IDENTIFIER,
|
|
/\-?([\w\d]+([\w\d`'"]+)?|([\w\d]+([\w\d `'"]+)?( +|\-)[\w\d]+([\w\d `'"]+)?)+)/
|
|
)
|
|
),
|
|
|
|
text_block: ($) =>
|
|
choice(
|
|
seq("|", $._text_block_definition, "|"),
|
|
// References: https://github.com/terrastruct/d2-vim
|
|
seq("|`", $._text_block_definition, "`|")
|
|
),
|
|
|
|
_text_block_definition: ($) =>
|
|
seq(optional($.language), $._eol, optional($.text_block_content)),
|
|
|
|
text_block_content: ($) =>
|
|
repeat1(token(prec(PREC.TEXT_BLOCK_CONTENT, /.*?[^`|]/))),
|
|
|
|
language: ($) => /\w+/,
|
|
|
|
// attributes
|
|
|
|
_root_attribute: ($) =>
|
|
seq(alias($._root_attr_key, $.attr_key), $._colon, $.attr_value),
|
|
|
|
_root_attr_key: ($) =>
|
|
choice(
|
|
"direction",
|
|
// reserved but doesn't affected for root
|
|
alias(
|
|
choice(
|
|
"shape",
|
|
"label",
|
|
"constraint",
|
|
"icon",
|
|
"style",
|
|
$._common_style_attr_key,
|
|
$._text_attr_key
|
|
),
|
|
$.reserved
|
|
)
|
|
),
|
|
|
|
_shape_attribute: ($) =>
|
|
choice(
|
|
alias($._base_shape_attribute, $.attribute),
|
|
alias($._style_attribute, $.attribute)
|
|
),
|
|
|
|
_base_shape_attribute: ($) =>
|
|
seq(alias($._shape_attr_key, $.attr_key), $._colon, $.attr_value),
|
|
|
|
_shape_attr_key: ($) =>
|
|
prec(
|
|
PREC.ATTRIBUTE_KEY,
|
|
choice(
|
|
"shape",
|
|
"label",
|
|
// sql
|
|
"constraint",
|
|
// image
|
|
"icon",
|
|
"width",
|
|
"height"
|
|
)
|
|
),
|
|
|
|
_style_attribute: ($) =>
|
|
prec(
|
|
PREC.ATTRIBUTE,
|
|
seq(
|
|
alias("style", $.attr_key),
|
|
choice(
|
|
seq($.dot, alias($._inner_style_attribute, $.attribute)),
|
|
seq($._colon, alias($._style_attribute_block, $.block))
|
|
)
|
|
)
|
|
),
|
|
|
|
_style_attribute_block: ($) =>
|
|
seq(
|
|
"{",
|
|
repeat(
|
|
choice(
|
|
$._eol,
|
|
seq(alias($._inner_style_attribute, $.attribute), $._end)
|
|
)
|
|
),
|
|
"}"
|
|
),
|
|
|
|
_inner_style_attribute: ($) =>
|
|
prec(
|
|
PREC.ATTRIBUTE,
|
|
seq(alias($._style_attr_key, $.attr_key), $._colon, $.attr_value)
|
|
),
|
|
|
|
_style_attr_key: ($) => choice($._common_style_attr_key, "3d"),
|
|
|
|
_common_style_attr_key: ($) =>
|
|
choice(
|
|
"opacity",
|
|
"fill",
|
|
"stroke",
|
|
"stroke-width",
|
|
"stroke-dash",
|
|
"border-radius",
|
|
"font-color",
|
|
"shadow",
|
|
"multiple",
|
|
"animated",
|
|
"link"
|
|
),
|
|
|
|
_text_attr_key: ($) => "near",
|
|
|
|
_connection_attribute: ($) =>
|
|
choice(
|
|
alias($._connection_arrowhead_attribute, $.attribute),
|
|
alias($._style_attribute, $.attribute)
|
|
),
|
|
|
|
_connection_arrowhead_attribute: ($) =>
|
|
seq(
|
|
alias($._connection_arrowhead_attr_key, $.attr_key),
|
|
choice(
|
|
seq($.dot, alias($._style_attribute, $.attribute)),
|
|
seq(
|
|
optional(seq($._colon, optional($.label))),
|
|
optional(seq(alias($._container_block, $.block)))
|
|
)
|
|
)
|
|
),
|
|
|
|
_connection_arrowhead_block: ($) =>
|
|
seq("{", repeat(choice($._eol, seq($._shape_attribute, $._end))), "}"),
|
|
|
|
_connection_arrowhead_attr_key: ($) =>
|
|
choice("source-arrowhead", "target-arrowhead"),
|
|
|
|
//
|
|
|
|
label: ($) => choice($.string, $._unquoted_string),
|
|
|
|
attr_value: ($) => seq(choice($.string, $._unquoted_string)),
|
|
|
|
// --------------------------------------------
|
|
|
|
_dash: ($) => token.immediate("-"),
|
|
|
|
_colon: ($) => seq(":"),
|
|
|
|
arrow: ($) => token(prec(PREC.ARROW, choice(/-+>/, /--+/, /<-+/, /<-+>/))),
|
|
|
|
dot: ($) => token("."),
|
|
|
|
_unquoted_string: ($) =>
|
|
token(prec(PREC.UNQUOTED_STRING, /[^'"`|\n\s;{}]([^\n;{}]*[^\n\s;{}])?/)),
|
|
|
|
string: ($) =>
|
|
choice(
|
|
seq("'", repeat(token.immediate(/[^'\n]+/)), "'"),
|
|
seq('"', repeat(token.immediate(/[^"\n]+/)), '"'),
|
|
seq("`", repeat(token.immediate(/[^`\n]+/)), "`")
|
|
),
|
|
|
|
line_comment: ($) => token(prec(PREC.COMMENT, seq("#", /.*/))),
|
|
|
|
_eol: ($) => token(prec(PREC.EOL, "\n")),
|
|
_end: ($) => seq(choice(";", $._eol)),
|
|
},
|
|
});
|