Initial Commit
This commit is contained in:
commit
bbb0a2f580
126 changed files with 14189 additions and 0 deletions
167
static/js/cayley_main.js
Normal file
167
static/js/cayley_main.js
Normal file
|
|
@ -0,0 +1,167 @@
|
|||
// Copyright 2014 The Cayley Authors. All rights reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
$(function() {
|
||||
s = null;
|
||||
group = null;
|
||||
Snap.load("/static/cayley.svg", function(d, err) {
|
||||
//Snap(105,65).append(d);
|
||||
s = Snap("#logo").append(d);
|
||||
svg = Snap("svg");
|
||||
var c = svg.selectAll("*")
|
||||
group = svg.group()
|
||||
group.add(c)
|
||||
scale = new Snap.Matrix();
|
||||
scale.scale(0.5);
|
||||
group.transform(scale)
|
||||
})
|
||||
|
||||
neutralColor = "#999999"
|
||||
green = "#0F9D58"
|
||||
|
||||
stopAndReset = function () {
|
||||
for (var i = 0; i < 19; i++) {
|
||||
group[i].stop()
|
||||
}
|
||||
for (var i = 0; i < currentTimeouts.length; i++) {
|
||||
clearTimeout(currentTimeouts[i])
|
||||
}
|
||||
currentTimeouts = []
|
||||
group[17].attr({fill: neutralColor})
|
||||
group[18].attr({fill: neutralColor})
|
||||
for (var i = 1; i < 11; i++) {
|
||||
group[i].attr({stroke: neutralColor})
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
currentTimeouts = []
|
||||
|
||||
flash = function(elem, start) {
|
||||
currentTimeouts.push(
|
||||
setTimeout(function() { elem.animate({stroke: green}, 1000)}, start * 1000))
|
||||
currentTimeouts.push(
|
||||
setTimeout(function() { elem.animate({stroke: neutralColor}, 1200)}, (start + 1) * 1000))
|
||||
}
|
||||
|
||||
animate = function() {
|
||||
group[17].animate({fill: green}, 1000)
|
||||
currentTimeouts.push(
|
||||
setTimeout(function() {group[17].animate({fill: neutralColor}, 1200)}, 1000))
|
||||
flash(group[1], 0.5)
|
||||
flash(group[8], 1.0)
|
||||
flash(group[4], 1.5)
|
||||
flash(group[10], 1.0)
|
||||
flash(group[6], 1.5)
|
||||
flash(group[2], 2.0)
|
||||
currentTimeouts.push(
|
||||
setTimeout(function() {group[18].animate({fill: green}, 1000)}, 2500))
|
||||
currentTimeouts.push(
|
||||
setTimeout(function() {group[18].animate({fill: neutralColor}, 1200)}, 3500))
|
||||
currentTimeouts.push(
|
||||
setTimeout(function() {group[17].animate({fill: green}, 1000)}, 3500))
|
||||
currentTimeouts.push(
|
||||
setTimeout(function() {group[17].animate({fill: neutralColor}, 1200)}, 4500))
|
||||
flash(group[1], 4.0)
|
||||
flash(group[7], 4.5)
|
||||
flash(group[5], 5.0)
|
||||
flash(group[9], 4.5)
|
||||
flash(group[3], 5.0)
|
||||
flash(group[2], 5.5)
|
||||
currentTimeouts.push(
|
||||
setTimeout(function() {group[18].animate({fill: green}, 1000)}, 6000))
|
||||
currentTimeouts.push(
|
||||
setTimeout(function() {group[18].animate({fill: neutralColor}, 1200, function() {
|
||||
stopAndReset();
|
||||
animate();
|
||||
})}, 7000))
|
||||
}
|
||||
|
||||
if ($("#code").length != 0) {
|
||||
editor = CodeMirror.fromTextArea(document.getElementById("code"), {
|
||||
lineNumbers: true,
|
||||
matchBrackets: true,
|
||||
continueComments: "Enter",
|
||||
// extraKeys: {"Ctrl-Q": "toggleComment"}
|
||||
});
|
||||
} else{
|
||||
editor = null;
|
||||
}
|
||||
|
||||
var defaultQueryStrings = {
|
||||
"gremlin": "g.Emit('Hello World')",
|
||||
"mql": "[{\n \"id\": \"Hello World\"\n}]"
|
||||
}
|
||||
|
||||
var getLastQueryStringFor = function(type) {
|
||||
if (typeof(Storage) !== "undefined") {
|
||||
return localStorage.getItem("cayleySavedQueries" + type)
|
||||
} else {
|
||||
return defaultQueryStrings[type]
|
||||
}
|
||||
}
|
||||
|
||||
var switchTo = function(type) {
|
||||
if (type === "gremlin") { switchToGremlin()}
|
||||
if (type === "mql") { switchToMQL()}
|
||||
if (typeof(Storage) !== "undefined") {
|
||||
localStorage.setItem("cayleyQueryLang", type);
|
||||
}
|
||||
if (editor) {
|
||||
editor.setValue(getLastQueryStringFor(type))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
var switchToGremlin = function () {
|
||||
$("#selected-query-lang").html("Gremlin " + caretSpan)
|
||||
selectedQueryLanguage = "gremlin"
|
||||
}
|
||||
|
||||
var switchToMQL = function() {
|
||||
$("#selected-query-lang").html("MQL" + caretSpan)
|
||||
selectedQueryLanguage = "mql"
|
||||
}
|
||||
|
||||
selectedQueryLanguage = "gremlin"
|
||||
var caretSpan = "   <span class='caret'></span>"
|
||||
|
||||
if (typeof(Storage) !== "undefined") {
|
||||
savedQueries = localStorage.getItem("cayleySavedQueriesmql");
|
||||
if (savedQueries === null) {
|
||||
for (var key in defaultQueryStrings) {
|
||||
localStorage.setItem("cayleySavedQueries" + key, defaultQueryStrings[key])
|
||||
}
|
||||
}
|
||||
lang = localStorage.getItem("cayleyQueryLang");
|
||||
if (lang !== null) {
|
||||
switchTo(lang)
|
||||
} else {
|
||||
switchTo("gremlin")
|
||||
}
|
||||
} else {
|
||||
switchTo("gremlin")
|
||||
}
|
||||
|
||||
|
||||
$("#gremlin-dropdown").click(function() {
|
||||
switchTo("gremlin")
|
||||
})
|
||||
|
||||
$("#mql-dropdown").click(function() {
|
||||
switchTo("mql")
|
||||
})
|
||||
});
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue