<html>
<head>
<link href="http://code.jquery.com/mobile/latest/jquery.mobile.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/latest/jquery.mobile.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/knockout/2.2.1/knockout-min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/knockout.mapping/2.3.5/knockout.mapping.js"></script>
<title>SQL Developer Exchange Requests</title>
</head>
<script type="text/javascript">
var requests = "http://apex.oracle.com/pls/apex/dbtools/features/recent";
// When the page init's go load it up.
$(document).on("pageinit", "#requests", function() {
// attach to the before filter in the list
$( "#results" ).on( "listviewbeforefilter", function ( e, data ) {
// grab the value of the search field
var $ul = $( this ),
$input = $( data.input ),
value = $input.val();
// if blanked go back to the recent list
if ( value == '' ) {
loadRecent();
} else {
// debugging
console.log("Loading Search:"+value);
search(value);
}
});
loadRecent();
});
function loadRecent(){
console.log("Loading Recent Requests");
$.ajax({
url: requests ,
type: "GET",
success: function (data) {
// go apply the template to what was retreived
ko.applyBindings(data, document.getElementById("requests"));
// now refresh the element
$('#results').listview('refresh');
}
});
}
function search(search){
console.log("searching for '" + search + "'");
// out with the old
$("#results").children().remove();
// in with the new
$.ajax({
url: "http://apex.oracle.com/pls/apex/dbtools/features/search?text=" + search ,
type: "GET",
success: function (data) {
console.log(data);
if ( data.items.length == 0 ){ noResults();}
ko.applyBindings(data, document.getElementById("searchPage"));
$('#results').listview('refresh');
}
});
}
</script>
<!-- Knockout syntax for the template which is the list items -->
<script type="text/html" id="overview">
<li data-role="list-divider"><!--ko text: created_on --><!--/ko--><span class="ui-li-count ui-btn-up-c ui-btn-corner-all"><!--ko text: weight --><!--/ko--></span></li>
<!-- bind in the link to drill down to the exchange-->
<li> <a data-bind="attr: { href: 'https://apex.oracle.com/pls/apex/f?p=43135:7:0::NO::P7_ID:'+ id }" alt="">
<h2><!--ko text: title --><!--/ko--></h2>
<span data-bind="text: description"></span>
</li>
</script>
<body>
<div data-theme="a" data-role="page" data-inset="false" data-collapsed="false" id="requests">
<h3>25 Most Recent Requests</h3>
<div data-role="content" >
<!-- List item to be populated from the data-bind attribute that calls the template named overview -->
<ul id="results"
data-role="listview"
data-filter-placeholder="Search..."
data-inset="true"
data-filter="true"
data-autodividers="false"
data-bind="template: { name: 'overview', foreach: items}">
</ul>
</div>
</div>
</body>
</html>
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |