diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..a882442 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..05173e9 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,4 @@ +src/assets/js/agent.js +src/assets/js/clippy.js +src/assets/js/jquery.min.js +src/assets/js/web-storage-object.js diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..5606113 --- /dev/null +++ b/.eslintrc @@ -0,0 +1,29 @@ +{ + "env": { + "browser": true, + "es6": true, + "jest": true + }, + "extends": [ + "airbnb-base" + ], + "globals": { + "Atomics": "readonly", + "SharedArrayBuffer": "readonly", + "browser": true, + "chrome": "readonly", + "clippy": "readonly", + "webStorageObject": "readonly" + }, + "parserOptions": { + "ecmaVersion": 2018 + }, + "rules": { + "no-console": "off", + "global-require": "off", + "semi": "off", + "comma-dangle": "off", + "import/no-dynamic-require": "off", + "indent": ["error", 4] + } +} diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..0719d81 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +10.3.0 diff --git a/__tests__/.eslintrc b/__tests__/.eslintrc new file mode 100644 index 0000000..5bc113a --- /dev/null +++ b/__tests__/.eslintrc @@ -0,0 +1,11 @@ +{ + "extends": "../.eslintrc", + "globals": { + "jest": true, + "clippyController": "readonly" + }, + "rules": { + "no-debugger": "off", + "no-console": "off" + } +} diff --git a/__tests__/index.test.js b/__tests__/index.test.js new file mode 100644 index 0000000..2ec14c6 --- /dev/null +++ b/__tests__/index.test.js @@ -0,0 +1,208 @@ +const createBrowser = () => { + browser = { + runtime: { + sendMessage() {}, + onMessage: { + addListener(listener) { + this.listener = listener + } + } + } + } +} + +const dictionary = { + localhost: 'It works! Good job!', + twitter: 'Tweets can only be 280 characters long!', + github: 'Need lessons in Python?', + quora: [ + '????????????????', + 'What is my purpose?' + ] +} + +const createAgent = () => ({ + isActive: false, + play(animation, length, callback) { + this.animation = animation + this.animationLength = length + this.callback = callback + + if (typeof this.callback === 'function') { + this.callback() + } + }, + stop() {}, + show() { + this.isActive = true + }, + hide() { + this.isActive = false + }, + speak(comment) { + this.comment = comment + } +}) + +beforeEach(() => { + createBrowser() + require('../src/index') +}) + +afterEach(() => { + jest.resetModules() +}) + +test('agent init', () => { + const agent = createAgent() + clippyController.init(agent) + + expect(clippyController.agent).not.toBeNull() +}) + +it('should check active status on init', () => { + browser.runtime.sendMessage = (message, callback) => { + if (message.name === 'isActive') { + callback({ value: true }) + } + } + + const agent = createAgent() + clippyController.init(agent) + + expect(clippyController.agent.isActive).toBe(true) +}) + +it('should respect off switch on init', () => { + browser.runtime.sendMessage = (message, callback) => { + if (message.name === 'isActive') { + callback({ value: false }) + } + } + + const agent = createAgent() + clippyController.init(agent) + + expect(clippyController.agent.isActive).toBe(false) +}) + +it('should prefetch comments on init', () => { + expect.assertions(2) + let commentsMessage + browser.runtime.sendMessage = (message) => { + if (message.name === 'comments') { + commentsMessage = message + browser.runtime.onMessage.listener({ name: 'comments', value: dictionary }) + } + } + + const agent = createAgent() + clippyController.init(agent) + + expect(commentsMessage).toEqual({ name: 'comments' }) + expect(clippyController.comments).toEqual(dictionary) +}) + +it('should talk', () => { + delete global.window.location + global.window.location = { + hostname: 'github' + } + + const agent = createAgent() + clippyController.init(agent) + clippyController.comments = dictionary + clippyController.talk() + + expect(clippyController.lastComment).toEqual(dictionary.github) +}) + +test('pick random comment', () => { + delete global.window.location + global.window.location = { + hostname: 'quora' + } + + const agent = createAgent() + clippyController.init(agent) + clippyController.comments = dictionary + clippyController.talk() + + expect(dictionary.quora).toContain(clippyController.lastComment) +}) + +it('should send idle message', () => { + let idleMessage + browser.runtime.sendMessage = (message) => { + if (message.name === 'idle') { + idleMessage = message + } + } + + clippyController.idle() + + expect(idleMessage).toEqual({ name: 'idle' }) +}) + +test('animation trigger', () => { + expect.assertions(3) + const animations = ['Congratulate', 'LookRight', 'SendMail', 'Thinking'] + + const agent = createAgent() + clippyController.init(agent) + clippyController.animations = animations + clippyController.animate(() => {}) + + expect(clippyController.animations).toContain(agent.animation) + expect(agent.animationLength).toEqual(5000) + expect(agent.callback).toBeDefined() +}) + +test('isActive listener', () => { + expect.assertions(2) + + const agent = createAgent() + clippyController.init(agent) + + browser.runtime.onMessage.listener({ name: 'isActive', value: true }) + + expect(agent.isActive).toBe(true) + + browser.runtime.onMessage.listener({ name: 'isActive', value: false }) + + expect(agent.isActive).toBe(false) +}) + +test('comments listener', () => { + const agent = createAgent() + clippyController.init(agent) + + browser.runtime.onMessage.listener({ name: 'comments', value: dictionary }) + + expect(clippyController.comments).toEqual(dictionary) +}) + +test('animate listener', () => { + expect.assertions(2) + + const agent = createAgent() + clippyController.init(agent) + + browser.runtime.sendMessage = (message, callback) => { + if (message.name === 'isActive') { + callback({ value: false }) + } + } + browser.runtime.onMessage.listener({ name: 'animate' }) + + expect(agent.animation).toBeUndefined() + + browser.runtime.sendMessage = (message, callback) => { + if (message.name === 'isActive') { + callback({ value: true }) + } + } + browser.runtime.onMessage.listener({ name: 'animate' }) + + expect(agent.animation).toBeDefined() +}) diff --git a/__tests__/state.test.js b/__tests__/state.test.js new file mode 100644 index 0000000..be6d3f6 --- /dev/null +++ b/__tests__/state.test.js @@ -0,0 +1,210 @@ +window.webStorageObject = require('../src/assets/js/web-storage-object') + +const tabs = [ + { + id: 1 + }, + { + id: 2 + }, + { + id: 3 + } +] + +const createBrowser = () => { + browser = { + runtime: { + onMessage: { + addListener(listener) { + this.listener = listener + } + }, + onMessageExternal: { + addListener(listener) { + this.listener = listener + } + }, + getManifest() { + return { + version: 2 + } + } + }, + tabs: { + sendMessage() {}, + query(options, callback) { + if (options.active && options.currentWindow) { + callback([tabs[0]]) + } + + callback([...tabs]) + }, + }, + browserAction: { + setIcon() {}, + onClicked: { + addListener(listener) { + this.listener = listener + } + } + } + } +} + +const dictionary = { + localhost: 'It works! Good job!', + twitter: 'Tweets can only be 280 characters long!', + github: 'Need lessons in Python?', + quora: [ + '????????????????', + 'What is my purpose?' + ] +} + +beforeEach(() => { + createBrowser() + require('../src/assets/js/state') +}) + +afterEach(() => { + jest.resetModules() + localStorage.removeItem('settings') +}) + +describe('Responds to messages', () => { + test('isActive listener', () => { + expect.assertions(2) + + browser.runtime.onMessage.listener({ name: 'isActive' }, {}, (response) => { + expect(response).toEqual({ + name: 'isActive', + value: true + }) + }) + + window.settings.isActive = false + + browser.runtime.onMessage.listener({ name: 'isActive' }, {}, (response) => { + expect(response).toEqual({ + name: 'isActive', + value: false + }) + }) + }) + + test('comments listener', () => { + function XMLHttpRequest() { + return { + send() { + if (typeof this.onreadystatechange() === 'function') { + this.onreadystatechange() + } + }, + open() { + this.readyState = 4 + this.status = 200 + this.response = JSON.stringify(dictionary) + } + } + } + global.XMLHttpRequest = XMLHttpRequest + + browser.runtime.onMessage.listener({ name: 'comments' }) + + expect(window.settings.comments).toEqual(dictionary) + }) + + test('idle listener', () => { + expect.assertions(4) + jest.useFakeTimers() + let lastId + let lastMessage + browser.tabs.sendMessage = (id, message) => { + if (message.name === 'animate') { + lastId = id + lastMessage = message + } + } + + window.settings.isActive = false + browser.runtime.onMessage.listener({ name: 'idle' }) + jest.runAllTimers() + + expect(lastId).toBeUndefined() + expect(lastMessage).toBeUndefined() + + window.settings.isActive = true + browser.runtime.onMessage.listener({ name: 'idle' }) + jest.runAllTimers() + + expect(lastId).toEqual(1) + expect(lastMessage).toEqual({ + name: 'animate', + value: true + }) + }) +}) + +describe('Toolbar controls are working', () => { + it('should toggle button icons on click', () => { + expect.assertions(tabs.length * 2) + + browser.browserAction.setIcon = (payload) => { + expect(payload.path).toBeDefined() + expect(payload.tabId).toBeDefined() + } + + browser.browserAction.onClicked.listener() + }) + + it('should toggle isActive status on click', () => { + expect.assertions(tabs.length * 2) + window.settings.isActive = true + + browser.tabs.sendMessage = (tabId, message) => { + expect(tabId).toBeDefined() + expect(message).toEqual({ + name: 'isActive', + value: false + }) + } + + browser.browserAction.onClicked.listener() + }) +}) + +describe('Responds to external messages', () => { + test('connect listener', () => { + window.settings.isActive = true + + browser.runtime.onMessageExternal.listener({ name: 'WHAT_IS_THE_MEANING_OF_LIFE' }, {}, (response) => { + expect(response).toEqual({ + name: 'SILENCE_MY_BROTHER', + value: { + installed: true, + isActive: true, + version: 2 + } + }) + }) + }) + + test('toggle listener', () => { + window.settings.isActive = true + + browser.runtime.onMessageExternal.listener({ name: 'RISE' }, {}, (response) => { + expect(response).toEqual({ + name: 'SILENCE_MY_BROTHER', + value: false + }) + }) + + browser.runtime.onMessageExternal.listener({ name: 'RISE' }, {}, (response) => { + expect(response).toEqual({ + name: 'SILENCE_MY_BROTHER', + value: true + }) + }) + }) +}) diff --git a/coverage/clover.xml b/coverage/clover.xml new file mode 100644 index 0000000..f68b0b8 --- /dev/null +++ b/coverage/clover.xml @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/coverage/coverage-final.json b/coverage/coverage-final.json new file mode 100644 index 0000000..eb07830 --- /dev/null +++ b/coverage/coverage-final.json @@ -0,0 +1,3 @@ +{"/Users/javert/work-work/clippy/src/index.js": {"path":"/Users/javert/work-work/clippy/src/index.js","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":61}},"1":{"start":{"line":3,"column":25},"end":{"line":78,"column":1}},"2":{"start":{"line":9,"column":8},"end":{"line":9,"column":26}},"3":{"start":{"line":10,"column":8},"end":{"line":10,"column":34}},"4":{"start":{"line":12,"column":8},"end":{"line":17,"column":10}},"5":{"start":{"line":13,"column":12},"end":{"line":16,"column":13}},"6":{"start":{"line":14,"column":16},"end":{"line":14,"column":55}},"7":{"start":{"line":15,"column":16},"end":{"line":15,"column":39}},"8":{"start":{"line":20,"column":29},"end":{"line":20,"column":44}},"9":{"start":{"line":21,"column":29},"end":{"line":21,"column":31}},"10":{"start":{"line":23,"column":8},"end":{"line":31,"column":10}},"11":{"start":{"line":24,"column":12},"end":{"line":30,"column":13}},"12":{"start":{"line":25,"column":16},"end":{"line":29,"column":17}},"13":{"start":{"line":26,"column":20},"end":{"line":26,"column":83}},"14":{"start":{"line":28,"column":20},"end":{"line":28,"column":64}},"15":{"start":{"line":33,"column":8},"end":{"line":46,"column":9}},"16":{"start":{"line":34,"column":32},"end":{"line":36,"column":32}},"17":{"start":{"line":38,"column":12},"end":{"line":43,"column":13}},"18":{"start":{"line":39,"column":16},"end":{"line":39,"column":45}},"19":{"start":{"line":40,"column":16},"end":{"line":40,"column":46}},"20":{"start":{"line":42,"column":16},"end":{"line":42,"column":39}},"21":{"start":{"line":45,"column":12},"end":{"line":45,"column":29}},"22":{"start":{"line":49,"column":30},"end":{"line":49,"column":79}},"23":{"start":{"line":51,"column":8},"end":{"line":53,"column":9}},"24":{"start":{"line":52,"column":12},"end":{"line":52,"column":110}},"25":{"start":{"line":55,"column":8},"end":{"line":55,"column":25}},"26":{"start":{"line":57,"column":8},"end":{"line":63,"column":9}},"27":{"start":{"line":58,"column":12},"end":{"line":60,"column":14}},"28":{"start":{"line":59,"column":16},"end":{"line":59,"column":49}},"29":{"start":{"line":62,"column":12},"end":{"line":62,"column":45}},"30":{"start":{"line":66,"column":8},"end":{"line":66,"column":57}},"31":{"start":{"line":69,"column":8},"end":{"line":69,"column":53}},"32":{"start":{"line":72,"column":8},"end":{"line":76,"column":9}},"33":{"start":{"line":80,"column":0},"end":{"line":84,"column":9}},"34":{"start":{"line":81,"column":4},"end":{"line":83,"column":6}},"35":{"start":{"line":82,"column":8},"end":{"line":82,"column":36}},"36":{"start":{"line":86,"column":0},"end":{"line":118,"column":2}},"37":{"start":{"line":87,"column":4},"end":{"line":117,"column":5}},"38":{"start":{"line":89,"column":8},"end":{"line":89,"column":46}},"39":{"start":{"line":91,"column":8},"end":{"line":93,"column":9}},"40":{"start":{"line":92,"column":12},"end":{"line":92,"column":35}},"41":{"start":{"line":94,"column":8},"end":{"line":94,"column":13}},"42":{"start":{"line":96,"column":8},"end":{"line":96,"column":49}},"43":{"start":{"line":97,"column":8},"end":{"line":97,"column":13}},"44":{"start":{"line":99,"column":8},"end":{"line":101,"column":9}},"45":{"start":{"line":100,"column":12},"end":{"line":100,"column":18}},"46":{"start":{"line":103,"column":8},"end":{"line":103,"column":46}},"47":{"start":{"line":105,"column":8},"end":{"line":113,"column":10}},"48":{"start":{"line":106,"column":12},"end":{"line":112,"column":13}},"49":{"start":{"line":107,"column":16},"end":{"line":107,"column":45}},"50":{"start":{"line":108,"column":16},"end":{"line":108,"column":39}},"51":{"start":{"line":109,"column":16},"end":{"line":111,"column":18}},"52":{"start":{"line":110,"column":20},"end":{"line":110,"column":43}},"53":{"start":{"line":114,"column":8},"end":{"line":114,"column":13}},"54":{"start":{"line":116,"column":8},"end":{"line":116,"column":13}},"55":{"start":{"line":120,"column":0},"end":{"line":120,"column":42}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":8,"column":4},"end":{"line":8,"column":5}},"loc":{"start":{"line":8,"column":16},"end":{"line":18,"column":5}},"line":8},"1":{"name":"(anonymous_1)","decl":{"start":{"line":12,"column":58},"end":{"line":12,"column":59}},"loc":{"start":{"line":12,"column":72},"end":{"line":17,"column":9}},"line":12},"2":{"name":"(anonymous_2)","decl":{"start":{"line":19,"column":4},"end":{"line":19,"column":5}},"loc":{"start":{"line":19,"column":11},"end":{"line":47,"column":5}},"line":19},"3":{"name":"(anonymous_3)","decl":{"start":{"line":23,"column":43},"end":{"line":23,"column":44}},"loc":{"start":{"line":23,"column":57},"end":{"line":31,"column":9}},"line":23},"4":{"name":"(anonymous_4)","decl":{"start":{"line":48,"column":4},"end":{"line":48,"column":5}},"loc":{"start":{"line":48,"column":18},"end":{"line":64,"column":5}},"line":48},"5":{"name":"(anonymous_5)","decl":{"start":{"line":58,"column":45},"end":{"line":58,"column":46}},"loc":{"start":{"line":58,"column":51},"end":{"line":60,"column":13}},"line":58},"6":{"name":"(anonymous_6)","decl":{"start":{"line":65,"column":4},"end":{"line":65,"column":5}},"loc":{"start":{"line":65,"column":26},"end":{"line":67,"column":5}},"line":65},"7":{"name":"(anonymous_7)","decl":{"start":{"line":68,"column":4},"end":{"line":68,"column":5}},"loc":{"start":{"line":68,"column":11},"end":{"line":70,"column":5}},"line":68},"8":{"name":"(anonymous_8)","decl":{"start":{"line":71,"column":4},"end":{"line":71,"column":5}},"loc":{"start":{"line":71,"column":22},"end":{"line":77,"column":5}},"line":71},"9":{"name":"(anonymous_9)","decl":{"start":{"line":80,"column":32},"end":{"line":80,"column":33}},"loc":{"start":{"line":80,"column":38},"end":{"line":84,"column":1}},"line":80},"10":{"name":"(anonymous_10)","decl":{"start":{"line":81,"column":26},"end":{"line":81,"column":27}},"loc":{"start":{"line":81,"column":37},"end":{"line":83,"column":5}},"line":81},"11":{"name":"(anonymous_11)","decl":{"start":{"line":86,"column":38},"end":{"line":86,"column":39}},"loc":{"start":{"line":86,"column":51},"end":{"line":118,"column":1}},"line":86},"12":{"name":"(anonymous_12)","decl":{"start":{"line":105,"column":58},"end":{"line":105,"column":59}},"loc":{"start":{"line":105,"column":72},"end":{"line":113,"column":9}},"line":105},"13":{"name":"(anonymous_13)","decl":{"start":{"line":109,"column":41},"end":{"line":109,"column":42}},"loc":{"start":{"line":109,"column":47},"end":{"line":111,"column":17}},"line":109}},"branchMap":{"0":{"loc":{"start":{"line":1,"column":10},"end":{"line":1,"column":61}},"type":"binary-expr","locations":[{"start":{"line":1,"column":10},"end":{"line":1,"column":26}},{"start":{"line":1,"column":30},"end":{"line":1,"column":44}},{"start":{"line":1,"column":48},"end":{"line":1,"column":61}}],"line":1},"1":{"loc":{"start":{"line":13,"column":12},"end":{"line":16,"column":13}},"type":"if","locations":[{"start":{"line":13,"column":12},"end":{"line":16,"column":13}},{"start":{"line":13,"column":12},"end":{"line":16,"column":13}}],"line":13},"2":{"loc":{"start":{"line":24,"column":12},"end":{"line":30,"column":13}},"type":"if","locations":[{"start":{"line":24,"column":12},"end":{"line":30,"column":13}},{"start":{"line":24,"column":12},"end":{"line":30,"column":13}}],"line":24},"3":{"loc":{"start":{"line":25,"column":16},"end":{"line":29,"column":17}},"type":"if","locations":[{"start":{"line":25,"column":16},"end":{"line":29,"column":17}},{"start":{"line":25,"column":16},"end":{"line":29,"column":17}}],"line":25},"4":{"loc":{"start":{"line":33,"column":8},"end":{"line":46,"column":9}},"type":"if","locations":[{"start":{"line":33,"column":8},"end":{"line":46,"column":9}},{"start":{"line":33,"column":8},"end":{"line":46,"column":9}}],"line":33},"5":{"loc":{"start":{"line":34,"column":32},"end":{"line":36,"column":32}},"type":"cond-expr","locations":[{"start":{"line":35,"column":18},"end":{"line":35,"column":83}},{"start":{"line":36,"column":18},"end":{"line":36,"column":32}}],"line":34},"6":{"loc":{"start":{"line":38,"column":12},"end":{"line":43,"column":13}},"type":"if","locations":[{"start":{"line":38,"column":12},"end":{"line":43,"column":13}},{"start":{"line":38,"column":12},"end":{"line":43,"column":13}}],"line":38},"7":{"loc":{"start":{"line":51,"column":8},"end":{"line":53,"column":9}},"type":"if","locations":[{"start":{"line":51,"column":8},"end":{"line":53,"column":9}},{"start":{"line":51,"column":8},"end":{"line":53,"column":9}}],"line":51},"8":{"loc":{"start":{"line":52,"column":45},"end":{"line":52,"column":110}},"type":"cond-expr","locations":[{"start":{"line":52,"column":94},"end":{"line":52,"column":101}},{"start":{"line":52,"column":104},"end":{"line":52,"column":110}}],"line":52},"9":{"loc":{"start":{"line":52,"column":45},"end":{"line":52,"column":91}},"type":"binary-expr","locations":[{"start":{"line":52,"column":45},"end":{"line":52,"column":50}},{"start":{"line":52,"column":54},"end":{"line":52,"column":91}}],"line":52},"10":{"loc":{"start":{"line":57,"column":8},"end":{"line":63,"column":9}},"type":"if","locations":[{"start":{"line":57,"column":8},"end":{"line":63,"column":9}},{"start":{"line":57,"column":8},"end":{"line":63,"column":9}}],"line":57},"11":{"loc":{"start":{"line":87,"column":4},"end":{"line":117,"column":5}},"type":"switch","locations":[{"start":{"line":88,"column":4},"end":{"line":94,"column":13}},{"start":{"line":95,"column":4},"end":{"line":97,"column":13}},{"start":{"line":98,"column":4},"end":{"line":114,"column":13}},{"start":{"line":115,"column":4},"end":{"line":116,"column":13}}],"line":87},"12":{"loc":{"start":{"line":91,"column":8},"end":{"line":93,"column":9}},"type":"if","locations":[{"start":{"line":91,"column":8},"end":{"line":93,"column":9}},{"start":{"line":91,"column":8},"end":{"line":93,"column":9}}],"line":91},"13":{"loc":{"start":{"line":99,"column":8},"end":{"line":101,"column":9}},"type":"if","locations":[{"start":{"line":99,"column":8},"end":{"line":101,"column":9}},{"start":{"line":99,"column":8},"end":{"line":101,"column":9}}],"line":99},"14":{"loc":{"start":{"line":106,"column":12},"end":{"line":112,"column":13}},"type":"if","locations":[{"start":{"line":106,"column":12},"end":{"line":112,"column":13}},{"start":{"line":106,"column":12},"end":{"line":112,"column":13}}],"line":106}},"s":{"0":11,"1":11,"2":10,"3":10,"4":10,"5":2,"6":1,"7":1,"8":3,"9":3,"10":3,"11":8,"12":2,"13":1,"14":1,"15":3,"16":2,"17":2,"18":2,"19":2,"20":0,"21":1,"22":3,"23":3,"24":0,"25":3,"26":3,"27":1,"28":1,"29":2,"30":12,"31":4,"32":2,"33":11,"34":0,"35":0,"36":11,"37":6,"38":2,"39":2,"40":1,"41":2,"42":2,"43":2,"44":2,"45":0,"46":2,"47":2,"48":2,"49":1,"50":1,"51":1,"52":1,"53":2,"54":0,"55":11},"f":{"0":10,"1":2,"2":3,"3":8,"4":3,"5":1,"6":12,"7":4,"8":2,"9":0,"10":0,"11":6,"12":2,"13":1},"b":{"0":[11,11,0],"1":[1,1],"2":[2,6],"3":[1,1],"4":[2,1],"5":[2,0],"6":[2,0],"7":[0,3],"8":[0,0],"9":[0,0],"10":[1,2],"11":[2,2,2,0],"12":[1,1],"13":[0,2],"14":[1,1]},"_coverageSchema":"43e27e138ebf9cfc5966b082cf9a028302ed4184","hash":"9934a70157a934d5b49ee1792b6364054c677359"} +,"/Users/javert/work-work/clippy/src/assets/js/state.js": {"path":"/Users/javert/work-work/clippy/src/assets/js/state.js","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":61}},"1":{"start":{"line":3,"column":17},"end":{"line":10,"column":1}},"2":{"start":{"line":12,"column":17},"end":{"line":12,"column":22}},"3":{"start":{"line":13,"column":27},"end":{"line":13,"column":141}},"4":{"start":{"line":13,"column":33},"end":{"line":13,"column":141}},"5":{"start":{"line":14,"column":21},"end":{"line":36,"column":1}},"6":{"start":{"line":15,"column":18},"end":{"line":15,"column":38}},"7":{"start":{"line":16,"column":4},"end":{"line":16,"column":49}},"8":{"start":{"line":18,"column":4},"end":{"line":34,"column":5}},"9":{"start":{"line":19,"column":8},"end":{"line":33,"column":9}},"10":{"start":{"line":20,"column":12},"end":{"line":20,"column":58}},"11":{"start":{"line":22,"column":12},"end":{"line":32,"column":14}},"12":{"start":{"line":23,"column":16},"end":{"line":31,"column":18}},"13":{"start":{"line":24,"column":20},"end":{"line":30,"column":21}},"14":{"start":{"line":35,"column":4},"end":{"line":35,"column":16}},"15":{"start":{"line":37,"column":19},"end":{"line":47,"column":1}},"16":{"start":{"line":38,"column":21},"end":{"line":38,"column":84}},"17":{"start":{"line":39,"column":4},"end":{"line":46,"column":6}},"18":{"start":{"line":49,"column":19},"end":{"line":57,"column":1}},"19":{"start":{"line":50,"column":4},"end":{"line":56,"column":5}},"20":{"start":{"line":59,"column":21},"end":{"line":68,"column":1}},"21":{"start":{"line":60,"column":4},"end":{"line":60,"column":42}},"22":{"start":{"line":62,"column":4},"end":{"line":67,"column":6}},"23":{"start":{"line":63,"column":8},"end":{"line":66,"column":10}},"24":{"start":{"line":64,"column":12},"end":{"line":64,"column":35}},"25":{"start":{"line":65,"column":12},"end":{"line":65,"column":35}},"26":{"start":{"line":70,"column":0},"end":{"line":70,"column":57}},"27":{"start":{"line":72,"column":0},"end":{"line":117,"column":2}},"28":{"start":{"line":73,"column":4},"end":{"line":114,"column":5}},"29":{"start":{"line":75,"column":8},"end":{"line":79,"column":10}},"30":{"start":{"line":76,"column":12},"end":{"line":78,"column":13}},"31":{"start":{"line":77,"column":16},"end":{"line":77,"column":35}},"32":{"start":{"line":81,"column":8},"end":{"line":86,"column":9}},"33":{"start":{"line":87,"column":8},"end":{"line":87,"column":13}},"34":{"start":{"line":89,"column":8},"end":{"line":89,"column":22}},"35":{"start":{"line":90,"column":8},"end":{"line":90,"column":13}},"36":{"start":{"line":92,"column":8},"end":{"line":110,"column":9}},"37":{"start":{"line":93,"column":12},"end":{"line":109,"column":24}},"38":{"start":{"line":94,"column":16},"end":{"line":96,"column":17}},"39":{"start":{"line":95,"column":20},"end":{"line":95,"column":26}},"40":{"start":{"line":98,"column":16},"end":{"line":108,"column":18}},"41":{"start":{"line":99,"column":20},"end":{"line":107,"column":21}},"42":{"start":{"line":100,"column":24},"end":{"line":106,"column":25}},"43":{"start":{"line":111,"column":8},"end":{"line":111,"column":13}},"44":{"start":{"line":113,"column":8},"end":{"line":113,"column":13}},"45":{"start":{"line":116,"column":4},"end":{"line":116,"column":15}},"46":{"start":{"line":119,"column":0},"end":{"line":145,"column":2}},"47":{"start":{"line":120,"column":21},"end":{"line":120,"column":50}},"48":{"start":{"line":122,"column":4},"end":{"line":142,"column":5}},"49":{"start":{"line":124,"column":8},"end":{"line":131,"column":10}},"50":{"start":{"line":132,"column":8},"end":{"line":132,"column":13}},"51":{"start":{"line":134,"column":8},"end":{"line":134,"column":22}},"52":{"start":{"line":135,"column":8},"end":{"line":138,"column":10}},"53":{"start":{"line":139,"column":8},"end":{"line":139,"column":13}},"54":{"start":{"line":141,"column":8},"end":{"line":141,"column":13}},"55":{"start":{"line":144,"column":4},"end":{"line":144,"column":15}},"56":{"start":{"line":147,"column":0},"end":{"line":147,"column":26}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":13,"column":27},"end":{"line":13,"column":28}},"loc":{"start":{"line":13,"column":33},"end":{"line":13,"column":141}},"line":13},"1":{"name":"(anonymous_1)","decl":{"start":{"line":14,"column":21},"end":{"line":14,"column":22}},"loc":{"start":{"line":14,"column":27},"end":{"line":36,"column":1}},"line":14},"2":{"name":"(anonymous_2)","decl":{"start":{"line":18,"column":31},"end":{"line":18,"column":32}},"loc":{"start":{"line":18,"column":37},"end":{"line":34,"column":5}},"line":18},"3":{"name":"(anonymous_3)","decl":{"start":{"line":22,"column":35},"end":{"line":22,"column":36}},"loc":{"start":{"line":22,"column":45},"end":{"line":32,"column":13}},"line":22},"4":{"name":"(anonymous_4)","decl":{"start":{"line":23,"column":29},"end":{"line":23,"column":30}},"loc":{"start":{"line":23,"column":45},"end":{"line":31,"column":17}},"line":23},"5":{"name":"(anonymous_5)","decl":{"start":{"line":37,"column":19},"end":{"line":37,"column":20}},"loc":{"start":{"line":37,"column":28},"end":{"line":47,"column":1}},"line":37},"6":{"name":"(anonymous_6)","decl":{"start":{"line":49,"column":19},"end":{"line":49,"column":20}},"loc":{"start":{"line":49,"column":28},"end":{"line":57,"column":1}},"line":49},"7":{"name":"(anonymous_7)","decl":{"start":{"line":59,"column":21},"end":{"line":59,"column":22}},"loc":{"start":{"line":59,"column":27},"end":{"line":68,"column":1}},"line":59},"8":{"name":"(anonymous_8)","decl":{"start":{"line":62,"column":27},"end":{"line":62,"column":28}},"loc":{"start":{"line":62,"column":37},"end":{"line":67,"column":5}},"line":62},"9":{"name":"(anonymous_9)","decl":{"start":{"line":63,"column":21},"end":{"line":63,"column":22}},"loc":{"start":{"line":63,"column":37},"end":{"line":66,"column":9}},"line":63},"10":{"name":"(anonymous_10)","decl":{"start":{"line":72,"column":38},"end":{"line":72,"column":39}},"loc":{"start":{"line":72,"column":73},"end":{"line":117,"column":1}},"line":72},"11":{"name":"(anonymous_11)","decl":{"start":{"line":75,"column":66},"end":{"line":75,"column":67}},"loc":{"start":{"line":75,"column":76},"end":{"line":79,"column":9}},"line":75},"12":{"name":"(anonymous_12)","decl":{"start":{"line":93,"column":23},"end":{"line":93,"column":24}},"loc":{"start":{"line":93,"column":29},"end":{"line":109,"column":13}},"line":93},"13":{"name":"(anonymous_13)","decl":{"start":{"line":98,"column":74},"end":{"line":98,"column":75}},"loc":{"start":{"line":98,"column":84},"end":{"line":108,"column":17}},"line":98},"14":{"name":"(anonymous_14)","decl":{"start":{"line":119,"column":46},"end":{"line":119,"column":47}},"loc":{"start":{"line":119,"column":81},"end":{"line":145,"column":1}},"line":119}},"branchMap":{"0":{"loc":{"start":{"line":1,"column":10},"end":{"line":1,"column":61}},"type":"binary-expr","locations":[{"start":{"line":1,"column":10},"end":{"line":1,"column":26}},{"start":{"line":1,"column":30},"end":{"line":1,"column":44}},{"start":{"line":1,"column":48},"end":{"line":1,"column":61}}],"line":1},"1":{"loc":{"start":{"line":19,"column":8},"end":{"line":33,"column":9}},"type":"if","locations":[{"start":{"line":19,"column":8},"end":{"line":33,"column":9}},{"start":{"line":19,"column":8},"end":{"line":33,"column":9}}],"line":19},"2":{"loc":{"start":{"line":19,"column":12},"end":{"line":19,"column":58}},"type":"binary-expr","locations":[{"start":{"line":19,"column":12},"end":{"line":19,"column":34}},{"start":{"line":19,"column":38},"end":{"line":19,"column":58}}],"line":19},"3":{"loc":{"start":{"line":38,"column":50},"end":{"line":38,"column":82}},"type":"cond-expr","locations":[{"start":{"line":38,"column":70},"end":{"line":38,"column":72}},{"start":{"line":38,"column":75},"end":{"line":38,"column":82}}],"line":38},"4":{"loc":{"start":{"line":73,"column":4},"end":{"line":114,"column":5}},"type":"switch","locations":[{"start":{"line":74,"column":4},"end":{"line":87,"column":13}},{"start":{"line":88,"column":4},"end":{"line":90,"column":13}},{"start":{"line":91,"column":4},"end":{"line":111,"column":13}},{"start":{"line":112,"column":4},"end":{"line":113,"column":13}}],"line":73},"5":{"loc":{"start":{"line":76,"column":12},"end":{"line":78,"column":13}},"type":"if","locations":[{"start":{"line":76,"column":12},"end":{"line":78,"column":13}},{"start":{"line":76,"column":12},"end":{"line":78,"column":13}}],"line":76},"6":{"loc":{"start":{"line":92,"column":8},"end":{"line":110,"column":9}},"type":"if","locations":[{"start":{"line":92,"column":8},"end":{"line":110,"column":9}},{"start":{"line":92,"column":8},"end":{"line":110,"column":9}}],"line":92},"7":{"loc":{"start":{"line":94,"column":16},"end":{"line":96,"column":17}},"type":"if","locations":[{"start":{"line":94,"column":16},"end":{"line":96,"column":17}},{"start":{"line":94,"column":16},"end":{"line":96,"column":17}}],"line":94},"8":{"loc":{"start":{"line":99,"column":20},"end":{"line":107,"column":21}},"type":"if","locations":[{"start":{"line":99,"column":20},"end":{"line":107,"column":21}},{"start":{"line":99,"column":20},"end":{"line":107,"column":21}}],"line":99},"9":{"loc":{"start":{"line":122,"column":4},"end":{"line":142,"column":5}},"type":"switch","locations":[{"start":{"line":123,"column":4},"end":{"line":132,"column":13}},{"start":{"line":133,"column":4},"end":{"line":139,"column":13}},{"start":{"line":140,"column":4},"end":{"line":141,"column":13}}],"line":122},"10":{"loc":{"start":{"line":128,"column":26},"end":{"line":128,"column":52}},"type":"binary-expr","locations":[{"start":{"line":128,"column":26},"end":{"line":128,"column":43}},{"start":{"line":128,"column":47},"end":{"line":128,"column":52}}],"line":128},"11":{"loc":{"start":{"line":137,"column":19},"end":{"line":137,"column":45}},"type":"binary-expr","locations":[{"start":{"line":137,"column":19},"end":{"line":137,"column":36}},{"start":{"line":137,"column":40},"end":{"line":137,"column":45}}],"line":137}},"s":{"0":7,"1":7,"2":7,"3":7,"4":1,"5":7,"6":1,"7":1,"8":1,"9":1,"10":1,"11":1,"12":1,"13":3,"14":1,"15":7,"16":16,"17":16,"18":7,"19":12,"20":7,"21":4,"22":4,"23":4,"24":12,"25":12,"26":7,"27":7,"28":5,"29":2,"30":4,"31":4,"32":2,"33":2,"34":1,"35":1,"36":2,"37":1,"38":1,"39":0,"40":1,"41":2,"42":2,"43":2,"44":0,"45":5,"46":7,"47":3,"48":3,"49":1,"50":1,"51":2,"52":2,"53":2,"54":0,"55":3,"56":7},"f":{"0":1,"1":1,"2":1,"3":1,"4":3,"5":16,"6":12,"7":4,"8":4,"9":12,"10":5,"11":4,"12":1,"13":2,"14":3},"b":{"0":[7,7,0],"1":[1,0],"2":[1,1],"3":[5,11],"4":[2,1,2,0],"5":[4,0],"6":[1,1],"7":[0,1],"8":[2,0],"9":[1,2,0],"10":[1,0],"11":[2,1]},"_coverageSchema":"43e27e138ebf9cfc5966b082cf9a028302ed4184","hash":"2d8fb6925bade847fec83c95fa59d77f31255311"} +} diff --git a/coverage/lcov-report/base.css b/coverage/lcov-report/base.css new file mode 100644 index 0000000..f418035 --- /dev/null +++ b/coverage/lcov-report/base.css @@ -0,0 +1,224 @@ +body, html { + margin:0; padding: 0; + height: 100%; +} +body { + font-family: Helvetica Neue, Helvetica, Arial; + font-size: 14px; + color:#333; +} +.small { font-size: 12px; } +*, *:after, *:before { + -webkit-box-sizing:border-box; + -moz-box-sizing:border-box; + box-sizing:border-box; + } +h1 { font-size: 20px; margin: 0;} +h2 { font-size: 14px; } +pre { + font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace; + margin: 0; + padding: 0; + -moz-tab-size: 2; + -o-tab-size: 2; + tab-size: 2; +} +a { color:#0074D9; text-decoration:none; } +a:hover { text-decoration:underline; } +.strong { font-weight: bold; } +.space-top1 { padding: 10px 0 0 0; } +.pad2y { padding: 20px 0; } +.pad1y { padding: 10px 0; } +.pad2x { padding: 0 20px; } +.pad2 { padding: 20px; } +.pad1 { padding: 10px; } +.space-left2 { padding-left:55px; } +.space-right2 { padding-right:20px; } +.center { text-align:center; } +.clearfix { display:block; } +.clearfix:after { + content:''; + display:block; + height:0; + clear:both; + visibility:hidden; + } +.fl { float: left; } +@media only screen and (max-width:640px) { + .col3 { width:100%; max-width:100%; } + .hide-mobile { display:none!important; } +} + +.quiet { + color: #7f7f7f; + color: rgba(0,0,0,0.5); +} +.quiet a { opacity: 0.7; } + +.fraction { + font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; + font-size: 10px; + color: #555; + background: #E8E8E8; + padding: 4px 5px; + border-radius: 3px; + vertical-align: middle; +} + +div.path a:link, div.path a:visited { color: #333; } +table.coverage { + border-collapse: collapse; + margin: 10px 0 0 0; + padding: 0; +} + +table.coverage td { + margin: 0; + padding: 0; + vertical-align: top; +} +table.coverage td.line-count { + text-align: right; + padding: 0 5px 0 20px; +} +table.coverage td.line-coverage { + text-align: right; + padding-right: 10px; + min-width:20px; +} + +table.coverage td span.cline-any { + display: inline-block; + padding: 0 5px; + width: 100%; +} +.missing-if-branch { + display: inline-block; + margin-right: 5px; + border-radius: 3px; + position: relative; + padding: 0 4px; + background: #333; + color: yellow; +} + +.skip-if-branch { + display: none; + margin-right: 10px; + position: relative; + padding: 0 4px; + background: #ccc; + color: white; +} +.missing-if-branch .typ, .skip-if-branch .typ { + color: inherit !important; +} +.coverage-summary { + border-collapse: collapse; + width: 100%; +} +.coverage-summary tr { border-bottom: 1px solid #bbb; } +.keyline-all { border: 1px solid #ddd; } +.coverage-summary td, .coverage-summary th { padding: 10px; } +.coverage-summary tbody { border: 1px solid #bbb; } +.coverage-summary td { border-right: 1px solid #bbb; } +.coverage-summary td:last-child { border-right: none; } +.coverage-summary th { + text-align: left; + font-weight: normal; + white-space: nowrap; +} +.coverage-summary th.file { border-right: none !important; } +.coverage-summary th.pct { } +.coverage-summary th.pic, +.coverage-summary th.abs, +.coverage-summary td.pct, +.coverage-summary td.abs { text-align: right; } +.coverage-summary td.file { white-space: nowrap; } +.coverage-summary td.pic { min-width: 120px !important; } +.coverage-summary tfoot td { } + +.coverage-summary .sorter { + height: 10px; + width: 7px; + display: inline-block; + margin-left: 0.5em; + background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent; +} +.coverage-summary .sorted .sorter { + background-position: 0 -20px; +} +.coverage-summary .sorted-desc .sorter { + background-position: 0 -10px; +} +.status-line { height: 10px; } +/* yellow */ +.cbranch-no { background: yellow !important; color: #111; } +/* dark red */ +.red.solid, .status-line.low, .low .cover-fill { background:#C21F39 } +.low .chart { border:1px solid #C21F39 } +.highlighted, +.highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{ + background: #C21F39 !important; +} +/* medium red */ +.cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE } +/* light red */ +.low, .cline-no { background:#FCE1E5 } +/* light green */ +.high, .cline-yes { background:rgb(230,245,208) } +/* medium green */ +.cstat-yes { background:rgb(161,215,106) } +/* dark green */ +.status-line.high, .high .cover-fill { background:rgb(77,146,33) } +.high .chart { border:1px solid rgb(77,146,33) } +/* dark yellow (gold) */ +.status-line.medium, .medium .cover-fill { background: #f9cd0b; } +.medium .chart { border:1px solid #f9cd0b; } +/* light yellow */ +.medium { background: #fff4c2; } + +.cstat-skip { background: #ddd; color: #111; } +.fstat-skip { background: #ddd; color: #111 !important; } +.cbranch-skip { background: #ddd !important; color: #111; } + +span.cline-neutral { background: #eaeaea; } + +.coverage-summary td.empty { + opacity: .5; + padding-top: 4px; + padding-bottom: 4px; + line-height: 1; + color: #888; +} + +.cover-fill, .cover-empty { + display:inline-block; + height: 12px; +} +.chart { + line-height: 0; +} +.cover-empty { + background: white; +} +.cover-full { + border-right: none !important; +} +pre.prettyprint { + border: none !important; + padding: 0 !important; + margin: 0 !important; +} +.com { color: #999 !important; } +.ignore-none { color: #999; font-weight: normal; } + +.wrapper { + min-height: 100%; + height: auto !important; + height: 100%; + margin: 0 auto -48px; +} +.footer, .push { + height: 48px; +} diff --git a/coverage/lcov-report/block-navigation.js b/coverage/lcov-report/block-navigation.js new file mode 100644 index 0000000..c7ff5a5 --- /dev/null +++ b/coverage/lcov-report/block-navigation.js @@ -0,0 +1,79 @@ +/* eslint-disable */ +var jumpToCode = (function init() { + // Classes of code we would like to highlight in the file view + var missingCoverageClasses = ['.cbranch-no', '.cstat-no', '.fstat-no']; + + // Elements to highlight in the file listing view + var fileListingElements = ['td.pct.low']; + + // We don't want to select elements that are direct descendants of another match + var notSelector = ':not(' + missingCoverageClasses.join('):not(') + ') > '; // becomes `:not(a):not(b) > ` + + // Selecter that finds elements on the page to which we can jump + var selector = + fileListingElements.join(', ') + + ', ' + + notSelector + + missingCoverageClasses.join(', ' + notSelector); // becomes `:not(a):not(b) > a, :not(a):not(b) > b` + + // The NodeList of matching elements + var missingCoverageElements = document.querySelectorAll(selector); + + var currentIndex; + + function toggleClass(index) { + missingCoverageElements + .item(currentIndex) + .classList.remove('highlighted'); + missingCoverageElements.item(index).classList.add('highlighted'); + } + + function makeCurrent(index) { + toggleClass(index); + currentIndex = index; + missingCoverageElements.item(index).scrollIntoView({ + behavior: 'smooth', + block: 'center', + inline: 'center' + }); + } + + function goToPrevious() { + var nextIndex = 0; + if (typeof currentIndex !== 'number' || currentIndex === 0) { + nextIndex = missingCoverageElements.length - 1; + } else if (missingCoverageElements.length > 1) { + nextIndex = currentIndex - 1; + } + + makeCurrent(nextIndex); + } + + function goToNext() { + var nextIndex = 0; + + if ( + typeof currentIndex === 'number' && + currentIndex < missingCoverageElements.length - 1 + ) { + nextIndex = currentIndex + 1; + } + + makeCurrent(nextIndex); + } + + return function jump(event) { + switch (event.which) { + case 78: // n + case 74: // j + goToNext(); + break; + case 66: // b + case 75: // k + case 80: // p + goToPrevious(); + break; + } + }; +})(); +window.addEventListener('keydown', jumpToCode); diff --git a/coverage/lcov-report/index.html b/coverage/lcov-report/index.html new file mode 100644 index 0000000..eb464db --- /dev/null +++ b/coverage/lcov-report/index.html @@ -0,0 +1,110 @@ + + + + Code coverage report for All files + + + + + + + +
+
+

+ All files +

+
+
+ 92.04% + Statements + 104/113 +
+
+ 70.49% + Branches + 43/61 +
+
+ 93.1% + Functions + 27/29 +
+
+ 91.96% + Lines + 103/112 +
+
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
src
89.29%50/5669.7%23/3385.71%12/1489.29%50/56
src/assets/js
94.74%54/5771.43%20/28100%15/1594.64%53/56
+
+
+ + + + + + + + diff --git a/coverage/lcov-report/prettify.css b/coverage/lcov-report/prettify.css new file mode 100644 index 0000000..b317a7c --- /dev/null +++ b/coverage/lcov-report/prettify.css @@ -0,0 +1 @@ +.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} diff --git a/coverage/lcov-report/prettify.js b/coverage/lcov-report/prettify.js new file mode 100644 index 0000000..b322523 --- /dev/null +++ b/coverage/lcov-report/prettify.js @@ -0,0 +1,2 @@ +/* eslint-disable */ +window.PR_SHOULD_USE_CONTINUATION=true;(function(){var h=["break,continue,do,else,for,if,return,while"];var u=[h,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"];var p=[u,"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"];var l=[p,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"];var x=[p,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"];var R=[x,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"];var r="all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes";var w=[p,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"];var s="caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END";var I=[h,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"];var f=[h,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"];var H=[h,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"];var A=[l,R,w,s+I,f,H];var e=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/;var C="str";var z="kwd";var j="com";var O="typ";var G="lit";var L="pun";var F="pln";var m="tag";var E="dec";var J="src";var P="atn";var n="atv";var N="nocode";var M="(?:^^\\.?|[+-]|\\!|\\!=|\\!==|\\#|\\%|\\%=|&|&&|&&=|&=|\\(|\\*|\\*=|\\+=|\\,|\\-=|\\->|\\/|\\/=|:|::|\\;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\?|\\@|\\[|\\^|\\^=|\\^\\^|\\^\\^=|\\{|\\||\\|=|\\|\\||\\|\\|=|\\~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*";function k(Z){var ad=0;var S=false;var ac=false;for(var V=0,U=Z.length;V122)){if(!(al<65||ag>90)){af.push([Math.max(65,ag)|32,Math.min(al,90)|32])}if(!(al<97||ag>122)){af.push([Math.max(97,ag)&~32,Math.min(al,122)&~32])}}}}af.sort(function(av,au){return(av[0]-au[0])||(au[1]-av[1])});var ai=[];var ap=[NaN,NaN];for(var ar=0;arat[0]){if(at[1]+1>at[0]){an.push("-")}an.push(T(at[1]))}}an.push("]");return an.join("")}function W(al){var aj=al.source.match(new RegExp("(?:\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]|\\\\u[A-Fa-f0-9]{4}|\\\\x[A-Fa-f0-9]{2}|\\\\[0-9]+|\\\\[^ux0-9]|\\(\\?[:!=]|[\\(\\)\\^]|[^\\x5B\\x5C\\(\\)\\^]+)","g"));var ah=aj.length;var an=[];for(var ak=0,am=0;ak=2&&ai==="["){aj[ak]=X(ag)}else{if(ai!=="\\"){aj[ak]=ag.replace(/[a-zA-Z]/g,function(ao){var ap=ao.charCodeAt(0);return"["+String.fromCharCode(ap&~32,ap|32)+"]"})}}}}return aj.join("")}var aa=[];for(var V=0,U=Z.length;V=0;){S[ac.charAt(ae)]=Y}}var af=Y[1];var aa=""+af;if(!ag.hasOwnProperty(aa)){ah.push(af);ag[aa]=null}}ah.push(/[\0-\uffff]/);V=k(ah)})();var X=T.length;var W=function(ah){var Z=ah.sourceCode,Y=ah.basePos;var ad=[Y,F];var af=0;var an=Z.match(V)||[];var aj={};for(var ae=0,aq=an.length;ae=5&&"lang-"===ap.substring(0,5);if(am&&!(ai&&typeof ai[1]==="string")){am=false;ap=J}if(!am){aj[ag]=ap}}var ab=af;af+=ag.length;if(!am){ad.push(Y+ab,ap)}else{var al=ai[1];var ak=ag.indexOf(al);var ac=ak+al.length;if(ai[2]){ac=ag.length-ai[2].length;ak=ac-al.length}var ar=ap.substring(5);B(Y+ab,ag.substring(0,ak),W,ad);B(Y+ab+ak,al,q(ar,al),ad);B(Y+ab+ac,ag.substring(ac),W,ad)}}ah.decorations=ad};return W}function i(T){var W=[],S=[];if(T.tripleQuotedStrings){W.push([C,/^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,null,"'\""])}else{if(T.multiLineStrings){W.push([C,/^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,null,"'\"`"])}else{W.push([C,/^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,null,"\"'"])}}if(T.verbatimStrings){S.push([C,/^@\"(?:[^\"]|\"\")*(?:\"|$)/,null])}var Y=T.hashComments;if(Y){if(T.cStyleComments){if(Y>1){W.push([j,/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,null,"#"])}else{W.push([j,/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,null,"#"])}S.push([C,/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,null])}else{W.push([j,/^#[^\r\n]*/,null,"#"])}}if(T.cStyleComments){S.push([j,/^\/\/[^\r\n]*/,null]);S.push([j,/^\/\*[\s\S]*?(?:\*\/|$)/,null])}if(T.regexLiterals){var X=("/(?=[^/*])(?:[^/\\x5B\\x5C]|\\x5C[\\s\\S]|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+/");S.push(["lang-regex",new RegExp("^"+M+"("+X+")")])}var V=T.types;if(V){S.push([O,V])}var U=(""+T.keywords).replace(/^ | $/g,"");if(U.length){S.push([z,new RegExp("^(?:"+U.replace(/[\s,]+/g,"|")+")\\b"),null])}W.push([F,/^\s+/,null," \r\n\t\xA0"]);S.push([G,/^@[a-z_$][a-z_$@0-9]*/i,null],[O,/^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/,null],[F,/^[a-z_$][a-z_$@0-9]*/i,null],[G,new RegExp("^(?:0x[a-f0-9]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+\\-]?\\d+)?)[a-z]*","i"),null,"0123456789"],[F,/^\\[\s\S]?/,null],[L,/^.[^\s\w\.$@\'\"\`\/\#\\]*/,null]);return g(W,S)}var K=i({keywords:A,hashComments:true,cStyleComments:true,multiLineStrings:true,regexLiterals:true});function Q(V,ag){var U=/(?:^|\s)nocode(?:\s|$)/;var ab=/\r\n?|\n/;var ac=V.ownerDocument;var S;if(V.currentStyle){S=V.currentStyle.whiteSpace}else{if(window.getComputedStyle){S=ac.defaultView.getComputedStyle(V,null).getPropertyValue("white-space")}}var Z=S&&"pre"===S.substring(0,3);var af=ac.createElement("LI");while(V.firstChild){af.appendChild(V.firstChild)}var W=[af];function ae(al){switch(al.nodeType){case 1:if(U.test(al.className)){break}if("BR"===al.nodeName){ad(al);if(al.parentNode){al.parentNode.removeChild(al)}}else{for(var an=al.firstChild;an;an=an.nextSibling){ae(an)}}break;case 3:case 4:if(Z){var am=al.nodeValue;var aj=am.match(ab);if(aj){var ai=am.substring(0,aj.index);al.nodeValue=ai;var ah=am.substring(aj.index+aj[0].length);if(ah){var ak=al.parentNode;ak.insertBefore(ac.createTextNode(ah),al.nextSibling)}ad(al);if(!ai){al.parentNode.removeChild(al)}}}break}}function ad(ak){while(!ak.nextSibling){ak=ak.parentNode;if(!ak){return}}function ai(al,ar){var aq=ar?al.cloneNode(false):al;var ao=al.parentNode;if(ao){var ap=ai(ao,1);var an=al.nextSibling;ap.appendChild(aq);for(var am=an;am;am=an){an=am.nextSibling;ap.appendChild(am)}}return aq}var ah=ai(ak.nextSibling,0);for(var aj;(aj=ah.parentNode)&&aj.nodeType===1;){ah=aj}W.push(ah)}for(var Y=0;Y=S){ah+=2}if(V>=ap){Z+=2}}}var t={};function c(U,V){for(var S=V.length;--S>=0;){var T=V[S];if(!t.hasOwnProperty(T)){t[T]=U}else{if(window.console){console.warn("cannot override language handler %s",T)}}}}function q(T,S){if(!(T&&t.hasOwnProperty(T))){T=/^\s*]*(?:>|$)/],[j,/^<\!--[\s\S]*?(?:-\->|$)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],[L,/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);c(g([[F,/^[\s]+/,null," \t\r\n"],[n,/^(?:\"[^\"]*\"?|\'[^\']*\'?)/,null,"\"'"]],[[m,/^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],[P,/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],[L,/^[=<>\/]+/],["lang-js",/^on\w+\s*=\s*\"([^\"]+)\"/i],["lang-js",/^on\w+\s*=\s*\'([^\']+)\'/i],["lang-js",/^on\w+\s*=\s*([^\"\'>\s]+)/i],["lang-css",/^style\s*=\s*\"([^\"]+)\"/i],["lang-css",/^style\s*=\s*\'([^\']+)\'/i],["lang-css",/^style\s*=\s*([^\"\'>\s]+)/i]]),["in.tag"]);c(g([],[[n,/^[\s\S]+/]]),["uq.val"]);c(i({keywords:l,hashComments:true,cStyleComments:true,types:e}),["c","cc","cpp","cxx","cyc","m"]);c(i({keywords:"null,true,false"}),["json"]);c(i({keywords:R,hashComments:true,cStyleComments:true,verbatimStrings:true,types:e}),["cs"]);c(i({keywords:x,cStyleComments:true}),["java"]);c(i({keywords:H,hashComments:true,multiLineStrings:true}),["bsh","csh","sh"]);c(i({keywords:I,hashComments:true,multiLineStrings:true,tripleQuotedStrings:true}),["cv","py"]);c(i({keywords:s,hashComments:true,multiLineStrings:true,regexLiterals:true}),["perl","pl","pm"]);c(i({keywords:f,hashComments:true,multiLineStrings:true,regexLiterals:true}),["rb"]);c(i({keywords:w,cStyleComments:true,regexLiterals:true}),["js"]);c(i({keywords:r,hashComments:3,cStyleComments:true,multilineStrings:true,tripleQuotedStrings:true,regexLiterals:true}),["coffee"]);c(g([],[[C,/^[\s\S]+/]]),["regex"]);function d(V){var U=V.langExtension;try{var S=a(V.sourceNode);var T=S.sourceCode;V.sourceCode=T;V.spans=S.spans;V.basePos=0;q(U,T)(V);D(V)}catch(W){if("console" in window){console.log(W&&W.stack?W.stack:W)}}}function y(W,V,U){var S=document.createElement("PRE");S.innerHTML=W;if(U){Q(S,U)}var T={langExtension:V,numberLines:U,sourceNode:S};d(T);return S.innerHTML}function b(ad){function Y(af){return document.getElementsByTagName(af)}var ac=[Y("pre"),Y("code"),Y("xmp")];var T=[];for(var aa=0;aa=0){var ah=ai.match(ab);var am;if(!ah&&(am=o(aj))&&"CODE"===am.tagName){ah=am.className.match(ab)}if(ah){ah=ah[1]}var al=false;for(var ak=aj.parentNode;ak;ak=ak.parentNode){if((ak.tagName==="pre"||ak.tagName==="code"||ak.tagName==="xmp")&&ak.className&&ak.className.indexOf("prettyprint")>=0){al=true;break}}if(!al){var af=aj.className.match(/\blinenums\b(?::(\d+))?/);af=af?af[1]&&af[1].length?+af[1]:true:false;if(af){Q(aj,af)}S={langExtension:ah,sourceNode:aj,numberLines:af};d(S)}}}if(X]*(?:>|$)/],[PR.PR_COMMENT,/^<\!--[\s\S]*?(?:-\->|$)/],[PR.PR_PUNCTUATION,/^(?:<[%?]|[%?]>)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-handlebars",/^]*type\s*=\s*['"]?text\/x-handlebars-template['"]?\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-js",/^]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i],[PR.PR_DECLARATION,/^{{[#^>/]?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{&?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{{>?\s*[\w.][^}]*}}}/],[PR.PR_COMMENT,/^{{![^}]*}}/]]),["handlebars","hbs"]);PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[ \t\r\n\f]+/,null," \t\r\n\f"]],[[PR.PR_STRING,/^\"(?:[^\n\r\f\\\"]|\\(?:\r\n?|\n|\f)|\\[\s\S])*\"/,null],[PR.PR_STRING,/^\'(?:[^\n\r\f\\\']|\\(?:\r\n?|\n|\f)|\\[\s\S])*\'/,null],["lang-css-str",/^url\(([^\)\"\']*)\)/i],[PR.PR_KEYWORD,/^(?:url|rgb|\!important|@import|@page|@media|@charset|inherit)(?=[^\-\w]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|(?:\\[0-9a-f]+ ?))(?:[_a-z0-9\-]|\\(?:\\[0-9a-f]+ ?))*)\s*:/i],[PR.PR_COMMENT,/^\/\*[^*]*\*+(?:[^\/*][^*]*\*+)*\//],[PR.PR_COMMENT,/^(?:)/],[PR.PR_LITERAL,/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],[PR.PR_LITERAL,/^#(?:[0-9a-f]{3}){1,2}/i],[PR.PR_PLAIN,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i],[PR.PR_PUNCTUATION,/^[^\s\w\'\"]+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_KEYWORD,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_STRING,/^[^\)\"\']+/]]),["css-str"]); diff --git a/coverage/lcov-report/sort-arrow-sprite.png b/coverage/lcov-report/sort-arrow-sprite.png new file mode 100644 index 0000000..03f704a Binary files /dev/null and b/coverage/lcov-report/sort-arrow-sprite.png differ diff --git a/coverage/lcov-report/sorter.js b/coverage/lcov-report/sorter.js new file mode 100644 index 0000000..16de10c --- /dev/null +++ b/coverage/lcov-report/sorter.js @@ -0,0 +1,170 @@ +/* eslint-disable */ +var addSorting = (function() { + 'use strict'; + var cols, + currentSort = { + index: 0, + desc: false + }; + + // returns the summary table element + function getTable() { + return document.querySelector('.coverage-summary'); + } + // returns the thead element of the summary table + function getTableHeader() { + return getTable().querySelector('thead tr'); + } + // returns the tbody element of the summary table + function getTableBody() { + return getTable().querySelector('tbody'); + } + // returns the th element for nth column + function getNthColumn(n) { + return getTableHeader().querySelectorAll('th')[n]; + } + + // loads all columns + function loadColumns() { + var colNodes = getTableHeader().querySelectorAll('th'), + colNode, + cols = [], + col, + i; + + for (i = 0; i < colNodes.length; i += 1) { + colNode = colNodes[i]; + col = { + key: colNode.getAttribute('data-col'), + sortable: !colNode.getAttribute('data-nosort'), + type: colNode.getAttribute('data-type') || 'string' + }; + cols.push(col); + if (col.sortable) { + col.defaultDescSort = col.type === 'number'; + colNode.innerHTML = + colNode.innerHTML + ''; + } + } + return cols; + } + // attaches a data attribute to every tr element with an object + // of data values keyed by column name + function loadRowData(tableRow) { + var tableCols = tableRow.querySelectorAll('td'), + colNode, + col, + data = {}, + i, + val; + for (i = 0; i < tableCols.length; i += 1) { + colNode = tableCols[i]; + col = cols[i]; + val = colNode.getAttribute('data-value'); + if (col.type === 'number') { + val = Number(val); + } + data[col.key] = val; + } + return data; + } + // loads all row data + function loadData() { + var rows = getTableBody().querySelectorAll('tr'), + i; + + for (i = 0; i < rows.length; i += 1) { + rows[i].data = loadRowData(rows[i]); + } + } + // sorts the table using the data for the ith column + function sortByIndex(index, desc) { + var key = cols[index].key, + sorter = function(a, b) { + a = a.data[key]; + b = b.data[key]; + return a < b ? -1 : a > b ? 1 : 0; + }, + finalSorter = sorter, + tableBody = document.querySelector('.coverage-summary tbody'), + rowNodes = tableBody.querySelectorAll('tr'), + rows = [], + i; + + if (desc) { + finalSorter = function(a, b) { + return -1 * sorter(a, b); + }; + } + + for (i = 0; i < rowNodes.length; i += 1) { + rows.push(rowNodes[i]); + tableBody.removeChild(rowNodes[i]); + } + + rows.sort(finalSorter); + + for (i = 0; i < rows.length; i += 1) { + tableBody.appendChild(rows[i]); + } + } + // removes sort indicators for current column being sorted + function removeSortIndicators() { + var col = getNthColumn(currentSort.index), + cls = col.className; + + cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, ''); + col.className = cls; + } + // adds sort indicators for current column being sorted + function addSortIndicators() { + getNthColumn(currentSort.index).className += currentSort.desc + ? ' sorted-desc' + : ' sorted'; + } + // adds event listeners for all sorter widgets + function enableUI() { + var i, + el, + ithSorter = function ithSorter(i) { + var col = cols[i]; + + return function() { + var desc = col.defaultDescSort; + + if (currentSort.index === i) { + desc = !currentSort.desc; + } + sortByIndex(i, desc); + removeSortIndicators(); + currentSort.index = i; + currentSort.desc = desc; + addSortIndicators(); + }; + }; + for (i = 0; i < cols.length; i += 1) { + if (cols[i].sortable) { + // add the click event handler on the th so users + // dont have to click on those tiny arrows + el = getNthColumn(i).querySelector('.sorter').parentElement; + if (el.addEventListener) { + el.addEventListener('click', ithSorter(i)); + } else { + el.attachEvent('onclick', ithSorter(i)); + } + } + } + } + // adds sorting functionality to the UI + return function() { + if (!getTable()) { + return; + } + cols = loadColumns(); + loadData(); + addSortIndicators(); + enableUI(); + }; +})(); + +window.addEventListener('load', addSorting); diff --git a/coverage/lcov-report/src/assets/js/index.html b/coverage/lcov-report/src/assets/js/index.html new file mode 100644 index 0000000..5cb3abf --- /dev/null +++ b/coverage/lcov-report/src/assets/js/index.html @@ -0,0 +1,97 @@ + + + + Code coverage report for src/assets/js + + + + + + + +
+
+

+ All files src/assets/js +

+
+
+ 94.74% + Statements + 54/57 +
+
+ 71.43% + Branches + 20/28 +
+
+ 100% + Functions + 15/15 +
+
+ 94.64% + Lines + 53/56 +
+
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
state.js
94.74%54/5771.43%20/28100%15/1594.64%53/56
+
+
+ + + + + + + + diff --git a/coverage/lcov-report/src/assets/js/state.js.html b/coverage/lcov-report/src/assets/js/state.js.html new file mode 100644 index 0000000..033305b --- /dev/null +++ b/coverage/lcov-report/src/assets/js/state.js.html @@ -0,0 +1,510 @@ + + + + Code coverage report for src/assets/js/state.js + + + + + + + +
+
+

+ All files / src/assets/js state.js +

+
+
+ 94.74% + Statements + 54/57 +
+
+ 71.43% + Branches + 20/28 +
+
+ 100% + Functions + 15/15 +
+
+ 94.64% + Lines + 53/56 +
+
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+
+
+

+
+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +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 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +139 +140 +141 +142 +143 +144 +145 +146 +147 +1487x +  +7x +  +  +  +  +  +  +  +  +7x +7x +7x +1x +1x +  +1x +1x +1x +  +1x +1x +3x +  +  +  +  +  +  +  +  +  +  +1x +  +7x +16x +16x +  +  +  +  +  +  +  +  +  +7x +12x +  +  +  +  +  +  +  +  +7x +4x +  +4x +4x +12x +12x +  +  +  +  +7x +  +7x +5x +  +2x +4x +4x +  +  +  +2x +  +  +  +  +  +2x +  +1x +1x +  +2x +1x +1x +  +  +  +1x +2x +2x +  +  +  +  +  +  +  +  +  +  +2x +  +  +  +  +5x +  +  +7x +3x +  +3x +  +1x +  +  +  +  +  +  +  +1x +  +2x +2x +  +  +  +2x +  +  +  +  +3x +  +  +7x + 
browser = window.msBrowser || window.browser || window.chrome
+ 
+const settings = new webStorageObject.LocalStorageObject(
+    {
+        isActive: true,
+        comments: {}
+    },
+    'settings',
+    false
+)
+ 
+const idleTime = 15000
+const getCommentsRepoURL = () => `https://raw.githubusercontent.com/capJavert/clippy-dictionary/master/clippy.json?v=${new Date().getTime()}`
+const loadComments = () => {
+    const xhttp = new XMLHttpRequest()
+    xhttp.open('GET', getCommentsRepoURL(), true)
+ 
+    xhttp.onreadystatechange = () => {
+        Eif (xhttp.readyState === 4 && xhttp.status === 200) {
+            settings.comments = JSON.parse(xhttp.response)
+ 
+            browser.tabs.query({}, (tabs) => {
+                tabs.forEach((tab, index) => {
+                    browser.tabs.sendMessage(
+                        tabs[index].id,
+                        {
+                            name: 'comments',
+                            value: settings.comments
+                        }
+                    )
+                })
+            })
+        }
+    }
+    xhttp.send()
+}
+const toggleIcon = (tab) => {
+    const iconName = `src/assets/img/clippy-icon${settings.isActive ? '' : '-gray'}`
+    browser.browserAction.setIcon({
+        path: {
+            16: `${iconName}-48x48.png`,
+            24: `${iconName}-48x48.png`,
+            32: `${iconName}-48x48.png`
+        },
+        tabId: tab.id
+    })
+}
+ 
+const sendActive = (tab) => {
+    browser.tabs.sendMessage(
+        tab.id,
+        {
+            name: 'isActive',
+            value: settings.isActive
+        }
+    )
+}
+ 
+const toggleClippy = () => {
+    settings.isActive = !settings.isActive
+ 
+    browser.tabs.query({}, (tabs) => {
+        tabs.forEach((tab, index) => {
+            sendActive(tabs[index])
+            toggleIcon(tabs[index])
+        })
+    })
+}
+ 
+browser.browserAction.onClicked.addListener(toggleClippy)
+ 
+browser.runtime.onMessage.addListener((request, sender, sendResponse) => {
+    switch (request.name) {
+    case 'isActive':
+        browser.tabs.query({ active: true, currentWindow: true }, (tabs) => {
+            Eif (tabs.length > 0) {
+                toggleIcon(tabs[0])
+            }
+        })
+ 
+        sendResponse(
+            {
+                name: 'isActive',
+                value: settings.isActive
+            }
+        )
+        break
+    case 'comments':
+        loadComments()
+        break
+    case 'idle':
+        if (settings.isActive) {
+            setTimeout(() => {
+                Iif (!settings.isActive) {
+                    return
+                }
+ 
+                browser.tabs.query({ active: true, currentWindow: true }, (tabs) => {
+                    Eif (tabs.length > 0) {
+                        browser.tabs.sendMessage(
+                            tabs[0].id,
+                            {
+                                name: 'animate',
+                                value: true
+                            }
+                        )
+                    }
+                })
+            }, idleTime)
+        }
+        break
+    default:
+        break
+    }
+ 
+    return true
+})
+ 
+browser.runtime.onMessageExternal.addListener((request, sender, sendResponse) => {
+    const manifest = browser.runtime.getManifest()
+ 
+    switch (request.name) {
+    case 'WHAT_IS_THE_MEANING_OF_LIFE':
+        sendResponse({
+            name: 'SILENCE_MY_BROTHER',
+            value: {
+                installed: true,
+                isActive: settings.isActive || false,
+                version: manifest.version
+            }
+        })
+        break
+    case 'RISE':
+        toggleClippy()
+        sendResponse({
+            name: 'SILENCE_MY_BROTHER',
+            value: settings.isActive || false
+        })
+        break
+    default:
+        break
+    }
+ 
+    return true
+})
+ 
+window.settings = settings
+ 
+
+
+ + + + + + + + diff --git a/coverage/lcov-report/src/assets/js/web-storage-object.js.html b/coverage/lcov-report/src/assets/js/web-storage-object.js.html new file mode 100644 index 0000000..b55d338 --- /dev/null +++ b/coverage/lcov-report/src/assets/js/web-storage-object.js.html @@ -0,0 +1,1170 @@ + + + + Code coverage report for src/assets/js/web-storage-object.js + + + + + + + +
+
+

+ All files / src/assets/js web-storage-object.js +

+
+
+ 61.79% + Statements + 76/123 +
+
+ 43.06% + Branches + 31/72 +
+
+ 72.73% + Functions + 24/33 +
+
+ 67.06% + Lines + 57/85 +
+
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+
+
+

+
+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +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 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122 +123 +124 +125 +126 +127 +128 +129 +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 +172 +173 +174 +175 +176 +177 +178 +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 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +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 +295 +296 +297 +298 +299 +300 +301 +302 +303 +304 +305 +306 +307 +308 +309 +310 +311 +312 +313 +314 +315 +316 +317 +318 +319 +320 +321 +322 +323 +324 +325 +326 +327 +328 +329 +330 +331 +332 +333 +334 +335 +336 +337 +338 +339 +340 +341 +342 +343 +344 +345 +346 +347 +348 +349 +350 +351 +352 +353 +354 +355 +356 +357 +358 +359 +360 +361 +362 +363 +364 +365 +366 +367 +3689x +  +  +1x +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +1x +7x +  +  +1x +  +  +  +  +1x +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +  +  +1x +  +  +  +  +  +  +  +  +  +1x +  +  +  +1x +  +  +  +  +71x +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +1x +7x +  +  +  +7x +  +7x +  +  +  +7x +7x +  +  +  +  +7x +7x +  +7x +7x +  +  +  +  +7x +  +  +1x +7x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +51x +  +51x +4x +  +47x +  +  +  +  +  +  +  +  +  +  +  +11x +  +11x +  +11x +11x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +18x +18x +  +18x +  +  +  +  +  +  +  +  +  +  +  +69x +  +69x +  +  +  +  +  +  +  +  +  +7x +  +7x +7x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +6x +  +6x +6x +6x +  +  +1x +6x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +20x +2x +  +18x +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +  +  +  +  +  +  +  +  +  +  +  +  +1x +  +1x +  +1x +  +  +  +  +  +  + 
(function(f){Eif(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.webStorageObject = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){Iif(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
+"use strict";
+ 
+var WebStorageObject = require('./WebStorageObject');
+ 
+var WebStorageEnum = require('./WebStorageEnum');
+/**
+ * LocalStorageObject
+ *
+ * Binds object to localStorage
+ *
+ * @param  {object} target object or array defining object properties
+ * @param  {string} key key that will identifiy object inside webStorage
+ * @param  {boolean} overwrite set this flag if you wish to overwrite existing key if it exits inside webStorage
+ * @return {Proxy} Proxy object containing LocalStorageObject handler
+ */
+ 
+ 
+var LocalStorageObject = function LocalStorageObject(target, key, overwrite) {
+  return new WebStorageObject(WebStorageEnum.localStorage, target, key, overwrite);
+};
+ 
+module.exports = LocalStorageObject;
+ 
+},{"./WebStorageEnum":3,"./WebStorageObject":4}],2:[function(require,module,exports){
+"use strict";
+ 
+var WebStorageObject = require('./WebStorageObject');
+ 
+var WebStorageEnum = require('./WebStorageEnum');
+/**
+ * SessionStorageObject
+ *
+ * Binds object to sessionStorage
+ *
+ * @param  {object} target object or array defining object properties
+ * @param  {string} key key that will identifiy object inside webStorage
+ * @param  {boolean} overwrite set this flag if you wish to overwrite existing key if it exits inside webStorage
+ * @return {Proxy} Proxy object containing SessionStorageObject handler
+ */
+ 
+ 
+var SessionStorageObject = function SessionStorageObject(target, key, overwrite) {
+  return new WebStorageObject(WebStorageEnum.sessionStorage, target, key, overwrite);
+};
+ 
+module.exports = SessionStorageObject;
+ 
+},{"./WebStorageEnum":3,"./WebStorageObject":4}],3:[function(require,module,exports){
+"use strict";
+ 
+/**
+ * WebStorageEnum
+ *
+ * @type {object}
+ */
+var WebStorageEnum = Object.freeze({
+  localStorage: 'localStorage',
+  sessionStorage: 'sessionStorage'
+});
+module.exports = WebStorageEnum;
+ 
+},{}],4:[function(require,module,exports){
+"use strict";
+ 
+function _typeof(obj) { Eif (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
+ 
+var WebStorageEnum = require('./WebStorageEnum');
+/**
+ * Abstract WebStorageObject type
+ * Used in child LocalStorageObject and SessionStorageObject types
+ *
+ * @param  {WebStorageEnum} type type indicating  WebStorage API to use
+ * @param  {object} target object or array defining object properties
+ * @param  {string} key key that will identifiy object inside webStorage
+ * @param  {boolean} overwrite Defaults to true, unset this flag to keep existing data if the key already exsits inside webStorage
+ * @return {Proxy} Proxy object containing WebStorageObject handler
+ */
+ 
+ 
+var WebStorageObject = function WebStorageObject(type, target, key, overwrite) {
+  Iif (overwrite == null) {
+    overwrite = true;
+  }
+ 
+  var handler = this._handler(key);
+ 
+  Iif (!handler._setStorage(type)) {
+    throw "WebStorage type is not valid or supported.";
+  }
+ 
+  Eif (overwrite === true || handler._fetch() === null) {
+    handler._persist(target);
+  } else {
+    target = handler._fetch();
+  }
+ 
+  var proxy = new Proxy(target, handler);
+  handler._proxy = proxy;
+ 
+  Eif (window) {
+    window.addEventListener('storage', function () {
+      handler._reflect();
+    });
+  }
+ 
+  return proxy;
+};
+ 
+WebStorageObject.prototype._handler = function (key) {
+  return {
+    /**
+     * Unique identifier for object inside webStorage
+     *
+     * @type {string}
+     */
+    _id: key || this._uuid(),
+ 
+    /**
+     * Reference to handlers Proxy object
+     * Always set if WebStorageObject is created through constructor function
+     *
+     * @type {Proxy}
+     */
+    _proxy: null,
+ 
+    /**
+     * Reference to selected WebStorage type
+     *
+     * @type {localStorage|sessionStorage}
+     */
+    _storage: null,
+ 
+    /**
+     * Getter for binded webStorage object properties
+     *
+     * @param  {object} target
+     * @param  {string|number} key
+     * @return {any}
+     */
+    get: function get(target, key) {
+      target = this._fetch();
+ 
+      if (_typeof(target[key]) === 'object') {
+        return new WebStorageProperty(target[key], key, this._proxy);
+      } else {
+        return target.hasOwnProperty(key) ? target[key] : null;
+      }
+    },
+ 
+    /**
+     * Setter for binded webStorage object properties
+     *
+     * @param  {object} target
+     * @param  {string|number} key
+     * @return {boolean}
+     */
+    set: function set(target, key, value) {
+      target[key] = value;
+ 
+      var temp = this._fetch();
+ 
+      temp[key] = value;
+      return this._persist(temp);
+    },
+ 
+    /**
+     * Delete operator handler
+     *
+     * @param  {object} target
+     * @param  {string|number} key
+     * @return {boolean}
+     */
+    deleteProperty: function deleteProperty(target, key) {
+      if (key in target) {
+        delete target[key];
+        return this._persist(target);
+      } else {
+        return false;
+      }
+    },
+ 
+    /**
+     * Used to generate random object identifier inside webStorage
+     *
+     * @return {string}
+     */
+    _uuid: function _uuid() {
+      return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
+        var r = Math.random() * 16 | 0,
+            v = c === 'x' ? r : r & 0x3 | 0x8;
+        return v.toString(16);
+      });
+    },
+ 
+    /**
+     * Save data to webStorage as JSON string
+     *
+     * @param {object} value
+     */
+    _persist: function _persist(value) {
+      Eif (value) {
+        this._storage.setItem(this._id, JSON.stringify(value));
+ 
+        return true;
+      } else {
+        return false;
+      }
+    },
+ 
+    /**
+     * Get data from webStorage as object
+     *
+     * @return {object}
+     */
+    _fetch: function _fetch() {
+      var temp = this._storage.getItem(this._id);
+ 
+      return temp ? JSON.parse(temp) : null;
+    },
+ 
+    /**
+     * Abstract webStorage setter
+     *
+     * @type {localStorage|sessionStorage}
+     * @return {boolean} Returns false if WebStorage type is not valid or supported
+     */
+    _setStorage: function _setStorage(type) {
+      switch (type) {
+        case WebStorageEnum.localStorage:
+          this._storage = localStorage;
+          return true;
+ 
+        case WebStorageEnum.sessionStorage:
+          this._storage = sessionStorage;
+          return true;
+      }
+ 
+      return false;
+    },
+ 
+    /**
+     * Reflect all values from WebStorage to proxy internal target object
+     */
+    _reflect: function _reflect() {
+      var temp = this._fetch();
+ 
+      for (var key in temp) {
+        this._proxy[key] = temp[key];
+      }
+    }
+  };
+};
+/**
+ * Constructor for creating an object of WebStorageProperty type
+ *
+ * @param  {object} target object or array defining object properties
+ * @param  {string} key key that will identifiy object inside his parent
+ * @param  {Proxy} parent Proxy object of a parent object
+ * @return {Proxy} Proxy object containing WebStorageProperty handler
+ */
+ 
+ 
+var WebStorageProperty = function WebStorageProperty(target, key, parent) {
+  var handler = this._handler(key, parent);
+ 
+  var proxy = new Proxy(target, handler);
+  handler._proxy = proxy;
+  return proxy;
+};
+ 
+WebStorageProperty.prototype._handler = function (key, parent) {
+  return {
+    /**
+     * Unique identifier for property inside webStorage
+     *
+     * @type {string}
+     */
+    _id: key,
+ 
+    /**
+     * Reference to handlers Proxy object
+     * Always set if WebStorageProperty is created through constructor function
+     *
+     * @type {Proxy}
+     */
+    _proxy: null,
+ 
+    /**
+     * Original Proxy that traps this property
+     *
+     * @type {object}
+     */
+    _parent: parent,
+ 
+    /**
+     * Getter for binded webStorage property properties
+     *
+     * @param  {object} target
+     * @param  {string|number} key
+     * @return {any}
+     */
+    get: function get(target, key) {
+      if (_typeof(target[key]) === 'object') {
+        return new WebStorageProperty(target[key], key, this._proxy);
+      } else {
+        return target.hasOwnProperty(key) ? target[key] : null;
+      }
+    },
+ 
+    /**
+     * Setter for binded webStorage property properties
+     *
+     * @param  {object} target
+     * @param  {string|number} key
+     * @return {boolean}
+     */
+    set: function set(target, key, value) {
+      target[key] = value;
+      this._parent[this._id] = target;
+      return true;
+    },
+ 
+    /**
+     * Delete operator handler
+     *
+     * @param  {object} target
+     * @param  {string|number} key
+     * @return {boolean}
+     */
+    deleteProperty: function deleteProperty(target, key) {
+      if (key in target) {
+        delete target[key];
+        this._parent[this._id] = target;
+        return true;
+      } else {
+        return false;
+      }
+    }
+  };
+};
+ 
+module.exports = WebStorageObject;
+ 
+},{"./WebStorageEnum":3}],5:[function(require,module,exports){
+"use strict";
+ 
+/**
+ * API providing 2 way binding of JavaScript objects to browser WebStorage
+ * Consists of two mechanisms
+ * - LocalStorageObject
+ * - SessionStorageObject
+ *
+ * Each is used to bind any JavaScript object to specific WebStorage type
+ *
+ */
+var LocalStorageObject = require('./LocalStorageObject');
+ 
+var SessionStorageObject = require('./SessionStorageObject');
+ 
+module.exports = {
+  LocalStorageObject: LocalStorageObject,
+  SessionStorageObject: SessionStorageObject
+};
+ 
+},{"./LocalStorageObject":1,"./SessionStorageObject":2}]},{},[5])(5)
+});
+ 
+
+
+ + + + + + + + diff --git a/coverage/lcov-report/src/index.html b/coverage/lcov-report/src/index.html new file mode 100644 index 0000000..2da05d0 --- /dev/null +++ b/coverage/lcov-report/src/index.html @@ -0,0 +1,97 @@ + + + + Code coverage report for src + + + + + + + +
+
+

+ All files src +

+
+
+ 89.29% + Statements + 50/56 +
+
+ 69.7% + Branches + 23/33 +
+
+ 85.71% + Functions + 12/14 +
+
+ 89.29% + Lines + 50/56 +
+
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
index.js
89.29%50/5669.7%23/3385.71%12/1489.29%50/56
+
+
+ + + + + + + + diff --git a/coverage/lcov-report/src/index.js.html b/coverage/lcov-report/src/index.js.html new file mode 100644 index 0000000..ccf62b3 --- /dev/null +++ b/coverage/lcov-report/src/index.js.html @@ -0,0 +1,429 @@ + + + + Code coverage report for src/index.js + + + + + + + +
+
+

+ All files / src index.js +

+
+
+ 89.29% + Statements + 50/56 +
+
+ 69.7% + Branches + 23/33 +
+
+ 85.71% + Functions + 12/14 +
+
+ 89.29% + Lines + 50/56 +
+
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+
+
+

+
+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +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 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +12111x +  +11x +  +  +  +  +  +10x +10x +  +10x +2x +1x +1x +  +  +  +  +3x +3x +  +3x +8x +2x +1x +  +1x +  +  +  +  +3x +2x +  +  +  +2x +2x +2x +  +  +  +  +1x +  +  +  +3x +  +3x +  +  +  +3x +  +3x +1x +1x +  +  +2x +  +  +  +12x +  +  +4x +  +  +2x +  +  +  +  +  +  +  +11x +  +  +  +  +  +11x +6x +  +2x +  +2x +1x +  +2x +  +2x +2x +  +2x +  +  +  +2x +  +2x +2x +1x +1x +1x +1x +  +  +  +2x +  +  +  +  +  +11x + 
browser = window.msBrowser || window.browser || window.chrome
+ 
+const clippyController = {
+    agent: null,
+    lastComment: null,
+    animations: ['Congratulate', 'LookRight', 'SendMail', 'Thinking', 'Explain', 'IdleRopePile', 'IdleAtom', 'Print', 'GetAttention', 'Save', 'GetTechy', 'GestureUp', 'Idle1_1', 'Processing', 'Alert', 'LookUpRight', 'IdleSideToSide', 'LookLeft', 'IdleHeadScratch', 'LookUpLeft', 'CheckingSomething', 'Hearing_1', 'GetWizardy', 'IdleFingerTap', 'GestureLeft', 'Wave', 'GestureRight', 'Writing', 'IdleSnooze', 'LookDownRight', 'GetArtsy', 'LookDown', 'Searching', 'EmptyTrash', 'LookUp', 'GestureDown', 'RestPose', 'IdleEyeBrowRaise', 'LookDownLeft'],
+    comments: {},
+    init(agent) {
+        this.agent = agent
+        this.fetchCommentUpdates()
+ 
+        browser.runtime.sendMessage({ name: 'isActive' }, (response) => {
+            if (response.value) {
+                clippyController.toggle(response.value)
+                clippyController.idle()
+            }
+        })
+    },
+    talk() {
+        const { hostname } = window.location
+        let clippyComments = []
+ 
+        Object.keys(this.comments).forEach((property) => {
+            if (hostname.indexOf(property) !== -1) {
+                if (this.comments[property].constructor === Array) {
+                    clippyComments = clippyComments.concat(this.comments[property])
+                } else {
+                    clippyComments.push(this.comments[property])
+                }
+            }
+        })
+ 
+        if (clippyComments.length > 0) {
+            const nextComment = clippyComments.constructor === Array
+                ? clippyComments[Math.floor(Math.random() * clippyComments.length)]
+                : clippyComments
+ 
+            Eif (nextComment !== this.lastComment) {
+                this.agent.speak(nextComment)
+                this.lastComment = nextComment
+            } else {
+                this.lastComment = null
+            }
+        } else {
+            this.agent.stop()
+        }
+    },
+    toggle(state) {
+        const clippyBalloon = document.getElementsByClassName('clippy-balloon')
+ 
+        Iif (clippyBalloon.length > 0) {
+            clippyBalloon[0].style.display = state && clippyBalloon[0].innerText.length > 0 ? 'block' : 'none'
+        }
+ 
+        this.agent.stop()
+ 
+        if (!state) {
+            this.agent.play('GoodBye', 5000, () => {
+                clippyController.agent.hide(true)
+            })
+        } else {
+            clippyController.agent.show(true)
+        }
+    },
+    fetchCommentUpdates() {
+        browser.runtime.sendMessage({ name: 'comments' })
+    },
+    idle() {
+        browser.runtime.sendMessage({ name: 'idle' })
+    },
+    animate(callback) {
+        this.agent.play(
+            this.animations[Math.floor(Math.random() * this.animations.length)],
+            5000,
+            callback
+        )
+    }
+}
+ 
+window.addEventListener('load', () => {
+    clippy.load('Clippy', (agent) => {
+        clippyController.init(agent)
+    })
+}, false)
+ 
+browser.runtime.onMessage.addListener((request) => {
+    switch (request.name) {
+    case 'isActive':
+        clippyController.toggle(request.value)
+ 
+        if (request.value) {
+            clippyController.idle()
+        }
+        break
+    case 'comments':
+        clippyController.comments = request.value
+        break
+    case 'animate':
+        Iif (!clippyController.agent) {
+            return
+        }
+ 
+        clippyController.fetchCommentUpdates()
+ 
+        browser.runtime.sendMessage({ name: 'isActive' }, (response) => {
+            if (response.value) {
+                clippyController.agent.stop()
+                clippyController.talk()
+                clippyController.animate(() => {
+                    clippyController.idle()
+                })
+            }
+        })
+        break
+    default:
+        break
+    }
+})
+ 
+window.clippyController = clippyController
+ 
+
+
+ + + + + + + + diff --git a/coverage/lcov.info b/coverage/lcov.info new file mode 100644 index 0000000..35d6a59 --- /dev/null +++ b/coverage/lcov.info @@ -0,0 +1,249 @@ +TN: +SF:/Users/javert/work-work/clippy/src/index.js +FN:8,(anonymous_0) +FN:12,(anonymous_1) +FN:19,(anonymous_2) +FN:23,(anonymous_3) +FN:48,(anonymous_4) +FN:58,(anonymous_5) +FN:65,(anonymous_6) +FN:68,(anonymous_7) +FN:71,(anonymous_8) +FN:80,(anonymous_9) +FN:81,(anonymous_10) +FN:86,(anonymous_11) +FN:105,(anonymous_12) +FN:109,(anonymous_13) +FNF:14 +FNH:12 +FNDA:10,(anonymous_0) +FNDA:2,(anonymous_1) +FNDA:3,(anonymous_2) +FNDA:8,(anonymous_3) +FNDA:3,(anonymous_4) +FNDA:1,(anonymous_5) +FNDA:12,(anonymous_6) +FNDA:4,(anonymous_7) +FNDA:2,(anonymous_8) +FNDA:0,(anonymous_9) +FNDA:0,(anonymous_10) +FNDA:6,(anonymous_11) +FNDA:2,(anonymous_12) +FNDA:1,(anonymous_13) +DA:1,11 +DA:3,11 +DA:9,10 +DA:10,10 +DA:12,10 +DA:13,2 +DA:14,1 +DA:15,1 +DA:20,3 +DA:21,3 +DA:23,3 +DA:24,8 +DA:25,2 +DA:26,1 +DA:28,1 +DA:33,3 +DA:34,2 +DA:38,2 +DA:39,2 +DA:40,2 +DA:42,0 +DA:45,1 +DA:49,3 +DA:51,3 +DA:52,0 +DA:55,3 +DA:57,3 +DA:58,1 +DA:59,1 +DA:62,2 +DA:66,12 +DA:69,4 +DA:72,2 +DA:80,11 +DA:81,0 +DA:82,0 +DA:86,11 +DA:87,6 +DA:89,2 +DA:91,2 +DA:92,1 +DA:94,2 +DA:96,2 +DA:97,2 +DA:99,2 +DA:100,0 +DA:103,2 +DA:105,2 +DA:106,2 +DA:107,1 +DA:108,1 +DA:109,1 +DA:110,1 +DA:114,2 +DA:116,0 +DA:120,11 +LF:56 +LH:50 +BRDA:1,0,0,11 +BRDA:1,0,1,11 +BRDA:1,0,2,0 +BRDA:13,1,0,1 +BRDA:13,1,1,1 +BRDA:24,2,0,2 +BRDA:24,2,1,6 +BRDA:25,3,0,1 +BRDA:25,3,1,1 +BRDA:33,4,0,2 +BRDA:33,4,1,1 +BRDA:34,5,0,2 +BRDA:34,5,1,0 +BRDA:38,6,0,2 +BRDA:38,6,1,0 +BRDA:51,7,0,0 +BRDA:51,7,1,3 +BRDA:52,8,0,0 +BRDA:52,8,1,0 +BRDA:52,9,0,0 +BRDA:52,9,1,0 +BRDA:57,10,0,1 +BRDA:57,10,1,2 +BRDA:87,11,0,2 +BRDA:87,11,1,2 +BRDA:87,11,2,2 +BRDA:87,11,3,0 +BRDA:91,12,0,1 +BRDA:91,12,1,1 +BRDA:99,13,0,0 +BRDA:99,13,1,2 +BRDA:106,14,0,1 +BRDA:106,14,1,1 +BRF:33 +BRH:23 +end_of_record +TN: +SF:/Users/javert/work-work/clippy/src/assets/js/state.js +FN:13,(anonymous_0) +FN:14,(anonymous_1) +FN:18,(anonymous_2) +FN:22,(anonymous_3) +FN:23,(anonymous_4) +FN:37,(anonymous_5) +FN:49,(anonymous_6) +FN:59,(anonymous_7) +FN:62,(anonymous_8) +FN:63,(anonymous_9) +FN:72,(anonymous_10) +FN:75,(anonymous_11) +FN:93,(anonymous_12) +FN:98,(anonymous_13) +FN:119,(anonymous_14) +FNF:15 +FNH:15 +FNDA:1,(anonymous_0) +FNDA:1,(anonymous_1) +FNDA:1,(anonymous_2) +FNDA:1,(anonymous_3) +FNDA:3,(anonymous_4) +FNDA:16,(anonymous_5) +FNDA:12,(anonymous_6) +FNDA:4,(anonymous_7) +FNDA:4,(anonymous_8) +FNDA:12,(anonymous_9) +FNDA:5,(anonymous_10) +FNDA:4,(anonymous_11) +FNDA:1,(anonymous_12) +FNDA:2,(anonymous_13) +FNDA:3,(anonymous_14) +DA:1,7 +DA:3,7 +DA:12,7 +DA:13,7 +DA:14,7 +DA:15,1 +DA:16,1 +DA:18,1 +DA:19,1 +DA:20,1 +DA:22,1 +DA:23,1 +DA:24,3 +DA:35,1 +DA:37,7 +DA:38,16 +DA:39,16 +DA:49,7 +DA:50,12 +DA:59,7 +DA:60,4 +DA:62,4 +DA:63,4 +DA:64,12 +DA:65,12 +DA:70,7 +DA:72,7 +DA:73,5 +DA:75,2 +DA:76,4 +DA:77,4 +DA:81,2 +DA:87,2 +DA:89,1 +DA:90,1 +DA:92,2 +DA:93,1 +DA:94,1 +DA:95,0 +DA:98,1 +DA:99,2 +DA:100,2 +DA:111,2 +DA:113,0 +DA:116,5 +DA:119,7 +DA:120,3 +DA:122,3 +DA:124,1 +DA:132,1 +DA:134,2 +DA:135,2 +DA:139,2 +DA:141,0 +DA:144,3 +DA:147,7 +LF:56 +LH:53 +BRDA:1,0,0,7 +BRDA:1,0,1,7 +BRDA:1,0,2,0 +BRDA:19,1,0,1 +BRDA:19,1,1,0 +BRDA:19,2,0,1 +BRDA:19,2,1,1 +BRDA:38,3,0,5 +BRDA:38,3,1,11 +BRDA:73,4,0,2 +BRDA:73,4,1,1 +BRDA:73,4,2,2 +BRDA:73,4,3,0 +BRDA:76,5,0,4 +BRDA:76,5,1,0 +BRDA:92,6,0,1 +BRDA:92,6,1,1 +BRDA:94,7,0,0 +BRDA:94,7,1,1 +BRDA:99,8,0,2 +BRDA:99,8,1,0 +BRDA:122,9,0,1 +BRDA:122,9,1,2 +BRDA:122,9,2,0 +BRDA:128,10,0,1 +BRDA:128,10,1,0 +BRDA:137,11,0,2 +BRDA:137,11,1,1 +BRF:28 +BRH:20 +end_of_record diff --git a/manifest.json b/manifest.json index cfc7c12..c94bb20 100644 --- a/manifest.json +++ b/manifest.json @@ -1,61 +1,61 @@ { - "manifest_version": 2, + "manifest_version": 2, - "name": "Clippy", - "short_name": "Clippy Assistant", - "description": "Clippy MS Word Office assistant is now back to assist inside your browser!", - "version": "1.9.0", - "author": "Ante Barić (capJavert)", - "icons": { - "16": "src/assets/img/clippy-icon-16x16.png", - "48": "src/assets/img/clippy-icon-48x48.png", - "128": "src/assets/img/clippy-icon-128x128.png" - }, - "browser_action": { - "default_title": "Clippy Assistant", - "default_icon": { - "16": "src/assets/img/clippy-icon-gray-48x48.png", - "24": "src/assets/img/clippy-icon-gray-48x48.png", - "32": "src/assets/img/clippy-icon-gray-48x48.png" - } - }, - "content_scripts": [ - { - "matches": [""], - "css": [ - "src/assets/css/clippy.css" - ], - "js": [ - "src/assets/js/jquery.min.js", - "src/assets/js/clippy.js", - "src/assets/js/agent.js", - "src/index.js" - ], - "run_at": "document_end" - } - ], - "background": { - "scripts": [ - "src/assets/js/web-storage-object.js", - "src/assets/js/state.js" + "name": "Clippy", + "short_name": "Clippy Assistant", + "description": "Clippy MS Word Office assistant is now back to assist inside your browser!", + "version": "1.9.0", + "author": "Ante Barić (capJavert)", + "icons": { + "16": "src/assets/img/clippy-icon-16x16.png", + "48": "src/assets/img/clippy-icon-48x48.png", + "128": "src/assets/img/clippy-icon-128x128.png" + }, + "browser_action": { + "default_title": "Clippy Assistant", + "default_icon": { + "16": "src/assets/img/clippy-icon-gray-48x48.png", + "24": "src/assets/img/clippy-icon-gray-48x48.png", + "32": "src/assets/img/clippy-icon-gray-48x48.png" + } + }, + "content_scripts": [ + { + "matches": [""], + "css": [ + "src/assets/css/clippy.css" + ], + "js": [ + "src/assets/js/jquery.min.js", + "src/assets/js/clippy.js", + "src/assets/js/agent.js", + "src/index.js" + ], + "run_at": "document_end" + } + ], + "background": { + "scripts": [ + "src/assets/js/web-storage-object.js", + "src/assets/js/state.js" + ], + "persistent": true + }, + "web_accessible_resources": [ + "src/assets/img/clippy.map.png" ], - "persistent": true - }, - "web_accessible_resources": [ - "src/assets/img/clippy.map.png" - ], - "permissions": [ - "activeTab", - "https://raw.githubusercontent.com/capJavert/clippy-dictionary/*" - ], - "externally_connectable": { - "matches": [ - "http://localhost:8080/*", - "https://capjavert.github.com/*", - "https://antebaric.from.hr/*", - "http://antebaric.from.hr/*", - "https://kickass.website/*", - "https://clippy.kickass.website/*" - ] - } + "permissions": [ + "activeTab", + "https://raw.githubusercontent.com/capJavert/clippy-dictionary/*" + ], + "externally_connectable": { + "matches": [ + "http://localhost:8080/*", + "https://capjavert.github.com/*", + "https://antebaric.from.hr/*", + "http://antebaric.from.hr/*", + "https://kickass.website/*", + "https://clippy.kickass.website/*" + ] + } } diff --git a/package.json b/package.json index 7bf95dc..d1bbe95 100644 --- a/package.json +++ b/package.json @@ -1,23 +1,40 @@ { - "name": "clippy", - "version": "1.9.0", - "description": "Clippy MS Word Office asistant is now back to help inside your browser!", - "main": "src/index.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "build": "web-ext build --ignore-files package*.json src/assets/img/screenshots" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/capJavert/clippy.git" - }, - "author": "Ante Barić (capJavert)", - "license": "MIT", - "bugs": { - "url": "https://github.com/capJavert/clippy/issues" - }, - "homepage": "https://github.com/capJavert/clippy#readme", - "devDependencies": { - "web-ext": "^2.9.3" - } + "name": "clippy", + "version": "1.9.0", + "description": "Clippy MS Word Office asistant is now back to help inside your browser!", + "main": "src/index.js", + "scripts": { + "test": "jest --verbose", + "build": "web-ext build --ignore-files .nvmrc .editorconfig .eslintrc package*.json src/assets/img/screenshots", + "lint": "eslint --max-warnings=0 src" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/capJavert/clippy.git" + }, + "author": "Ante Barić (capJavert)", + "license": "MIT", + "bugs": { + "url": "https://github.com/capJavert/clippy/issues" + }, + "homepage": "https://github.com/capJavert/clippy#readme", + "devDependencies": { + "eslint": "^6.2.1", + "eslint-config-airbnb-base": "^14.0.0", + "eslint-plugin-import": "^2.18.2", + "husky": "^3.0.4", + "jest": "^24.9.0", + "web-ext": "^2.9.3" + }, + "husky": { + "hooks": { + "pre-push": "npm run lint" + } + }, + "jest": { + "collectCoverageFrom" : [ + "/src/index.js" , + "/src/assets/js/state.js" + ] + } } diff --git a/src/assets/js/clippy.js b/src/assets/js/clippy.js index a01f065..5f1d08e 100755 --- a/src/assets/js/clippy.js +++ b/src/assets/js/clippy.js @@ -1017,4 +1017,3 @@ clippy.Queue.prototype = { this._progressQueue(); } }; - diff --git a/src/assets/js/state.js b/src/assets/js/state.js index 32e461b..7be4867 100644 --- a/src/assets/js/state.js +++ b/src/assets/js/state.js @@ -1,149 +1,147 @@ - -var browser = (function () { - return window.msBrowser || - browser || - chrome; -})(); - -var settings = new webStorageObject.LocalStorageObject( - { - isActive: true, - comments: {} - }, - 'settings', - false -); - -var idleTime = 15000; -var getCommentsRepoURL = function () { - return 'https://raw.githubusercontent.com/capJavert/clippy-dictionary/master/clippy.json?v=' + new Date().getTime() -} -var loadComments = function () { - var xhttp = new XMLHttpRequest(); - xhttp.open('GET', getCommentsRepoURL(), true); - - xhttp.onreadystatechange = function () { +browser = window.msBrowser || window.browser || window.chrome + +const settings = new webStorageObject.LocalStorageObject( + { + isActive: true, + comments: {} + }, + 'settings', + false +) + +const idleTime = 15000 +const getCommentsRepoURL = () => `https://raw.githubusercontent.com/capJavert/clippy-dictionary/master/clippy.json?v=${new Date().getTime()}` +const loadComments = () => { + const xhttp = new XMLHttpRequest() + xhttp.open('GET', getCommentsRepoURL(), true) + + xhttp.onreadystatechange = () => { if (xhttp.readyState === 4 && xhttp.status === 200) { - settings.comments = JSON.parse(xhttp.response); + settings.comments = JSON.parse(xhttp.response) - browser.tabs.query({}, function(tabs) { - for (var index in tabs) { + browser.tabs.query({}, (tabs) => { + tabs.forEach((tab, index) => { browser.tabs.sendMessage( tabs[index].id, { name: 'comments', value: settings.comments } - ); - } - }); + ) + }) + }) } - }; - xhttp.send(); + } + xhttp.send() } -var toggleIcon = function (tab) { - var iconName = 'src/assets/img/clippy-icon' + (settings.isActive ? '' : '-gray'); +const toggleIcon = (tab) => { + const iconName = `src/assets/img/clippy-icon${settings.isActive ? '' : '-gray'}` browser.browserAction.setIcon({ path: { - 16: iconName + '-48x48.png', - 24: iconName + '-48x48.png', - 32: iconName + '-48x48.png' + 16: `${iconName}-48x48.png`, + 24: `${iconName}-48x48.png`, + 32: `${iconName}-48x48.png` }, tabId: tab.id - }); + }) } -var sendActive = function (tab) { +const sendActive = (tab) => { browser.tabs.sendMessage( tab.id, { name: 'isActive', value: settings.isActive } - ); + ) } -var toggleClippy = function() { - settings.isActive = !settings.isActive; +const toggleClippy = () => { + settings.isActive = !settings.isActive - browser.tabs.query({}, function(tabs) { - for (var index in tabs) { - sendActive(tabs[index]); - toggleIcon(tabs[index]); - } - }); + browser.tabs.query({}, (tabs) => { + tabs.forEach((tab, index) => { + sendActive(tabs[index]) + toggleIcon(tabs[index]) + }) + }) } -browser.browserAction.onClicked.addListener(function() { - toggleClippy(); -}); +browser.browserAction.onClicked.addListener(toggleClippy) -browser.runtime.onMessage.addListener(function(request, sender, sendResponse) { +browser.runtime.onMessage.addListener((request, sender, sendResponse) => { switch (request.name) { - case 'isActive': - browser.tabs.query({active: true, currentWindow: true}, function(tabs) { - if (tabs.length > 0) { - toggleIcon(tabs[0]); - } - }); + case 'isActive': + browser.tabs.query({ active: true, currentWindow: true }, (tabs) => { + if (tabs.length > 0) { + toggleIcon(tabs[0]) + } + }) - sendResponse( - { - name: 'isActive', - value: settings.isActive + sendResponse( + { + name: 'isActive', + value: settings.isActive + } + ) + break + case 'comments': + loadComments() + break + case 'idle': + if (settings.isActive) { + setTimeout(() => { + if (!settings.isActive) { + return } - ); - break; - case 'comments': - loadComments(); - break; - case 'idle': - if (settings.isActive) { - setTimeout(function(){ - if (!settings.isActive) { - return; - } - browser.tabs.query({active: true, currentWindow: true}, function(tabs) { - if (tabs.length > 0) { - browser.tabs.sendMessage( - tabs[0].id, - { - name: 'animate', - value: true - } - ); - } - }); - }, idleTime); - } - break; + browser.tabs.query({ active: true, currentWindow: true }, (tabs) => { + if (tabs.length > 0) { + browser.tabs.sendMessage( + tabs[0].id, + { + name: 'animate', + value: true + } + ) + } + }) + }, idleTime) + } + break + default: + break } - return true; -}); + return true +}) -browser.runtime.onMessageExternal.addListener(function(request, sender, sendResponse) { - switch (request.name) { +browser.runtime.onMessageExternal.addListener((request, sender, sendResponse) => { + const manifest = browser.runtime.getManifest() + + switch (request.name) { case 'WHAT_IS_THE_MEANING_OF_LIFE': - var manifest = chrome.runtime.getManifest(); - - sendResponse({ - name: 'SILENCE_MY_BROTHER', - value: { - installed: true, - isActive: settings.isActive || false, - version: manifest.version - } - }); - break + sendResponse({ + name: 'SILENCE_MY_BROTHER', + value: { + installed: true, + isActive: settings.isActive || false, + version: manifest.version + } + }) + break case 'RISE': - toggleClippy(); - sendResponse({ - name: 'SILENCE_MY_BROTHER', - value: settings.isActive || false - }); - } - - return true; -}); + toggleClippy() + sendResponse({ + name: 'SILENCE_MY_BROTHER', + value: settings.isActive || false + }) + break + default: + break + } + + return true +}) + +window.settings = settings diff --git a/src/index.js b/src/index.js index 19b19c3..e1e8a05 100644 --- a/src/index.js +++ b/src/index.js @@ -1,122 +1,120 @@ +browser = window.msBrowser || window.browser || window.chrome -var browser = (function () { - return window.msBrowser || - browser || - chrome; -})(); - -var clippyController = { +const clippyController = { agent: null, lastComment: null, animations: ['Congratulate', 'LookRight', 'SendMail', 'Thinking', 'Explain', 'IdleRopePile', 'IdleAtom', 'Print', 'GetAttention', 'Save', 'GetTechy', 'GestureUp', 'Idle1_1', 'Processing', 'Alert', 'LookUpRight', 'IdleSideToSide', 'LookLeft', 'IdleHeadScratch', 'LookUpLeft', 'CheckingSomething', 'Hearing_1', 'GetWizardy', 'IdleFingerTap', 'GestureLeft', 'Wave', 'GestureRight', 'Writing', 'IdleSnooze', 'LookDownRight', 'GetArtsy', 'LookDown', 'Searching', 'EmptyTrash', 'LookUp', 'GestureDown', 'RestPose', 'IdleEyeBrowRaise', 'LookDownLeft'], comments: {}, - init: function(agent) { - this.agent = agent; - this.fetchCommentUpdates(); + init(agent) { + this.agent = agent + this.fetchCommentUpdates() - browser.runtime.sendMessage({name: 'isActive'}, function(response) { + browser.runtime.sendMessage({ name: 'isActive' }, (response) => { if (response.value) { - clippyController.toggle(response.value); - clippyController.idle(); + clippyController.toggle(response.value) + clippyController.idle() } - }); + }) }, - talk: function () { - var hostname = window.location.hostname; - var clippyComments = []; + talk() { + const { hostname } = window.location + let clippyComments = [] - for (var property in this.comments) { - if (this.comments.hasOwnProperty(property)) { - if (hostname.indexOf(property) !== -1) { - if (this.comments[property].constructor === Array) { - clippyComments = clippyComments.concat(this.comments[property]); - } else { - clippyComments.push(this.comments[property]); - } + Object.keys(this.comments).forEach((property) => { + if (hostname.indexOf(property) !== -1) { + if (this.comments[property].constructor === Array) { + clippyComments = clippyComments.concat(this.comments[property]) + } else { + clippyComments.push(this.comments[property]) } } - } + }) if (clippyComments.length > 0) { - var nextComment = null; - if (clippyComments.constructor === Array) { - nextComment = clippyComments[Math.floor(Math.random()*clippyComments.length)]; - } else { - nextComment = clippyComments; - } + const nextComment = clippyComments.constructor === Array + ? clippyComments[Math.floor(Math.random() * clippyComments.length)] + : clippyComments if (nextComment !== this.lastComment) { - this.agent.speak(nextComment); - this.lastComment = nextComment; + this.agent.speak(nextComment) + this.lastComment = nextComment } else { - this.lastComment = null; + this.lastComment = null } } else { - this.agent.stop(); + this.agent.stop() } }, - toggle: function (state) { - var clippyBalloon = document.getElementsByClassName('clippy-balloon'); + toggle(state) { + const clippyBalloon = document.getElementsByClassName('clippy-balloon') if (clippyBalloon.length > 0) { - clippyBalloon[0].style.display = state && clippyBalloon[0].innerText.length > 0 ? 'block' : 'none'; + clippyBalloon[0].style.display = state && clippyBalloon[0].innerText.length > 0 ? 'block' : 'none' } - this.agent.stop(); + this.agent.stop() if (!state) { - this.agent.play('GoodBye', 5000, function () { - clippyController.agent.hide(true); - }); + this.agent.play('GoodBye', 5000, () => { + clippyController.agent.hide(true) + }) } else { - clippyController.agent.show(true); + clippyController.agent.show(true) } }, - fetchCommentUpdates: function () { - browser.runtime.sendMessage({name: 'comments'}); + fetchCommentUpdates() { + browser.runtime.sendMessage({ name: 'comments' }) }, - idle: function () { - browser.runtime.sendMessage({name: 'idle'}); + idle() { + browser.runtime.sendMessage({ name: 'idle' }) }, - animate: function (callback) { - this.agent.play(this.animations[Math.floor(Math.random()*this.animations.length)], 5000, callback); + animate(callback) { + this.agent.play( + this.animations[Math.floor(Math.random() * this.animations.length)], + 5000, + callback + ) } -}; +} -window.addEventListener('load', function () { - clippy.load('Clippy', function(agent){ - clippyController.init(agent); - }); +window.addEventListener('load', () => { + clippy.load('Clippy', (agent) => { + clippyController.init(agent) + }) }, false) -browser.runtime.onMessage.addListener(function(request) { +browser.runtime.onMessage.addListener((request) => { switch (request.name) { - case 'isActive': - clippyController.toggle(request.value); + case 'isActive': + clippyController.toggle(request.value) - if (request.value) { - clippyController.idle(); - } - break; - case 'comments': - clippyController.comments = request.value; - break; - case 'animate': - if(!clippyController.agent) { - return; - } + if (request.value) { + clippyController.idle() + } + break + case 'comments': + clippyController.comments = request.value + break + case 'animate': + if (!clippyController.agent) { + return + } - clippyController.fetchCommentUpdates(); + clippyController.fetchCommentUpdates() - browser.runtime.sendMessage({name: 'isActive'}, function(response) { - if (response.value) { - clippyController.agent.stop(); - clippyController.talk(); - clippyController.animate(function () { - clippyController.idle(); - }); - } - }); - break; + browser.runtime.sendMessage({ name: 'isActive' }, (response) => { + if (response.value) { + clippyController.agent.stop() + clippyController.talk() + clippyController.animate(() => { + clippyController.idle() + }) + } + }) + break + default: + break } -}); +}) + +window.clippyController = clippyController