aboutsummaryrefslogtreecommitdiff
path: root/src/components/still-image/still-image.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/still-image/still-image.js')
-rw-r--r--src/components/still-image/still-image.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/components/still-image/still-image.js b/src/components/still-image/still-image.js
new file mode 100644
index 00000000..0839aca5
--- /dev/null
+++ b/src/components/still-image/still-image.js
@@ -0,0 +1,26 @@
+const StillImage = {
+ props: [
+ 'src',
+ 'referrerpolicy',
+ 'mimetype'
+ ],
+ data () {
+ return {
+ stopGifs: this.$store.state.config.stopGifs
+ }
+ },
+ computed: {
+ animated () {
+ return this.stopGifs && (this.mimetype === 'image/gif' || this.src.endsWith('.gif'))
+ }
+ },
+ methods: {
+ onLoad () {
+ const canvas = this.$refs.canvas
+ if (!canvas) return
+ canvas.getContext('2d').drawImage(this.$refs.src, 1, 1, canvas.width, canvas.height)
+ }
+ }
+}
+
+export default StillImage