-
-
Notifications
You must be signed in to change notification settings - Fork 883
/
Copy pathjsmind.option.js
78 lines (73 loc) · 2.08 KB
/
jsmind.option.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**
* @license BSD
* @copyright 2014-2025 [email protected]
*
* Project Home:
* https://github.com/hizzgdev/jsmind/
*/
import { util } from './jsmind.util.js';
const default_options = {
container: '', // id of the container
editable: false, // you can change it in your options
theme: null,
mode: 'full', // full or side
support_html: true,
log_level: 'info',
view: {
engine: 'canvas',
enable_device_pixel_ratio: false,
hmargin: 100,
vmargin: 50,
line_width: 2,
line_color: '#555',
line_style: 'curved', // [straight | curved]
draggable: false, // drag the mind map with your mouse, when it's larger that the container
hide_scrollbars_when_draggable: false, // hide container scrollbars, when mind map is larger than container and draggable option is true.
node_overflow: 'hidden', // [hidden | wrap]
zoom: {
min: 0.5,
max: 2.1,
step: 0.1,
mask_key: 4096,
},
custom_node_render: null,
expander_style: 'char', // [char | number]
},
layout: {
hspace: 30,
vspace: 20,
pspace: 13,
cousin_space: 0,
},
default_event_handle: {
enable_mousedown_handle: true,
enable_click_handle: true,
enable_dblclick_handle: true,
enable_mousewheel_handle: true,
},
shortcut: {
enable: true,
handles: {},
mapping: {
addchild: [45, 4096 + 13], // Insert, Ctrl+Enter
addbrother: 13, // Enter
editnode: 113, // F2
delnode: 46, // Delete
toggle: 32, // Space
left: 37, // Left
up: 38, // Up
right: 39, // Right
down: 40, // Down
},
},
plugin: {},
};
export function merge_option(options) {
var opts = {};
util.json.merge(opts, default_options);
util.json.merge(opts, options);
if (!opts.container) {
throw new Error('the options.container should not be null or empty.');
}
return opts;
}