@neo4j-ndl/react 0.7.2 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/code-block/CodeBlock.js +104 -0
- package/lib/cjs/code-block/CodeBlock.js.map +1 -0
- package/lib/cjs/code-block/index.js +38 -0
- package/lib/cjs/code-block/index.js.map +1 -0
- package/lib/cjs/code-block/languages.js +302 -0
- package/lib/cjs/code-block/languages.js.map +1 -0
- package/lib/cjs/dropdown/Dropdown.js +1 -1
- package/lib/cjs/dropdown/Dropdown.js.map +1 -1
- package/lib/cjs/graph-label/GraphLabel.js +80 -42
- package/lib/cjs/graph-label/GraphLabel.js.map +1 -1
- package/lib/cjs/graph-label/color.js +87 -0
- package/lib/cjs/graph-label/color.js.map +1 -0
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/code-block/CodeBlock.js +75 -0
- package/lib/esm/code-block/CodeBlock.js.map +1 -0
- package/lib/esm/code-block/index.js +22 -0
- package/lib/esm/code-block/index.js.map +1 -0
- package/lib/esm/code-block/languages.js +301 -0
- package/lib/esm/code-block/languages.js.map +1 -0
- package/lib/esm/dropdown/Dropdown.js +1 -1
- package/lib/esm/dropdown/Dropdown.js.map +1 -1
- package/lib/esm/graph-label/GraphLabel.js +57 -42
- package/lib/esm/graph-label/GraphLabel.js.map +1 -1
- package/lib/esm/graph-label/color.js +77 -0
- package/lib/esm/graph-label/color.js.map +1 -0
- package/lib/esm/index.js +1 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/types/code-block/CodeBlock.d.ts +34 -0
- package/lib/types/code-block/index.d.ts +21 -0
- package/lib/types/code-block/languages.d.ts +23 -0
- package/lib/types/graph-label/GraphLabel.d.ts +11 -38
- package/lib/types/graph-label/color.d.ts +41 -0
- package/lib/types/index.d.ts +1 -0
- package/package.json +6 -3
|
@@ -1,4 +1,27 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
2
25
|
var __rest = (this && this.__rest) || function (s, e) {
|
|
3
26
|
var t = {};
|
|
4
27
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -35,8 +58,10 @@ const jsx_runtime_1 = require("react/jsx-runtime");
|
|
|
35
58
|
* You should have received a copy of the GNU General Public License
|
|
36
59
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
37
60
|
*/
|
|
38
|
-
const react_1 =
|
|
61
|
+
const react_1 = __importStar(require("react"));
|
|
39
62
|
const classnames_1 = __importDefault(require("classnames"));
|
|
63
|
+
const tokens_1 = __importDefault(require("@neo4j-ndl/base/lib/tokens/js/tokens"));
|
|
64
|
+
const color_1 = require("./color");
|
|
40
65
|
/**
|
|
41
66
|
*
|
|
42
67
|
*
|
|
@@ -44,7 +69,9 @@ const classnames_1 = __importDefault(require("classnames"));
|
|
|
44
69
|
*
|
|
45
70
|
*
|
|
46
71
|
*/
|
|
47
|
-
const HexagonEnd = ({ direction = 'left'
|
|
72
|
+
const HexagonEnd = ({ direction = 'left', color }) => {
|
|
73
|
+
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: `ndl-hexagon-end ${direction}` }, { children: [(0, jsx_runtime_1.jsx)("svg", Object.assign({ width: "8", height: "24", viewBox: "0 0 7 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: (0, jsx_runtime_1.jsx)("path", { className: "ndl-hexagon-end-inner", style: { fill: color }, fillRule: "evenodd", clipRule: "evenodd", d: "M5.73024 1.03676C6.08165 0.397331 6.75338 0 7.48301 0H9V24H7.483C6.75338 24 6.08165 23.6027 5.73024 22.9632L0.315027 13.1094C-0.105009 12.4376 -0.105009 11.5624 0.315026 10.8906L5.73024 1.03676Z" }) })), (0, jsx_runtime_1.jsx)("svg", Object.assign({ className: "ndl-hexagon-end-active", width: "13", height: "30", viewBox: "0 0 13 30", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.075 2C9.12474 2 8.24318 2.54521 7.74867 3.43873L2.21419 13.4387C1.68353 14.3976 1.68353 15.6024 2.21419 16.5613L7.74867 26.5613C8.24318 27.4548 9.12474 28 10.075 28H13V30H10.075C8.49126 30 7.022 29.0913 6.1978 27.6021L0.663324 17.6021C-0.221109 16.0041 -0.221108 13.9959 0.663325 12.3979L6.1978 2.39789C7.022 0.90869 8.49126 0 10.075 0H13V2H10.075Z" }) }))] })));
|
|
74
|
+
};
|
|
48
75
|
/**
|
|
49
76
|
*
|
|
50
77
|
*
|
|
@@ -53,7 +80,16 @@ const HexagonEnd = ({ direction = 'left' }) => ((0, jsx_runtime_1.jsxs)("div", O
|
|
|
53
80
|
*
|
|
54
81
|
*/
|
|
55
82
|
const GraphLabel = react_1.default.forwardRef(function GraphLabel(_a, ref) {
|
|
56
|
-
var { type = 'node', disabled = false, selected = false, as, onClick } = _a, props = __rest(_a, ["type", "disabled", "selected", "as", "onClick"]);
|
|
83
|
+
var { type = 'node', color, disabled = false, selected = false, as, onClick } = _a, props = __rest(_a, ["type", "color", "disabled", "selected", "as", "onClick"]);
|
|
84
|
+
const [isHover, setIsHover] = (0, react_1.useState)(false);
|
|
85
|
+
const handleMouseEnter = (event) => {
|
|
86
|
+
setIsHover(true);
|
|
87
|
+
props.onMouseEnter && props.onMouseEnter(event);
|
|
88
|
+
};
|
|
89
|
+
const handleMouseLeave = (event) => {
|
|
90
|
+
setIsHover(false);
|
|
91
|
+
props.onMouseLeave && props.onMouseLeave(event);
|
|
92
|
+
};
|
|
57
93
|
const handleClick = (e) => {
|
|
58
94
|
// By default, a <button /> element with disabled set to true will not get its
|
|
59
95
|
// on click handler called. To support the same behavior on <a /> tags we
|
|
@@ -68,51 +104,53 @@ const GraphLabel = react_1.default.forwardRef(function GraphLabel(_a, ref) {
|
|
|
68
104
|
onClick(e);
|
|
69
105
|
}
|
|
70
106
|
};
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
107
|
+
let backgroundColor = (0, react_1.useMemo)(() => {
|
|
108
|
+
if (!color) {
|
|
109
|
+
switch (type) {
|
|
110
|
+
case 'node':
|
|
111
|
+
return tokens_1.default.colors.warning[40];
|
|
112
|
+
case 'relationship':
|
|
113
|
+
return tokens_1.default.palette.light.neutral.bg.strong;
|
|
114
|
+
default:
|
|
115
|
+
return tokens_1.default.palette.light.neutral.bg.strongest;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
return color;
|
|
119
|
+
}, [color, type]);
|
|
120
|
+
const hoverColor = (0, react_1.useMemo)(() => (0, color_1.getHoverColor)(backgroundColor ? backgroundColor : tokens_1.default.colors.warning[40]), [backgroundColor]);
|
|
121
|
+
const textColor = (0, react_1.useMemo)(() => (0, color_1.getTextColorFromBackground)(backgroundColor ? backgroundColor : tokens_1.default.colors.warning[40]), [backgroundColor]);
|
|
122
|
+
const disabledTextColor = (0, react_1.useMemo)(() => (0, color_1.getDisabledTextColor)(backgroundColor ? backgroundColor : tokens_1.default.colors.warning[40]), [backgroundColor]);
|
|
123
|
+
if (isHover && !disabled)
|
|
124
|
+
backgroundColor = hoverColor;
|
|
125
|
+
if (disabled)
|
|
126
|
+
backgroundColor = (0, color_1.getDisabledColor)(backgroundColor);
|
|
82
127
|
let Component = 'button';
|
|
83
128
|
if (as) {
|
|
84
129
|
Component = as;
|
|
85
130
|
}
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
});
|
|
93
|
-
const RelationshipLabel = react_1.default.forwardRef(function RelationshipLabel(_a, ref) {
|
|
94
|
-
var { children, disabled, selected, as } = _a, props = __rest(_a, ["children", "disabled", "selected", "as"]);
|
|
95
|
-
let Component = 'button';
|
|
96
|
-
if (as) {
|
|
97
|
-
Component = as;
|
|
131
|
+
if (type === 'node') {
|
|
132
|
+
const classes = (0, classnames_1.default)('ndl-node-label', props.className, {
|
|
133
|
+
disabled: disabled,
|
|
134
|
+
selected: selected,
|
|
135
|
+
});
|
|
136
|
+
return ((0, jsx_runtime_1.jsx)(Component, Object.assign({}, props, { className: classes, ref: ref, style: Object.assign({ backgroundColor: backgroundColor, color: disabled ? disabledTextColor : textColor }, props.style), onClick: handleClick, onMouseEnter: handleMouseEnter, onMouseLeave: handleMouseLeave }, { children: props.children })));
|
|
98
137
|
}
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
})
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
138
|
+
else if (type === 'relationship') {
|
|
139
|
+
const classes = (0, classnames_1.default)('ndl-relationship-label', {
|
|
140
|
+
disabled: disabled,
|
|
141
|
+
selected: selected,
|
|
142
|
+
});
|
|
143
|
+
return ((0, jsx_runtime_1.jsxs)(Component, Object.assign({}, props, { style: Object.assign(Object.assign({}, props.style), { color: disabled ? disabledTextColor : textColor }), className: classes, onClick: handleClick, onMouseEnter: handleMouseEnter, onMouseLeave: handleMouseLeave, ref: ref }, { children: [(0, jsx_runtime_1.jsx)("svg", Object.assign({ style: { display: 'none' } }, { children: (0, jsx_runtime_1.jsx)("mask", Object.assign({ id: "ndl-relationship-label-mask-outer-border", fill: "white" }, { children: (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.73024 1.03676C6.08165 0.397331 6.75338 0 7.48301 0H9V24H7.483C6.75338 24 6.08165 23.6027 5.73024 22.9632L0.315027 13.1094C-0.105009 12.4376 -0.105009 11.5624 0.315026 10.8906L5.73024 1.03676Z" }) })) })), (0, jsx_runtime_1.jsx)(HexagonEnd, { direction: "left", color: backgroundColor }), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "ndl-relationship-label-content", style: {
|
|
144
|
+
backgroundColor: backgroundColor,
|
|
145
|
+
} }, { children: props.children })), (0, jsx_runtime_1.jsx)(HexagonEnd, { direction: "right", color: backgroundColor })] })));
|
|
146
|
+
}
|
|
147
|
+
else {
|
|
148
|
+
const classes = (0, classnames_1.default)('ndl-property-key-label', {
|
|
149
|
+
disabled: disabled,
|
|
150
|
+
selected: selected,
|
|
151
|
+
});
|
|
152
|
+
return ((0, jsx_runtime_1.jsx)(Component, Object.assign({}, props, { style: Object.assign({ backgroundColor: backgroundColor, color: disabled ? disabledTextColor : textColor }, props.style), className: classes, onClick: handleClick, onMouseEnter: handleMouseEnter, onMouseLeave: handleMouseLeave, ref: ref }, { children: props.children })));
|
|
110
153
|
}
|
|
111
|
-
const classes = (0, classnames_1.default)('ndl-property-key-label', {
|
|
112
|
-
disabled: disabled,
|
|
113
|
-
selected: selected,
|
|
114
|
-
});
|
|
115
|
-
return ((0, jsx_runtime_1.jsx)(Component, Object.assign({}, props, { className: classes, ref: ref }, { children: children })));
|
|
116
154
|
});
|
|
117
155
|
exports.default = GraphLabel;
|
|
118
156
|
//# sourceMappingURL=GraphLabel.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GraphLabel.js","sourceRoot":"","sources":["../../../src/graph-label/GraphLabel.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"GraphLabel.js","sourceRoot":"","sources":["../../../src/graph-label/GraphLabel.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) "Neo4j"
|
|
5
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
6
|
+
*
|
|
7
|
+
* This file is part of Neo4j.
|
|
8
|
+
*
|
|
9
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
10
|
+
* it under the terms of the GNU General Public License as published by
|
|
11
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
12
|
+
* (at your option) any later version.
|
|
13
|
+
*
|
|
14
|
+
* This program is distributed in the hope that it will be useful,
|
|
15
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17
|
+
* GNU General Public License for more details.
|
|
18
|
+
*
|
|
19
|
+
* You should have received a copy of the GNU General Public License
|
|
20
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
21
|
+
*/
|
|
22
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.getDisabledColor = exports.getDisabledTextColor = exports.getHoverColor = exports.getTextColorFromBackground = void 0;
|
|
27
|
+
const tinycolor2_1 = __importDefault(require("tinycolor2"));
|
|
28
|
+
const tokens_1 = __importDefault(require("@neo4j-ndl/base/lib/tokens/js/tokens"));
|
|
29
|
+
/**
|
|
30
|
+
* Takes a color string and returns color string
|
|
31
|
+
* that is readable on top of that background. Prioritizes pallete
|
|
32
|
+
* text colors and uses black or white as fallback.
|
|
33
|
+
*/
|
|
34
|
+
const getTextColorFromBackground = (color) => {
|
|
35
|
+
return tinycolor2_1.default
|
|
36
|
+
.mostReadable(color, [
|
|
37
|
+
tokens_1.default.palette.light.neutral.text.default,
|
|
38
|
+
tokens_1.default.palette.light.neutral.text.inverse,
|
|
39
|
+
], {
|
|
40
|
+
includeFallbackColors: true,
|
|
41
|
+
})
|
|
42
|
+
.toString();
|
|
43
|
+
};
|
|
44
|
+
exports.getTextColorFromBackground = getTextColorFromBackground;
|
|
45
|
+
/**
|
|
46
|
+
* Takes a color string and returns a color string
|
|
47
|
+
* that is darker or ligher depending on the given color.
|
|
48
|
+
*/
|
|
49
|
+
const getHoverColor = (color) => {
|
|
50
|
+
const hslColor = (0, tinycolor2_1.default)(color).toHsl();
|
|
51
|
+
if (hslColor.l < 0.5) {
|
|
52
|
+
return (0, tinycolor2_1.default)(color).lighten(10).toString();
|
|
53
|
+
}
|
|
54
|
+
return (0, tinycolor2_1.default)(color).darken(10).toString();
|
|
55
|
+
};
|
|
56
|
+
exports.getHoverColor = getHoverColor;
|
|
57
|
+
/**
|
|
58
|
+
* Returns the most readlabale color on the given background color
|
|
59
|
+
* as a string from a list of palette text colors
|
|
60
|
+
*/
|
|
61
|
+
const getDisabledTextColor = (backgroundColor) => {
|
|
62
|
+
//TODO: update to token when dark theme is available
|
|
63
|
+
//inverse of text.weaker color should probably be replaced by token
|
|
64
|
+
const inverseTextColor = '#8e887f';
|
|
65
|
+
return tinycolor2_1.default
|
|
66
|
+
.mostReadable(backgroundColor, [
|
|
67
|
+
inverseTextColor,
|
|
68
|
+
tokens_1.default.palette.light.neutral.text.weakest,
|
|
69
|
+
tokens_1.default.palette.light.neutral.text.weak,
|
|
70
|
+
tokens_1.default.palette.light.neutral.text.weaker,
|
|
71
|
+
])
|
|
72
|
+
.toString();
|
|
73
|
+
};
|
|
74
|
+
exports.getDisabledTextColor = getDisabledTextColor;
|
|
75
|
+
/**
|
|
76
|
+
* Takes a color string and returns a color string
|
|
77
|
+
* that is darker or ligher depending on the given color.
|
|
78
|
+
*/
|
|
79
|
+
const getDisabledColor = (color) => {
|
|
80
|
+
const hslColor = (0, tinycolor2_1.default)(color).toHsl();
|
|
81
|
+
if (hslColor.l < 0.5) {
|
|
82
|
+
return (0, tinycolor2_1.default)(color).lighten(15).toString();
|
|
83
|
+
}
|
|
84
|
+
return (0, tinycolor2_1.default)(color).darken(15).toString();
|
|
85
|
+
};
|
|
86
|
+
exports.getDisabledColor = getDisabledColor;
|
|
87
|
+
//# sourceMappingURL=color.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"color.js","sourceRoot":"","sources":["../../../src/graph-label/color.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;GAmBG;;;;;;AAEH,4DAAmC;AACnC,kFAA0D;AAE1D;;;;GAIG;AACI,MAAM,0BAA0B,GAAG,CAAC,KAAa,EAAU,EAAE;IAClE,OAAO,oBAAS;SACb,YAAY,CACX,KAAK,EACL;QACE,gBAAM,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO;QACzC,gBAAM,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO;KAC1C,EACD;QACE,qBAAqB,EAAE,IAAI;KAC5B,CACF;SACA,QAAQ,EAAE,CAAC;AAChB,CAAC,CAAC;AAbW,QAAA,0BAA0B,8BAarC;AAEF;;;GAGG;AACI,MAAM,aAAa,GAAG,CAAC,KAAa,EAAU,EAAE;IACrD,MAAM,QAAQ,GAAG,IAAA,oBAAS,EAAC,KAAK,CAAC,CAAC,KAAK,EAAE,CAAC;IAC1C,IAAI,QAAQ,CAAC,CAAC,GAAG,GAAG,EAAE;QACpB,OAAO,IAAA,oBAAS,EAAC,KAAK,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC;KAChD;IACD,OAAO,IAAA,oBAAS,EAAC,KAAK,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC;AAChD,CAAC,CAAC;AANW,QAAA,aAAa,iBAMxB;AAEF;;;GAGG;AACI,MAAM,oBAAoB,GAAG,CAAC,eAAuB,EAAU,EAAE;IACtE,oDAAoD;IACpD,mEAAmE;IACnE,MAAM,gBAAgB,GAAG,SAAS,CAAC;IACnC,OAAO,oBAAS;SACb,YAAY,CAAC,eAAe,EAAE;QAC7B,gBAAgB;QAChB,gBAAM,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO;QACzC,gBAAM,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI;QACtC,gBAAM,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM;KACzC,CAAC;SACD,QAAQ,EAAE,CAAC;AAChB,CAAC,CAAC;AAZW,QAAA,oBAAoB,wBAY/B;AAEF;;;GAGG;AACI,MAAM,gBAAgB,GAAG,CAAC,KAAa,EAAU,EAAE;IACxD,MAAM,QAAQ,GAAG,IAAA,oBAAS,EAAC,KAAK,CAAC,CAAC,KAAK,EAAE,CAAC;IAC1C,IAAI,QAAQ,CAAC,CAAC,GAAG,GAAG,EAAE;QACpB,OAAO,IAAA,oBAAS,EAAC,KAAK,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC;KAChD;IACD,OAAO,IAAA,oBAAS,EAAC,KAAK,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC;AAChD,CAAC,CAAC;AANW,QAAA,gBAAgB,oBAM3B"}
|
package/lib/cjs/index.js
CHANGED
|
@@ -57,4 +57,5 @@ __exportStar(require("./dropdown"), exports);
|
|
|
57
57
|
__exportStar(require("./tag"), exports);
|
|
58
58
|
__exportStar(require("./wizard"), exports);
|
|
59
59
|
__exportStar(require("./graph-label"), exports);
|
|
60
|
+
__exportStar(require("./code-block"), exports);
|
|
60
61
|
//# sourceMappingURL=index.js.map
|
package/lib/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;GAmBG;;;;;;;;;;;;;;;;AAEH,2CAAyB;AACzB,0CAAwB;AACxB,0CAAwB;AACxB,4CAA0B;AAC1B,6CAA2B;AAC3B,2CAAyB;AACzB,0CAAwB;AACxB,iDAA+B;AAC/B,2CAAyB;AACzB,0CAAwB;AACxB,oDAAkC;AAClC,yCAAuB;AACvB,kDAAgC;AAChC,4CAA0B;AAC1B,0CAAwB;AACxB,iDAA+B;AAC/B,0CAAwB;AACxB,kDAAgC;AAChC,+CAA6B;AAC7B,6CAA2B;AAC3B,wCAAsB;AACtB,2CAAyB;AACzB,gDAA8B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;GAmBG;;;;;;;;;;;;;;;;AAEH,2CAAyB;AACzB,0CAAwB;AACxB,0CAAwB;AACxB,4CAA0B;AAC1B,6CAA2B;AAC3B,2CAAyB;AACzB,0CAAwB;AACxB,iDAA+B;AAC/B,2CAAyB;AACzB,0CAAwB;AACxB,oDAAkC;AAClC,yCAAuB;AACvB,kDAAgC;AAChC,4CAA0B;AAC1B,0CAAwB;AACxB,iDAA+B;AAC/B,0CAAwB;AACxB,kDAAgC;AAChC,+CAA6B;AAC7B,6CAA2B;AAC3B,wCAAsB;AACtB,2CAAyB;AACzB,gDAA8B;AAC9B,+CAA6B"}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) "Neo4j"
|
|
5
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
6
|
+
*
|
|
7
|
+
* This file is part of Neo4j.
|
|
8
|
+
*
|
|
9
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
10
|
+
* it under the terms of the GNU General Public License as published by
|
|
11
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
12
|
+
* (at your option) any later version.
|
|
13
|
+
*
|
|
14
|
+
* This program is distributed in the hope that it will be useful,
|
|
15
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17
|
+
* GNU General Public License for more details.
|
|
18
|
+
*
|
|
19
|
+
* You should have received a copy of the GNU General Public License
|
|
20
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
21
|
+
*/
|
|
22
|
+
import ndlTokens from '@neo4j-ndl/base/lib/tokens/js/tokens';
|
|
23
|
+
import React, { useState } from 'react';
|
|
24
|
+
import classNames from 'classnames';
|
|
25
|
+
import { IconButton } from '../button';
|
|
26
|
+
import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter';
|
|
27
|
+
import { base16AteliersulphurpoolLight, coy, duotoneLight, ghcolors, prism, solarizedlight, vs, } from 'react-syntax-highlighter/dist/cjs/styles/prism';
|
|
28
|
+
export const CodeBlock = React.forwardRef(function CodeBlock({ as, code, language, showLineNumbers, theme, title, actions, disabled, }, ref) {
|
|
29
|
+
const Component = as || 'div';
|
|
30
|
+
const [isFocused, setIsFocused] = useState(false);
|
|
31
|
+
const getTheme = () => {
|
|
32
|
+
switch (theme) {
|
|
33
|
+
case 'vs':
|
|
34
|
+
return vs;
|
|
35
|
+
case 'base16-ateliersulphurpool.light':
|
|
36
|
+
return base16AteliersulphurpoolLight;
|
|
37
|
+
case 'coy':
|
|
38
|
+
return coy;
|
|
39
|
+
case 'duotone-light':
|
|
40
|
+
return duotoneLight;
|
|
41
|
+
case 'ghcolors':
|
|
42
|
+
return ghcolors;
|
|
43
|
+
case 'prism':
|
|
44
|
+
return prism;
|
|
45
|
+
case 'solarizedlight':
|
|
46
|
+
return solarizedlight;
|
|
47
|
+
default:
|
|
48
|
+
return vs;
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
const hasHeader = title || actions;
|
|
52
|
+
return (_jsxs(Component, Object.assign({ ref: ref, className: "ndl-code-block-container" }, { children: [hasHeader && (_jsxs("div", Object.assign({ className: classNames('ndl-code-block-title', {
|
|
53
|
+
disabled,
|
|
54
|
+
}) }, { children: [title && _jsx("h6", { children: title }), _jsx("div", { children: actions === null || actions === void 0 ? void 0 : actions.map((iconButtonProps, i) => (_jsx(IconButton, Object.assign({ clean: true, disabled: disabled }, iconButtonProps), i))) })] }))), _jsx("div", Object.assign({ className: classNames('highlight-wrapper', {
|
|
55
|
+
'has-header': hasHeader,
|
|
56
|
+
focused: isFocused,
|
|
57
|
+
}), role: "textbox", "aria-label": `${title} code-snippet`, tabIndex: 0, onFocus: () => {
|
|
58
|
+
setIsFocused(true);
|
|
59
|
+
}, onBlur: () => setIsFocused(false) }, { children: _jsx(SyntaxHighlighter, Object.assign({ language: language, style: Object.assign(Object.assign({}, getTheme()), { 'pre[class*="language-"]': {
|
|
60
|
+
color: ndlTokens.palette.light.neutral.text.weak,
|
|
61
|
+
backgroundColor: ndlTokens.colors.neutral[20],
|
|
62
|
+
background: ndlTokens.colors.neutral[20],
|
|
63
|
+
lineHeight: '1',
|
|
64
|
+
border: 0,
|
|
65
|
+
padding: '0 1em 1em 1em',
|
|
66
|
+
overflowX: 'auto',
|
|
67
|
+
overflowY: 'auto',
|
|
68
|
+
opacity: disabled ? 0.5 : 1,
|
|
69
|
+
} }),
|
|
70
|
+
// Turn on 'showLineNumbers' & 'wrapLongLines' at the same time, the display is wrong
|
|
71
|
+
// https://github.com/react-syntax-highlighter/react-syntax-highlighter/issues/402
|
|
72
|
+
// wrapLongLines
|
|
73
|
+
codeTagProps: { className: 'n-code' }, showLineNumbers: showLineNumbers }, { children: code })) }))] })));
|
|
74
|
+
});
|
|
75
|
+
//# sourceMappingURL=CodeBlock.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CodeBlock.js","sourceRoot":"","sources":["../../../src/code-block/CodeBlock.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Copyright (c) "Neo4j"
|
|
4
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Neo4j.
|
|
7
|
+
*
|
|
8
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU General Public License
|
|
19
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
export * from './CodeBlock';
|
|
22
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/code-block/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAEH,cAAc,aAAa,CAAC"}
|