Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
75758abe
Commit
75758abe
authored
May 17, 2016
by
Oleg Korshul
Committed by
Alexander.Trofimov
May 19, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pluginManager
parent
4f4f0a1c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
291 additions
and
0 deletions
+291
-0
common/plugins.js
common/plugins.js
+291
-0
No files found.
common/plugins.js
0 → 100644
View file @
75758abe
(
function
(
window
,
undefined
){
var
EPluginDataType
=
{
none
:
0
,
text
:
1
,
ole
:
2
};
function
CPlugin
()
{
this
.
name
=
""
;
this
.
guid
=
""
;
this
.
url
=
""
;
this
.
icons
=
[
"
1x
"
,
"
2x
"
];
this
.
isVisual
=
false
;
this
.
initDataType
=
EPluginDataType
.
none
;
this
.
initData
=
""
;
this
.
isUpdateOleOnResize
=
false
;
this
.
buttons
=
[{
text
:
"
Ok
"
,
primary
:
true
},{
text
:
"
Cancel
"
,
primary
:
false
}];
}
function
CPluginsManager
()
{
this
.
plugins
=
[];
this
.
current
=
null
;
this
.
api
=
null
;
this
.
path
=
""
;
this
.
iframe
=
null
;
}
CPluginsManager
.
prototype
=
{
register
:
function
(
plugin
)
{
this
.
plugins
.
push
(
plugin
);
},
run
:
function
(
guid
,
data
)
{
if
(
null
!=
this
.
current
)
return
false
;
for
(
var
i
=
0
;
i
<
this
.
plugins
.
length
;
i
++
)
{
if
(
this
.
plugins
[
i
].
guid
==
guid
)
{
this
.
current
=
this
.
plugins
[
i
];
}
}
if
(
this
.
current
==
null
)
return
false
;
this
.
show
();
},
close
:
function
()
{
var
_div
=
document
.
getElementById
(
this
.
current
.
isVisual
?
"
id_plugin_modal
"
:
"
plugin_iframe
"
);
if
(
_div
)
_div
.
parentNode
.
removeChild
(
_div
);
this
.
current
=
null
;
},
show
:
function
()
{
if
(
this
.
current
.
isVisual
)
{
var
_div
=
""
+
"
<div class='header'>
"
+
"
<div class='tool close img-commonctrl' onclick='window.g_asc_plugins.buttonClick(-1);'></div>
"
+
"
<span class='title'>
"
+
this
.
current
.
name
+
"
</span>
"
+
"
</div>
"
+
"
<div class='body'>
"
+
"
<div id='id_body_plugin' class='box' style='height:615px;'>
"
+
"
<iframe id ='plugin_iframe' src='
"
+
this
.
path
+
this
.
current
.
url
+
"
' width='100%' height='100%' align='top' frameborder='0' name='frameEditor' allowfullscreen='' onmousewheel=''></iframe>
"
+
"
</div>
"
+
"
<div class='separator horizontal'></div>
"
+
"
<div class='footer' style='text-align: center;'>
"
;
for
(
var
i
=
0
;
i
<
this
.
current
.
buttons
.
length
;
i
++
)
{
_div
+=
"
<button id='plugin
"
+
(
i
+
1
)
+
"
' class='btn normal dlg-btn
"
;
if
(
this
.
current
.
buttons
[
i
].
primary
)
_div
+=
"
primary custom' style='margin-right: 10px;'
"
;
else
_div
+=
"
'
"
;
_div
+=
"
onclick='window.g_asc_plugins.buttonClick(
"
+
i
+
"
)'>
"
_div
+=
this
.
current
.
buttons
[
i
].
text
;
_div
+=
"
</button>
"
;
}
_div
+=
"
</div></div>
"
;
var
_new_div
=
document
.
createElement
(
"
div
"
);
_new_div
.
setAttribute
(
"
id
"
,
"
id_plugin_modal
"
);
_new_div
.
setAttribute
(
"
class
"
,
"
asc-window modal advanced-settings-dlg notransform
"
);
_new_div
.
setAttribute
(
"
style
"
,
"
width: 910px; height: 700px; left: 385px; top: 112px; transform: scale(1); opacity: 1; transition: opacity 0.2s, -webkit-transform 0.2s;
"
);
_new_div
.
innerHTML
=
_div
;
document
.
body
.
appendChild
(
_new_div
);
}
else
{
var
ifr
=
document
.
createElement
(
"
iframe
"
);
ifr
.
name
=
"
plugin_iframe
"
;
ifr
.
id
=
"
plugin_iframe
"
;
ifr
.
src
=
this
.
path
+
this
.
current
.
url
;
ifr
.
style
.
position
=
'
absolute
'
;
ifr
.
style
.
top
=
'
-100px
'
;
ifr
.
style
.
left
=
'
0px
'
;
ifr
.
style
.
width
=
'
10000px
'
;
ifr
.
style
.
height
=
'
100px
'
;
ifr
.
style
.
overflow
=
'
hidden
'
;
ifr
.
style
.
zIndex
=
-
1000
;
document
.
body
.
appendChild
(
ifr
);
}
},
buttonClick
:
function
(
id
)
{
var
_iframe
=
document
.
getElementById
(
"
plugin_iframe
"
);
if
(
_iframe
)
{
_iframe
.
contentWindow
.
postMessage
(
this
.
current
.
guid
+
"
;button;
"
+
id
,
"
*
"
);
}
},
init
:
function
()
{
var
_data
=
""
;
switch
(
this
.
current
.
initDataType
)
{
case
EPluginDataType
.
text
:
{
var
text_data
=
{
data
:
""
,
pushData
:
function
(
format
,
value
)
{
this
.
data
=
value
;
}
};
this
.
api
.
asc_CheckCopy
(
text_data
,
1
);
_data
=
text_data
.
data
;
break
;
}
case
EPluginDataType
.
ole
:
{
_data
=
""
;
// TODO:
break
;
}
}
var
_iframe
=
document
.
getElementById
(
"
plugin_iframe
"
);
if
(
_iframe
)
{
_iframe
.
contentWindow
.
postMessage
(
this
.
current
.
guid
+
"
;init;
"
+
_data
,
"
*
"
);
}
},
test
:
function
()
{
this
.
api
=
window
.
editor
;
this
.
path
=
"
../../../../sdkjs-plugins/
"
;
var
plugin1
=
new
CPlugin
();
plugin1
.
name
=
"
chess (fen)
"
;
plugin1
.
guid
=
"
{FFE1F462-1EA2-4391-990D-4CC84940B754}
"
;
plugin1
.
url
=
"
chess/index.html
"
;
plugin1
.
icons
=
[
"
1x
"
,
"
2x
"
];
plugin1
.
isVisual
=
true
;
plugin1
.
initDataType
=
EPluginDataType
.
ole
;
plugin1
.
isUpdateOleOnResize
=
true
;
plugin1
.
buttons
=
[{
text
:
"
Ok
"
,
primary
:
true
},{
text
:
"
Cancel
"
,
primary
:
false
}];
var
plugin2
=
new
CPlugin
();
plugin2
.
name
=
"
glavred
"
;
plugin2
.
guid
=
"
{B631E142-E40B-4B4C-90B9-2D00222A286E}
"
;
plugin2
.
url
=
"
glavred/index.html
"
;
plugin2
.
icons
=
[
"
1x
"
,
"
2x
"
];
plugin2
.
isVisual
=
true
;
plugin2
.
initDataType
=
EPluginDataType
.
text
;
plugin2
.
isUpdateOleOnResize
=
false
;
plugin2
.
buttons
=
[{
text
:
"
Ok
"
,
primary
:
true
}];
var
plugin3
=
new
CPlugin
();
plugin3
.
name
=
"
bold
"
;
plugin3
.
guid
=
"
{14E46CC2-5E56-429C-9D55-1032B596D928}
"
;
plugin3
.
url
=
"
bold/index.html
"
;
plugin3
.
icons
=
[
"
1x
"
,
"
2x
"
];
plugin3
.
isVisual
=
false
;
plugin3
.
initDataType
=
EPluginDataType
.
none
;
plugin3
.
isUpdateOleOnResize
=
false
;
plugin3
.
buttons
=
[];
this
.
register
(
plugin1
);
this
.
register
(
plugin2
);
this
.
register
(
plugin3
);
// добавляем кнопки (тест)
var
_elem
=
document
.
getElementById
(
"
view-left-menu
"
).
childNodes
[
1
];
for
(
var
i
=
0
;
i
<
3
;
i
++
)
{
var
_guid
=
""
;
switch
(
i
)
{
case
0
:
_guid
=
plugin1
.
guid
;
break
;
case
1
:
_guid
=
plugin2
.
guid
;
break
;
case
2
:
_guid
=
plugin3
.
guid
;
break
;
default
:
break
;
}
var
_button
=
"
<button class='btn btn-category' content-target='' data-toggle='tooltip' data-original-title='' title=''
"
+
"
onclick='window.g_asc_plugins.run(
\"
"
+
_guid
+
"
\"
)'><span>
"
+
(
i
+
1
)
+
"
</span></button>
"
;
_elem
.
innerHTML
+=
_button
;
}
}
};
function
onMessage
(
event
)
{
if
(
!
window
.
g_asc_plugins
.
current
)
return
;
if
(
typeof
(
event
.
data
)
==
"
string
"
)
{
var
i1
=
event
.
data
.
indexOf
(
"
;
"
);
if
(
-
1
==
i1
)
return
;
var
guid
=
event
.
data
.
substr
(
0
,
i1
);
if
(
guid
!=
window
.
g_asc_plugins
.
current
.
guid
)
return
;
var
i2
=
event
.
data
.
indexOf
(
"
;
"
,
i1
+
1
);
if
(
-
1
==
i2
)
return
;
var
name
=
event
.
data
.
substr
(
i1
+
1
,
i2
-
i1
-
1
);
var
value
=
event
.
data
.
substr
(
i2
+
1
);
if
(
"
initialize
"
==
name
)
{
window
.
g_asc_plugins
.
init
();
return
;
}
else
if
(
"
close
"
==
name
)
{
if
(
value
!=
""
)
{
try
{
eval
(
value
);
}
catch
(
err
)
{
}
}
window
.
g_asc_plugins
.
close
();
}
}
}
if
(
window
.
addEventListener
)
{
window
.
addEventListener
(
"
message
"
,
onMessage
,
false
);
}
else
{
window
.
attachEvent
(
"
onmessage
"
,
onMessage
);
}
window
.
asc_EPluginDataType
=
EPluginDataType
;
window
.
asc_CPlugin
=
CPlugin
;
window
.
g_asc_plugins
=
new
CPluginsManager
();
})(
window
,
undefined
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment