diff options
| author | journey-ad <[email protected]> | 2023-04-04 15:01:50 +0800 |
|---|---|---|
| committer | journey-ad <[email protected]> | 2023-04-04 15:01:50 +0800 |
| commit | 8e3a196dc36b1e5223d8bffead951d65538b8775 (patch) | |
| tree | 1fa47ec98f64effe5919bd1f6ad17f45c33800a6 | |
| parent | feat: Get url from req for index page (diff) | |
| download | counter-8e3a196dc36b1e5223d8bffead951d65538b8775.tar.xz counter-8e3a196dc36b1e5223d8bffead951d65538b8775.zip | |
perf: Use more precise variable naming and support configuration.
| -rw-r--r-- | Readme.md | 1 | ||||
| -rw-r--r-- | config.yml | 1 | ||||
| -rw-r--r-- | index.js | 4 | ||||
| -rw-r--r-- | views/index.pug | 26 |
4 files changed, 17 insertions, 15 deletions
@@ -48,6 +48,7 @@ $ yarn start ```yaml app: + # site: https://count.getloli.com # your website port: 3000 db: @@ -1,4 +1,5 @@ app: + # site: https://count.getloli.com # your website port: 3000 db: @@ -17,8 +17,8 @@ app.use(compression()) app.set('view engine', 'pug') app.get('/', (req, res) => { - const url = req.protocol+'://'+req.get('host') - res.render('index', { url }) + const site = config.app.site || `${req.protocol}://${req.get('host')}` + res.render('index', { site }) }); // get the image diff --git a/views/index.pug b/views/index.pug index b77784a..a144569 100644 --- a/views/index.pug +++ b/views/index.pug @@ -25,16 +25,16 @@ html h3 How to use: h5 SVG address - code #{url}/get/@:name + code #{site}/get/@:name h5 Img tag - code <img src="#{url}/get/@:name" alt=":name" /> + code <img src="#{site}/get/@:name" alt=":name" /> h5 Markdown - code  + code  h3 eg: - <img src="#{url}/get/@index" alt="Moe Count!" /> + <img src="#{site}/get/@index" alt="Moe Count!" /> i Data can access by anyone, please | <span style="color: #ff4500;"> DO NOT</span> @@ -43,19 +43,19 @@ html details summary(style='display: inline-block;', onclick='_evt_push("click", "normal", "more_theme")') h3(style='display: inline-block; cursor: pointer;') More theme - p(style='margin: 0;') Just use the query parameters <code>theme</code>, like this: <code>#{url}/get/@:name?theme=moebooru</code> + p(style='margin: 0;') Just use the query parameters <code>theme</code>, like this: <code>#{site}/get/@:name?theme=moebooru</code> h5 asoul - img(src='#{url}/get/@demo?theme=asoul', alt='A-SOUL') + img(src='#{site}/get/@demo?theme=asoul', alt='A-SOUL') h5 moebooru - img(src='#{url}/get/@demo?theme=moebooru', alt='Moebooru') + img(src='#{site}/get/@demo?theme=moebooru', alt='Moebooru') h5 moebooru-h - img(src='#{url}/get/@demo?theme=moebooru-h', alt='Moebooru-Hentai') + img(src='#{site}/get/@demo?theme=moebooru-h', alt='Moebooru-Hentai') h5 rule34 - img(src='#{url}/get/@demo?theme=rule34', alt='Rule34') + img(src='#{site}/get/@demo?theme=rule34', alt='Rule34') h5 gelbooru - img(src='#{url}/get/@demo?theme=gelbooru', alt='Gelbooru') + img(src='#{site}/get/@demo?theme=gelbooru', alt='Gelbooru') h5 gelbooru-h - img(src='#{url}/get/@demo?theme=gelbooru-h', alt='Gelbooru-Hentai') + img(src='#{site}/get/@demo?theme=gelbooru-h', alt='Gelbooru-Hentai') h3 Credits ul @@ -76,7 +76,7 @@ html h3 Tool .tool - code #{url}/get/@ + code #{site}/get/@ input#name(type='text', placeholder=':name', style='display: inline-block; width: 80px; height: 1.4em; line-height: 1.4em; margin: 0 4px; vertical-align: middle;') code ?theme= select#theme(style='display: inline-block; height: 1.6em; line-height: 1.6em; font-size: 14px; margin: 0 4px; padding: 0 4px; vertical-align: middle;') @@ -103,7 +103,7 @@ html return } - img.src = '#{url}/get/@' + text + '?theme=' + theme + img.src = '#{site}/get/@' + text + '?theme=' + theme }) iframe(src="https://chat.getloli.com/room/@Moe-counter?title=%E8%90%8C%E8%90%8C%E8%AE%A1%E6%95%B0%E5%99%A8%E7%9A%84%E7%95%99%E8%A8%80%E6%9D%BF", scrolling="no", frameborder="0", height="70%", width="26%", style="position: fixed;top: 2%;right: 5%;") |