summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYukai Huang2016-10-10 10:14:17 +0800
committerYukai Huang2016-10-10 10:14:17 +0800
commit20f2e27350dba2f77199b434a4c236073f1aae04 (patch)
treeded6e2961daf3795d3269fdb8e7c12124f64bed8
parent8cd1cf30a5f0f3b04222623998db4608a584e29d (diff)
Cover page is now working
-rw-r--r--public/js/cover.js22
-rw-r--r--public/js/history.js9
-rw-r--r--public/js/locale.js4
-rw-r--r--public/views/index.ejs5
-rw-r--r--webpack.config.js3
5 files changed, 32 insertions, 11 deletions
diff --git a/public/js/cover.js b/public/js/cover.js
index f3533826..d3d3c10b 100644
--- a/public/js/cover.js
+++ b/public/js/cover.js
@@ -1,3 +1,17 @@
+var common = require('./common');
+var checkIfAuth = common.checkIfAuth;
+var urlpath = common.urlpath;
+var serverurl = common.serverurl;
+var resetCheckAuth = common.resetCheckAuth;
+
+var historyModule = require('./history');
+var parseStorageToHistory = historyModule.parseStorageToHistory;
+var parseHistory = historyModule.parseHistory;
+var getStorageHistory = historyModule.getStorageHistory;
+var getHistory = historyModule.getHistory;
+var saveHistory = historyModule.saveHistory;
+var removeHistory = historyModule.removeHistory;
+
var options = {
valueNames: ['id', 'text', 'timestamp', 'fromNow', 'time', 'tags', 'pinned'],
item: '<li class="col-xs-12 col-sm-6 col-md-6 col-lg-4">\
@@ -265,16 +279,16 @@ $(".ui-clear-history").click(function () {
});
$(".ui-refresh-history").click(function () {
- var lastTags = $(".ui-use-tags").select2('val');
+ var lastTags = $(".ui-use-tags").select2('val');
$(".ui-use-tags").select2('val', '');
historyList.filter();
var lastKeyword = $('.search').val();
$('.search').val('');
historyList.search();
-
+
resetCheckAuth();
historyList.clear();
- parseHistory(historyList, function (list, notehistory) {
+ parseHistory(historyList, function (list, notehistory) {
parseHistoryCallback(list, notehistory);
$(".ui-use-tags").select2('val', lastTags);
$(".ui-use-tags").trigger('change');
@@ -336,4 +350,4 @@ $(".ui-use-tags").on('change', function () {
$('.search').keyup(function () {
checkHistoryList();
-}); \ No newline at end of file
+});
diff --git a/public/js/history.js b/public/js/history.js
index 23c7bebd..192a40b3 100644
--- a/public/js/history.js
+++ b/public/js/history.js
@@ -3,6 +3,7 @@ var store = require('store');
var common = require('./common');
var checkIfAuth = common.checkIfAuth;
var urlpath = common.urlpath;
+var serverurl = common.serverurl;
var extra = require('./extra');
var renderFilename = extra.renderFilename;
@@ -378,5 +379,11 @@ function parseToHistory(list, notehistory, callback) {
}
module.exports = {
- writeHistory: writeHistory
+ writeHistory: writeHistory,
+ parseHistory: parseHistory,
+ getStorageHistory: getStorageHistory,
+ getHistory: getHistory,
+ saveHistory: saveHistory,
+ removeHistory: removeHistory,
+ parseStorageToHistory: parseStorageToHistory
}
diff --git a/public/js/locale.js b/public/js/locale.js
index 6fe7fdb6..484ce22f 100644
--- a/public/js/locale.js
+++ b/public/js/locale.js
@@ -1,3 +1,5 @@
+require('./cover');
+
var lang = "en";
var userLang = navigator.language || navigator.userLanguage;
var userLangCode = userLang.split('-')[0];
@@ -21,4 +23,4 @@ locale.change(function() {
expires: 365
});
window.location.reload();
-}); \ No newline at end of file
+});
diff --git a/public/views/index.ejs b/public/views/index.ejs
index f5f848e6..04a401a4 100644
--- a/public/views/index.ejs
+++ b/public/views/index.ejs
@@ -205,10 +205,7 @@
<script src="<%- url %>/vendor/file-saver/FileSaver.min.js" defer></script>
<script src="<%- url %>/vendor/store-js/store.min.js" defer></script>
<script src="<%- url %>/vendor/lz-string/libs/lz-string.min.js" defer></script>
- <script src="<%- url %>/js/common.js" defer></script>
- <script src="<%- url %>/js/history.js" defer></script>
- <script src="<%- url %>/js/cover.js" defer></script>
- <script src="<%- url %>/js/locale.js" defer></script>
+ <script src="<%- url %>/build/locale.js" defer></script>
</body>
</html>
diff --git a/webpack.config.js b/webpack.config.js
index a4fabde7..5a7d6718 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -23,7 +23,8 @@ module.exports = {
entry: {
index: path.join(__dirname, 'public/js/index.js'),
public: path.join(__dirname, 'public/js/public.js'),
- slide: path.join(__dirname, 'public/js/slide.js')
+ slide: path.join(__dirname, 'public/js/slide.js'),
+ locale: path.join(__dirname, 'public/js/locale.js')
},
output: {