Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
renderjs
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
Klaus Wölfel
renderjs
Commits
2c2efaf7
Commit
2c2efaf7
authored
Jun 10, 2013
by
Sven Franck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
convert mapUrl from pages to API function renderJs.mapUrl()
parent
5baa2b91
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
58 additions
and
107 deletions
+58
-107
renderjs.js
renderjs.js
+58
-107
No files found.
renderjs.js
View file @
2c2efaf7
...
@@ -489,13 +489,17 @@
...
@@ -489,13 +489,17 @@
};
};
// => interaction gadget and listener
// => interaction gadget and listener
// if initializing config is provided in the URL, we may have an src=[]
// TODO: how to extend to include external HTML pages/external methods
// of links to additional functional libraries (?), which should be
// available here. So we should load them.
priv
.
createServiceMap
=
function
(
spec
)
{
priv
.
createServiceMap
=
function
(
spec
)
{
var
rootSrc
=
(
spec
===
undefined
||
spec
.
_links
.
self
.
href
===
""
)
?
window
.
location
.
href
:
spec
.
_links
.
self
.
href
// create service object
that
.
gadgetService
=
{
that
.
gadgetService
=
{
"
root
"
:
spec
.
root
||
window
.
location
.
href
,
"
root
"
:
rootSrc
,
"
directories
"
:
spec
.
src
||
[],
// directories should be links to external HTML pages containing
// <links> with callable methods?
"
directories
"
:
[],
"
map
"
:
[]
"
map
"
:
[]
};
};
...
@@ -983,17 +987,10 @@
...
@@ -983,17 +987,10 @@
// => initialize
// => initialize
priv
.
initialize
=
function
()
{
priv
.
initialize
=
function
()
{
// both root and iFrame try to map location.search, either for initial
// check if root gadget URL has ?-configuration attached
// configuration or to retrieve the root when inside an iFrame
that
.
mapUrl
(
window
.
location
.
search
,
function
(
spec
)
{
var
spec
=
that
.
mapUrl
(
window
.
location
.
search
);
// create index
priv
.
createGadgetIndex
();
// create tree
priv
.
createGadgetTree
();
// all instances of renderJs should have an serviceMap
// all renderJs instances have a serviceMap = directory of available methods
priv
.
createServiceMap
(
spec
);
priv
.
createServiceMap
(
spec
);
// trigger => find HTML gadgets in root document
// trigger => find HTML gadgets in root document
...
@@ -1002,68 +999,55 @@
...
@@ -1002,68 +999,55 @@
// trigger => find HTML coded interactions in root document
// trigger => find HTML coded interactions in root document
priv
.
findServiceInHTML
(
spec
);
priv
.
findServiceInHTML
(
spec
);
// create index
priv
.
createGadgetIndex
();
// create tree
priv
.
createGadgetTree
();
},
true
);
// expose API
// expose API
window
.
renderJs
=
that
;
window
.
renderJs
=
that
;
};
};
// ================ public API (call on renderJs and $(elem) ===========
// => map data-URL internally
// => mapURL searchstring
priv
.
mapUrlInternal
=
function
(
queryString
)
{
that
.
mapUrl
=
function
(
spec
,
internal
)
{
var
dataUrl
=
queryString
.
slice
(
1
).
split
(
"
=
"
)[
1
];
var
key
,
obj
,
return
$
.
ajax
({
parsedJSON
,
configuration
=
{};
if
(
spec
!==
undefined
&&
spec
!==
""
)
{
obj
=
spec
.
slice
(
1
).
split
(
"
=
"
);
key
=
obj
[
0
];
switch
(
key
)
{
case
"
string
"
:
case
"
url
"
:
configuration
.
root
=
priv
.
decodeURI
(
obj
[
1
]);
break
;
case
"
json
"
:
parsedJSON
=
JSON
.
parse
(
priv
.
decodeURI
(
obj
[
1
]));
configuration
.
root
=
parsedJSON
.
root
||
window
.
location
.
pathname
;
configuration
.
src
=
priv
.
decodeURIArray
(
parsedJSON
.
src
)
||
[];
break
;
case
"
hal
"
:
parsedJSON
=
JSON
.
parse
(
priv
.
decodeURI
(
obj
[
1
]));
configuration
.
root
=
parsedJSON
.
_links
.
self
||
window
.
location
.
pathname
;
configuration
.
src
=
priv
.
decodeURIArray
(
parsedJSON
.
src
)
||
[];
break
;
case
"
file
"
:
$
.
ajax
({
method
:
'
GET
'
,
method
:
'
GET
'
,
url
:
obj
[
1
],
url
:
dataUrl
,
context
:
$
(
'
body
'
),
context
:
$
(
'
body
'
)
fail
:
function
(
jqXHR
,
textStatus
,
errorThrown
)
{
})
configuration
=
{
.
fail
(
function
(
jqXHR
,
textStatus
,
errorThrown
)
{
"
errorThrown
"
:
errorThrown
,
return
jqXHR
,
textStatus
,
errorThrown
;
"
textStatus
"
:
textStatus
,
})
"
jqXHR
"
:
jqXHR
.
then
(
function
(
value
,
textStatus
,
jqXHR
)
{
}
// preprocessing, if needed
},
return
value
,
textStatus
,
jqXHR
;
done
:
function
(
value
,
textStatus
,
jqXHR
)
{
configuration
=
{
"
value
"
:
value
,
"
textStatus
"
:
textStatus
,
"
jqXHR
"
:
jqXHR
}
}
});
});
break
;
};
default
:
// no allowable-type - ignore configuration-parameter!
// => "global" errorHandler
configuration
.
root
=
window
.
location
.
href
;
priv
.
errorHandler
=
function
(
message
,
internal
)
{
configuration
.
src
=
[];
return
(
internal
===
true
)
?
undefined
:
message
+
"
specified
"
,
"
405
"
,
{};
break
;
};
}
// ================ public API (call on renderJs and $(elem) ===========
// => public API to map a URL via Ajax and run the result through a callback
that
.
mapUrl
=
function
(
url
,
callback
,
internal
)
{
var
queryString
=
typeof
url
===
"
string
"
?
url
:
url
.
search
;
if
(
queryString
)
{
priv
.
mapUrlInternal
(
queryString
).
done
(
callback
?
callback
:
priv
.
errorHandler
(
"
no callback
"
,
internal
)
);
}
else
{
}
else
{
configuration
=
{
"
root
"
:
window
.
location
.
href
};
// we still need to run a callback, if only internally?
internal
?
(
callback
?
callback
()
:
priv
.
errorHandler
(
"
no callback
"
))
:
priv
.
errorHandler
(
"
no query parameter
"
)
}
}
return
configuration
;
};
};
// => publish a service to this instance (and root instance)
// => publish a service to this instance (and root instance)
...
@@ -1247,28 +1231,6 @@
...
@@ -1247,28 +1231,6 @@
// {command}/{method}/{scope}/{interaction}/
// {command}/{method}/{scope}/{interaction}/
var
internalRequest
=
priv
.
mapBrowserURL
(
this
.
url
);
var
internalRequest
=
priv
.
mapBrowserURL
(
this
.
url
);
if
(
internalRequest
.
command
===
"
call
"
)
{
// if (this.method === "POST") {
//
// } else {
// this.respond(405, {}, "");
// }
}
else
if
(
internalRequest
.
command
===
"
delegate
"
)
{
// if (this.method === "POST") {
//
// } else {
// this.respond(405, {}, "");
// }
}
else
if
(
internalRequest
.
command
===
"
request
"
)
{
// if (this.method === "POST") {
//
// } else {
// this.respond(405, {}, "");
// }
}
else
{
// this.respond(404, {}, "");
}
// =================== previous ====================
// =================== previous ====================
// localStorage handler
// localStorage handler
...
@@ -1389,17 +1351,6 @@
...
@@ -1389,17 +1351,6 @@
// still inside child frame
// still inside child frame
// add to tree, so lookup is possible when service is requested
// add to tree, so lookup is possible when service is requested
config
=
JSON
.
parse
(
this
.
requestBody
);
config
=
JSON
.
parse
(
this
.
requestBody
);
// // we don't need this here!
// // but first get the internal router to work, so we only
// // handle data-uris
// window.parent.postMessage({
// "type": "tree/update",
// "options": {
// "id": config.self,
// "src": config.src,
// "children": []
// }
// }, "*");
// generate a url to be called once the service is requested
// generate a url to be called once the service is requested
// this is a parent > child URL, so we delegate
// this is a parent > child URL, so we delegate
...
...
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