aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts
diff options
context:
space:
mode:
authorPhil Crosby2012-06-10 23:29:13 -0700
committerPhil Crosby2012-06-12 22:00:34 -0700
commitc7ce35423e3871dc121830f38de9cd79aebd704a (patch)
treeec7795b370b8f772547da576c7b5115b89b09b5b /background_scripts
parentd4c6b5708a6c388026dc348b81dd168b345d60de (diff)
downloadvimium-c7ce35423e3871dc121830f38de9cd79aebd704a.tar.bz2
Port settings.js to coffeescript
Diffstat (limited to 'background_scripts')
-rw-r--r--background_scripts/settings.coffee67
-rw-r--r--background_scripts/settings.js81
2 files changed, 67 insertions, 81 deletions
diff --git a/background_scripts/settings.coffee b/background_scripts/settings.coffee
new file mode 100644
index 00000000..ba9d1831
--- /dev/null
+++ b/background_scripts/settings.coffee
@@ -0,0 +1,67 @@
+#
+# Used by everyone to manipulate localStorage.
+#
+Settings =
+ defaults:
+ scrollStepSize: 60
+ linkHintCharacters: "sadfjklewcmpgh"
+ filterLinkHints: false
+ hideHud: false
+ userDefinedLinkHintCss:
+ "div > .vimiumHintMarker {" + "\n" +
+ "/* linkhint boxes */ " + "\n" +
+ "background-color: yellow;" + "\n" +
+ "border: 1px solid #E3BE23;" + "\n" +
+ "}" + "\n\n" +
+ "div > .vimiumHintMarker span {" + "\n" +
+ "/* linkhint text */ " + "\n" +
+ "color: black;" + "\n" +
+ "font-weight: bold;" + "\n" +
+ "font-size: 12px;" + "\n" +
+ "}" + "\n\n" +
+ "div > .vimiumHintMarker > .matchingCharacter {" + "\n" +
+ "}"
+ excludedUrls: "http*://mail.google.com/*\n" +
+ "http*://www.google.com/reader/*\n"
+
+ # NOTE : If a page contains both a single angle-bracket link and a double angle-bracket link, then in
+ # most cases the single bracket link will be "prev/next page" and the double bracket link will be
+ # "first/last page", so we put the single bracket first in the pattern string so that it gets searched
+ # for first.
+
+ # "\bprev\b,\bprevious\b,\bback\b,<,←,«,≪,<<"
+ previousPatterns: "prev,previous,back,<,\u2190,\xab,\u226a,<<"
+ # "\bnext\b,\bmore\b,>,→,»,≫,>>"
+ nextPatterns: "next,more,>,\u2192,\xbb,\u226b,>>"
+
+ init: ->
+ # settingsVersion was introduced in v1.31, and is used to coordinate data migration. We do not use
+ # previousVersion as it is used to coordinate the display of the upgrade message, and is not updated
+ # early enough when the extension loads.
+ # 1.31 was also the version where we converted all localStorage values to JSON.
+ if (!this.has("settingsVersion"))
+ for key of localStorage
+ # filterLinkHints' checkbox state used to be stored as a string
+ if (key == "filterLinkHints")
+ localStorage[key] = if (localStorage[key] == "true") then true else false
+ else
+ localStorage[key] = JSON.stringify(localStorage[key])
+ this.set("settingsVersion", utils.getCurrentVersion())
+
+ get: (key) ->
+ if (key of localStorage) then JSON.parse(localStorage[key]) else this.defaults[key]
+
+ set: (key, value) ->
+ # don't store the value if it is equal to the default, so we can change the defaults in the future
+ if (value == this.defaults[key])
+ this.clear(key)
+ else
+ localStorage[key] = JSON.stringify(value)
+
+ clear: (key) -> delete localStorage[key]
+
+ has: (key) -> key of localStorage
+
+Settings.init()
+root = exports ? window
+root.Settings = Settings
diff --git a/background_scripts/settings.js b/background_scripts/settings.js
deleted file mode 100644
index a00317b0..00000000
--- a/background_scripts/settings.js
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * Used by everyone to manipulate localStorage.
- */
-var settings = {
-
- defaults: {
- scrollStepSize: 60,
- linkHintCharacters: "sadfjklewcmpgh",
- filterLinkHints: false,
- hideHud: false,
- userDefinedLinkHintCss:
- "div > .vimiumHintMarker {" + "\n" +
- "/* linkhint boxes */ " + "\n" +
- "background-color: yellow;" + "\n" +
- "border: 1px solid #E3BE23;" + "\n" +
- "}" + "\n\n" +
- "div > .vimiumHintMarker span {" + "\n" +
- "/* linkhint text */ " + "\n" +
- "color: black;" + "\n" +
- "font-weight: bold;" + "\n" +
- "font-size: 12px;" + "\n" +
- "}" + "\n\n" +
- "div > .vimiumHintMarker > .matchingCharacter {" + "\n" +
- "}",
- excludedUrls: "http*://mail.google.com/*\n" +
- "http*://www.google.com/reader/*\n",
-
- // NOTE : If a page contains both a single angle-bracket link and a double angle-bracket link, then in
- // most cases the single bracket link will be "prev/next page" and the double bracket link will be
- // "first/last page", so we put the single bracket first in the pattern string so that it gets searched
- // for first.
-
- // "\bprev\b,\bprevious\b,\bback\b,<,←,«,≪,<<"
- previousPatterns: "prev,previous,back,<,\u2190,\xab,\u226a,<<",
- // "\bnext\b,\bmore\b,>,→,»,≫,>>"
- nextPatterns: "next,more,>,\u2192,\xbb,\u226b,>>",
- },
-
- init: function() {
- // settingsVersion was introduced in v1.31, and is used to coordinate data migration. We do not use
- // previousVersion as it is used to coordinate the display of the upgrade message, and is not updated
- // early enough when the extension loads.
- // 1.31 was also the version where we converted all localStorage values to JSON.
- if (!this.has("settingsVersion")) {
- for (var key in localStorage) {
- // filterLinkHints' checkbox state used to be stored as a string
- if (key == "filterLinkHints")
- localStorage[key] = localStorage[key] === "true" ? true : false;
- else
- localStorage[key] = JSON.stringify(localStorage[key]);
- }
- this.set("settingsVersion", utils.getCurrentVersion());
- }
- },
-
- get: function(key) {
- if (!(key in localStorage))
- return this.defaults[key];
- else
- return JSON.parse(localStorage[key]);
- },
-
- set: function(key, value) {
- // don't store the value if it is equal to the default, so we can change the defaults in the future
- if (value === this.defaults[key])
- this.clear(key);
- else
- localStorage[key] = JSON.stringify(value);
- },
-
- clear: function(key) {
- delete localStorage[key];
- },
-
- has: function(key) {
- return key in localStorage;
- },
-
-};
-
-settings.init();