Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F9582809
action.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
766 B
Referenced Files
None
Subscribers
None
action.js
View Options
"use strict"
;
const
locreq
=
require
(
"locreq"
)(
__dirname
);
const
SubjectPath
=
locreq
(
"lib/data-structures/subject-path.js"
);
const
RootSubject
=
locreq
(
"lib/subject/predefined-subjects/root-subject.js"
);
const
Promise
=
require
(
"bluebird"
);
function
Action
(
subject_path
,
action_name
){
this
.
subject_path
=
new
SubjectPath
(
subject_path
);
this
.
action_name
=
action_name
;
}
Action
.
prototype
.
perform
=
Action
.
prototype
.
run
=
function
(
context
){
const
self
=
this
;
const
args
=
Array
.
prototype
.
slice
.
call
(
arguments
,
1
);
return
Promise
.
try
(
function
(){
return
RootSubject
.
get_subject
(
self
.
subject_path
)
.
then
(
function
(
subject
){
return
subject
.
perform_action
.
apply
(
subject
,
[
context
,
self
.
action_name
].
concat
(
args
));
});
});
};
module
.
exports
=
Action
;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Oct 11, 07:49 (1 d, 7 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
984000
Default Alt Text
action.js (766 B)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment