Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Knowledge Space WP Plugin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alg
Knowledge Space WP Plugin
Commits
d13b6851
Commit
d13b6851
authored
3 years ago
by
Maximilian Giller
Browse files
Options
Downloads
Patches
Plain Diff
Added select link menu
parent
a920bb74
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
editor/editor.php
+11
-0
11 additions, 0 deletions
editor/editor.php
editor/js/tools/menus/selectmenu.js
+22
-1
22 additions, 1 deletion
editor/js/tools/menus/selectmenu.js
with
33 additions
and
1 deletion
editor/editor.php
+
11
−
0
View file @
d13b6851
...
...
@@ -42,6 +42,17 @@
<textarea
id=
"node-videos"
name=
"node-videos"
></textarea>
</div>
<div
id=
"link-selected"
class=
"hidden"
>
<h3
id=
"link-name"
class=
"bottom-space"
>
aud1 ↔ Sortieren
</h3>
<label
for=
"link-type"
>
Type
</label>
<select
id=
"link-type"
name=
"node-type"
class=
"bottom-space medium-width"
>
<option
value=
"Vorlesung"
>
Vorlesung
</option>
<option
value=
"Algorithmus"
>
Algorithmus
</option>
<option
value=
"Definition"
>
Definition
</option>
<option
value=
"Beispiel"
>
Beispiel
</option>
<option
value=
"Übung"
>
Übung
</option>
<option
value=
"Kapitel"
>
Kapitel
</option>
</select>
</div>
</div>
</section>
...
...
This diff is collapsed.
Click to expand it.
editor/js/tools/menus/selectmenu.js
+
22
−
1
View file @
d13b6851
...
...
@@ -25,6 +25,13 @@ const NODE_MENU = [
NODE_VIDEOS_ID
,
];
const
LINK_NAME_CONNECTOR
=
"
→
"
;
const
LINK_NAME_ID
=
"
#link-name
"
;
const
LINK_TYPE_ID
=
"
#link-type
"
;
const
LINK_MENU
=
[
LINK_TYPE_ID
];
const
MENU
=
[...
NODE_MENU
,
...
LINK_MENU
];
export
class
SelectMenu
extends
ToolMenu
{
constructor
()
{
super
();
...
...
@@ -36,12 +43,13 @@ export class SelectMenu extends ToolMenu {
{
menu
:
NODE_TYPE_ID
,
property
:
Graph
.
NODE_TYPE
},
{
menu
:
NODE_REF_ID
,
property
:
Graph
.
NODE_REFERENCES
},
{
menu
:
NODE_VIDEOS_ID
,
property
:
Graph
.
NODE_VIDEOS
},
{
menu
:
LINK_TYPE_ID
,
property
:
Graph
.
LINK_TYPE
},
];
this
.
hooked
=
false
;
// Can only hook menu events once, but have to do it later, when they are loaded
}
hookMenu
()
{
NODE_
MENU
.
forEach
((
menu
)
=>
{
MENU
.
forEach
((
menu
)
=>
{
console
.
log
(
this
.
find
(
menu
));
// Subscribes to change event for each menu element
this
.
find
(
menu
).
on
(
"
change
"
,
(
e
)
=>
{
...
...
@@ -117,6 +125,7 @@ export class SelectMenu extends ToolMenu {
this
.
fillNode
(
value
);
this
.
setContext
(
CONTEXT
.
node
);
}
else
if
(
value
.
link
)
{
this
.
fillLink
(
value
);
this
.
setContext
(
CONTEXT
.
link
);
}
else
{
this
.
setContext
(
CONTEXT
.
nothing
);
...
...
@@ -128,4 +137,16 @@ export class SelectMenu extends ToolMenu {
this
.
find
(
menu
).
val
(
node
[
this
.
toProperty
(
menu
)]);
});
}
fillLink
(
link
)
{
var
sourceName
=
link
[
Graph
.
LINK_SOURCE
][
Graph
.
NODE_LABEL
];
var
targetName
=
link
[
Graph
.
LINK_TARGET
][
Graph
.
NODE_LABEL
];
this
.
find
(
LINK_NAME_ID
).
text
(
sourceName
+
LINK_NAME_CONNECTOR
+
targetName
);
LINK_MENU
.
forEach
((
menu
)
=>
{
this
.
find
(
menu
).
val
(
link
[
this
.
toProperty
(
menu
)]);
});
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment