script.js 10.0 KB
Newer Older
J
Jason Park 已提交
1 2
$.ajaxSetup({cache: false, dataType: "text"});

J
Jason Park 已提交
3 4 5
$(document).on('click', 'a', function (e) {
    e.preventDefault();

J
Jason Park 已提交
6
    if (!window.open($(this).attr('href'), '_blank')) {
J
Jason Park 已提交
7 8 9 10
        alert('Please allow popups for this site');
    }
});

J
Jason Park 已提交
11
var $module_container = $('.module_container');
J
Jason Park 已提交
12 13 14 15 16 17 18 19 20 21
var _tracer = new Tracer();
var initEditor = function (id) {
    var editor = ace.edit(id);
    editor.setTheme("ace/theme/tomorrow_night_eighties");
    editor.session.setMode("ace/mode/javascript");
    editor.$blockScrolling = Infinity;
    return editor;
};
var dataEditor = initEditor('data');
var codeEditor = initEditor('code');
J
Jason Park 已提交
22
var lastDir = null;
J
Jason Park 已提交
23
dataEditor.on('change', function () {
J
Jason Park 已提交
24 25
    var data = dataEditor.getValue();
    if (lastDir) cachedFile[lastDir].data = data;
J
Jason Park 已提交
26
    try {
J
Jason Park 已提交
27
        eval(data);
J
Jason Park 已提交
28
        lastModule = tracer && tracer.module;
J
Jason Park 已提交
29 30 31 32 33
        _tracer = tracer;
    } catch (err) {
    }
    _tracer.reset();
});
J
Jason Park 已提交
34 35 36 37
codeEditor.on('change', function () {
    var code = codeEditor.getValue();
    if (lastDir) cachedFile[lastDir].code = code;
});
J
Jason Park 已提交
38

J
Jason Park 已提交
39
var cachedFile = {};
J
Jason Park 已提交
40
var loadFile = function (category, algorithm, file, explanation) {
J
tree  
Jason Park 已提交
41
    lastData = null;
J
Jason Park 已提交
42 43
    $('#explanation').html(explanation);

J
Jason Park 已提交
44 45 46 47 48 49 50 51 52 53
    var dir = lastDir = './algorithm/' + category + '/' + algorithm + '/' + file + '/';
    if (cachedFile[dir] && cachedFile[dir].data !== undefined && cachedFile[dir].code !== undefined) {
        dataEditor.setValue(cachedFile[dir].data, -1);
        codeEditor.setValue(cachedFile[dir].code, -1);
    } else {
        dataEditor.setValue('');
        codeEditor.setValue('');
        $.get(dir + 'data.js', function (data) {
            cachedFile[dir] = {data: data};
            dataEditor.setValue(data, -1);
J
Jason Park 已提交
54

J
Jason Park 已提交
55 56 57 58 59 60
            $.get(dir + 'code.js', function (code) {
                cachedFile[dir].code = code;
                codeEditor.setValue(code, -1);
            });
        }).fail(function (jqXHR, textStatus, errorThrown) {
            alert("AJAX call failed: " + textStatus + ", " + errorThrown);
J
Jason Park 已提交
61
        });
J
Jason Park 已提交
62
    }
J
Jason Park 已提交
63 64 65 66
};
var loadAlgorithm = function (category, algorithm) {
    $('#list > button').removeClass('active');
    $('[data-category="' + category + '"][data-algorithm="' + algorithm + '"]').addClass('active');
J
Jason Park 已提交
67
    $('#btn_desc').click();
J
Jason Park 已提交
68 69 70

    $('#category').text(list[category].name);
    $('#algorithm, #desc_title').text(list[category].list[algorithm]);
J
Jason Park 已提交
71
    $('#tab_desc > .wrapper').empty();
J
Jason Park 已提交
72 73
    $('.files_bar').empty();
    $('#explanation').html('');
J
Jason Park 已提交
74
    lastDir = null;
J
tree  
Jason Park 已提交
75
    dataEditor.setValue('');
J
Jason Park 已提交
76 77 78
    codeEditor.setValue('');

    var dir = './algorithm/' + category + '/' + algorithm + '/';
J
Jason Park 已提交
79
    $.getJSON(dir + 'desc.json', function (data) {
J
Jason Park 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
        var files = data.files;
        delete data.files;

        var $container = $('#tab_desc > .wrapper');
        $container.empty();
        for (var key in data) {
            if (key) $container.append($('<h3>').html(key));
            var value = data[key];
            if (typeof value === "string") {
                $container.append($('<p>').html(value));
            } else if (Array.isArray(value)) {
                var $ul = $('<ul>');
                $container.append($ul);
                value.forEach(function (li) {
                    $ul.append($('<li>').html(li));
                });
            } else if (typeof value === "object") {
                var $ul = $('<ul>');
                $container.append($ul);
                for (var prop in value) {
                    $ul.append($('<li>').append($('<strong>').html(prop)).append(' ' + value[prop]));
                }
            }
        }

J
Jason Park 已提交
105 106
        $('.files_bar').empty();
        var init = false;
J
Jason Park 已提交
107
        for (var file in files) {
J
Jason Park 已提交
108 109 110 111 112 113 114 115 116 117 118
            (function (file, explanation) {
                var $file = $('<button>').append(file).click(function () {
                    loadFile(category, algorithm, file, explanation);
                    $('.files_bar > button').removeClass('active');
                    $(this).addClass('active');
                });
                $('.files_bar').append($file);
                if (!init) {
                    init = true;
                    $file.click();
                }
J
Jason Park 已提交
119
            })(file, files[file]);
J
Jason Park 已提交
120 121 122 123 124 125 126 127 128
        }
    });
};
var list = {};
$.getJSON('./algorithm/category.json', function (data) {
    list = data;
    var init = false;
    for (var category in list) {
        (function (category) {
J
Jason Park 已提交
129
            var $category = $('<button class="category">').append(list[category].name);
J
Jason Park 已提交
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
            $('#list').append($category);
            var subList = list[category].list;
            for (var algorithm in subList) {
                (function (category, subList, algorithm) {
                    var $algorithm = $('<button class="indent">')
                        .append(subList[algorithm])
                        .attr('data-algorithm', algorithm)
                        .attr('data-category', category)
                        .click(function () {
                            loadAlgorithm(category, algorithm);
                        });
                    $('#list').append($algorithm);
                    if (!init) {
                        init = true;
                        $algorithm.click();
                    }
                })(category, subList, algorithm);
            }
        })(category);
    }
});

var sidemenu_percent;
$('#navigation').click(function () {
    var $sidemenu = $('.sidemenu');
    var $workspace = $('.workspace');
    $sidemenu.toggleClass('active');
    $('.nav-dropdown').toggleClass('fa-caret-down fa-caret-up');
    if ($sidemenu.hasClass('active')) {
        $sidemenu.css('right', (100 - sidemenu_percent) + '%');
        $workspace.css('left', sidemenu_percent + '%');
    } else {
        sidemenu_percent = $workspace.position().left / $('body').width() * 100;
        $sidemenu.css('right', 0);
        $workspace.css('left', 0);
    }
    _tracer.resize();
});

$('#btn_run').click(function () {
    try {
        eval(dataEditor.getValue());
J
Jason Park 已提交
172
        lastModule = tracer && tracer.module;
J
Jason Park 已提交
173 174 175 176 177
        _tracer = tracer;
        _tracer.reset();
        eval(codeEditor.getValue());
        _tracer.visualize();
    } catch (err) {
178
        console.error(err);
J
Jason Park 已提交
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
        var $toast = $('<div class="toast error">').append(err);
        $('.toast_container').append($toast);
        setTimeout(function () {
            $toast.fadeOut(function () {
                $toast.remove();
            });
        }, 3000);
    }
});
$('#btn_pause').click(function () {
    if (_tracer.isPause()) {
        _tracer.resumeStep();
    } else {
        _tracer.pauseStep();
    }
});
$('#btn_prev').click(function () {
    _tracer.pauseStep();
    _tracer.prevStep();
});
$('#btn_next').click(function () {
    _tracer.pauseStep();
    _tracer.nextStep();
});

J
Jason Park 已提交
204
$('#btn_desc').click(function () {
J
Jason Park 已提交
205
    $('.tab_container > .tab').removeClass('active');
J
Jason Park 已提交
206
    $('#tab_desc').addClass('active');
J
Jason Park 已提交
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
    $('.tab_bar > button').removeClass('active');
    $(this).addClass('active');
});
$('#btn_trace').click(function () {
    $('.tab_container > .tab').removeClass('active');
    $('#tab_trace').addClass('active');
    $('.tab_bar > button').removeClass('active');
    $(this).addClass('active');
});

$(window).resize(_tracer.resize);

var dividers = [
    ['v', $('.sidemenu'), $('.workspace')],
    ['v', $('.viewer_container'), $('.editor_container')],
J
Jason Park 已提交
222
    ['h', $('.module_container'), $('.tab_container')],
J
Jason Park 已提交
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
    ['h', $('.data_container'), $('.code_container')]
];
for (var i = 0; i < dividers.length; i++) {
    var divider = dividers[i];
    (function (divider) {
        var vertical = divider[0] == 'v';
        var $first = divider[1];
        var $second = divider[2];
        var $parent = $first.parent();
        var thickness = 5;

        var $divider = $('<div class="divider">');
        if (vertical) {
            $divider.addClass('vertical');
            var _left = -thickness / 2;
            $divider.css({
                top: 0,
                bottom: 0,
                left: _left,
                width: thickness
            });
            var x, dragging = false;
            $divider.mousedown(function (e) {
                x = e.pageX;
                dragging = true;
            });
            $(document).mousemove(function (e) {
                if (dragging) {
                    var new_left = $second.position().left + e.pageX - x;
                    var percent = new_left / $parent.width() * 100;
                    percent = Math.min(90, Math.max(10, percent));
                    $first.css('right', (100 - percent) + '%');
                    $second.css('left', percent + '%');
                    x = e.pageX;
                    _tracer.resize();
                }
            });
            $(document).mouseup(function (e) {
                dragging = false;
            });
        } else {
            $divider.addClass('horizontal');
            var _top = -thickness / 2;
            $divider.css({
                top: _top,
                height: thickness,
                left: 0,
                right: 0
            });
            var y, dragging = false;
            $divider.mousedown(function (e) {
                y = e.pageY;
                dragging = true;
            });
            $(document).mousemove(function (e) {
                if (dragging) {
                    var new_top = $second.position().top + e.pageY - y;
                    var percent = new_top / $parent.height() * 100;
                    percent = Math.min(90, Math.max(10, percent));
                    $first.css('bottom', (100 - percent) + '%');
                    $second.css('top', percent + '%');
                    y = e.pageY;
                    _tracer.resize();
                }
            });
            $(document).mouseup(function (e) {
                dragging = false;
            });
        }

        $second.append($divider);
    })(divider);
J
Jason Park 已提交
295 296 297 298 299 300 301 302 303 304 305 306 307 308
}

$module_container.mousedown(function (e) {
    _tracer.mousedown(e);
});
$module_container.mousemove(function (e) {
    _tracer.mousemove(e);
});
$(document).mouseup(function (e) {
    _tracer.mouseup(e);
});
$module_container.bind('DOMMouseScroll mousewheel', function (e) {
    _tracer.mousewheel(e);
});