"use strict";
var reader;
var id = document.location.pathname.split('/')[1];
var annotations = [];
var currentSelection;
var fontSize = parseInt(localStorage.epubFontSize || '100', 10)

Ox.load({
    'UI': {
        loadCSS: false
    }
}, function() {
    Ox.$parent.bindMessage(function(data, event) {
        console.log('got', event, 'data', data)
        if (event == 'selectAnnotation') {
            selectAnnotation(data.id)
            var annotation = annotations.filter(function(a) { return a.id == data.id })[0]
            if (annotation) {
                reader.rendition.display(annotation.cfiRange)
            }
        } else if (event == 'addAnnotations') {
            data.annotations.forEach(function(annotation) {
                annotations.push(annotation)
                renderAnnotation(annotation)
            })
        }
    })
})

function addAnnotation(annotation) {
    annotations.push(annotation)
    Ox.$parent.postMessage('addAnnotation', annotation)
}

function selectAnnotation(id) {
    $('.epubjs-hl.selected').each(function(i, g) {
        g.classList.remove('selected')
    })
    $('.epubjs-hl[data-id='+id+']').each(function(i, g) {
        g.classList.add('selected')
    })
}

function deselectAnnotation(id) {
    $('.epubjs-hl[data-id='+id+']').each(function(i, g) {
        g.classList.remove('selected')
    })
}

function removeAnnotation(a) {
    annotations = annotations.filter(function(annotation) {
        return annotation.cfiRange != a.dataset.epubcfi
    })
    reader.rendition.annotations.remove(a.dataset.epubcfi)
    Ox.$parent.postMessage('removeAnnotation', {id: a.dataset.id})
}

function renderAnnotation(annotation) {
    reader.rendition.annotations.highlight(annotation.cfiRange, {id: annotation.id}, onHighlightClicked);
}

function getText(book, cfiRange, cb) {
    book.getRange(cfiRange).then(function (range) {
        var text;
        if (range) {
            text = range.toString();
        }
        cb(text)
    })
}

function onHighlightClicked(e) {
    console.log("highlight clicked", e.target.dataset.epubcfi);
    if(e.target.classList.contains('selected')) {
        e.target.classList.remove('selected')
    } else {
        document.querySelectorAll('.epubjs-hl.selected').forEach(function(other) {
            other.classList.remove('selected')
        })
        e.target.classList.add('selected')
    }
}

document.onreadystatechange = function () {
    if (document.readyState == "complete") {
        EPUBJS.filePath = "/static/epub.js/js/libs/";
        EPUBJS.cssPath = "/static/epub.js/css/";
        EPUBJS.core.addCss('/static/css/epub.css')
        // fileStorage.filePath = EPUBJS.filePath;
        reader = ePubReader(document.location.pathname.replace(/\/reader\//, '/epub/'), {
            restore: true
        });
        var rendition = reader.rendition,
            book = reader.book;

        rendition.themes.fontSize(fontSize + "%");

        reader.rendition.on('keydown', function(event) {
            if (event.key == 'Delete') {
                document.querySelectorAll('.epubjs-hl.selected').forEach(function(a) {
                    removeAnnotation(a)
                })
            }
            if (event.key == 'n') {
                if (currentSelection) {
                    /*
                    var range = currentSelection.contents.window.getSelection().getRangeAt(0)
                    console.log(
                        currentSelection.cfiRange,
                        reader.rendition.book.section().cfiFromRange(range).toString()
                    )
                    //currentSelection.cfiRange = reader.rendition.book.section().cfiFromRange(range).toString()
                    */
                    renderAnnotation(currentSelection)
                    currentSelection.contents.window.getSelection().removeAllRanges();
                    delete currentSelection.contents
                    addAnnotation(currentSelection)
                    document.querySelectorAll('.epubjs-hl.selected').forEach(function(other) {
                        other.classList.remove('selected')
                    })
                    currentSelection = null
                }
            }
            if (event.keyCode == 61 && event.shiftKey) {
                fontSize += 10
                rendition.themes.fontSize(fontSize + "%");
                localStorage.epubFontSize = fontSize
                event.preventDefault()
            } else if (event.keyCode == 173 && event.shiftKey) {
                fontSize -= 10
                rendition.themes.fontSize(fontSize + "%");
                localStorage.epubFontSize = fontSize
                event.preventDefault()
            } else if (event.keyCode == 48 && event.shiftKey) {
                fontSize = 100
                rendition.themes.fontSize(fontSize + "%");
                localStorage.epubFontSize = fontSize
                event.preventDefault()
            }
            console.log(fontSize)
        })
        rendition.on("mark", function(cfiRange, contents) {
            console.log('!! mark', cfiRange)
        })
        rendition.on("selected", function(cfiRange, contents) {
            getText(book, cfiRange, function(text) {
                currentSelection = {
                    id: Ox.SHA1(cfiRange),
                    cfiRange: cfiRange,
                    text: text,
                    contents: contents
                }
            })
        });
    }
};