diff --git a/gulpfile.ts b/gulpfile.ts index cb7227213..641500bbe 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -3,6 +3,7 @@ */ import * as childProcess from 'child_process'; +import * as fs from 'fs'; import * as Path from 'path'; import * as gulp from 'gulp'; import * as gutil from 'gulp-util'; @@ -180,7 +181,9 @@ gulp.task('build:client:pug', [ .pipe(pug({ locals: { themeColor: constants.themeColor, - facss: fontawesome.dom.css() + facss: fontawesome.dom.css(), + //hljscss: fs.readFileSync('./node_modules/highlight.js/styles/default.css', 'utf8') + hljscss: fs.readFileSync('./src/web/assets/code-highlight.css', 'utf8') } })) .pipe(htmlmin({ diff --git a/locales/en.yml b/locales/en.yml index 9a54eed67..3009aad8c 100644 --- a/locales/en.yml +++ b/locales/en.yml @@ -441,6 +441,7 @@ mobile: rename: "Rename" move: "Move" hash: "Hash (md5)" + exif: "EXIF" mk-entrance-signin: signup: "Sign up" diff --git a/locales/ja.yml b/locales/ja.yml index dcf466339..cdfcd6385 100644 --- a/locales/ja.yml +++ b/locales/ja.yml @@ -441,6 +441,7 @@ mobile: rename: "名前を変更" move: "移動" hash: "ハッシュ (md5)" + exif: "EXIF" mk-entrance-signin: signup: "新規登録" diff --git a/package.json b/package.json index 6de160288..3bcb5f198 100644 --- a/package.json +++ b/package.json @@ -97,6 +97,7 @@ "escape-regexp": "0.0.1", "event-stream": "3.3.4", "eventemitter3": "3.0.0", + "exif-js": "^2.3.0", "express": "4.16.2", "file-type": "7.4.0", "fuckadblock": "3.2.1", @@ -113,6 +114,7 @@ "gulp-typescript": "3.2.3", "gulp-uglify": "3.0.0", "gulp-util": "3.0.8", + "highlight.js": "^9.12.0", "inquirer": "4.0.1", "is-root": "1.0.0", "is-url": "1.2.2", diff --git a/src/web/app/base.pug b/src/web/app/base.pug index 140286a76..d7c7f0aed 100644 --- a/src/web/app/base.pug +++ b/src/web/app/base.pug @@ -24,6 +24,9 @@ html //- FontAwesome style style #{facss} + //- highlight.js style + style #{hljscss} + body noscript: p | JavaScriptを有効にしてください diff --git a/src/web/app/mobile/tags/drive/file-viewer.tag b/src/web/app/mobile/tags/drive/file-viewer.tag index da895359d..48fc83fa6 100644 --- a/src/web/app/mobile/tags/drive/file-viewer.tag +++ b/src/web/app/mobile/tags/drive/file-viewer.tag @@ -1,6 +1,6 @@
- { + { %fa:file%
@@ -39,6 +39,14 @@
+
+
+

+ %fa:camera%%i18n:mobile.tags.mk-drive-file-viewer.exif% +

+
{ exif ? JSON.stringify(exif, null, 2) : '' }
+
+

@@ -178,12 +186,45 @@ white-space nowrap overflow auto font-size 0.8em + color #222 + border solid 1px #dfdfdf + border-radius 2px + background #f5f5f5 + + > .exif + padding 14px + border-top solid 1px #dfdfdf + + > div + max-width 500px + margin 0 auto + + > p + display block + margin 0 + padding 0 + color #555 + font-size 0.9em + + > [data-fa] + margin-right 4px + + > pre + display block + width 100% + margin 6px 0 0 0 + padding 8px + height 128px + overflow auto + font-size 0.9em border solid 1px #dfdfdf border-radius 2px background #f5f5f5