From a912a10145033796117f3c364e3502d7b00f1d26 Mon Sep 17 00:00:00 2001 From: Julien Nahum Date: Tue, 25 Jun 2024 16:41:14 +0200 Subject: [PATCH] Fix OpnForm production --- client/package-lock.json | 9 --------- client/package.json | 1 - client/plugins/pinia-history.js | 15 ++++----------- 3 files changed, 4 insertions(+), 21 deletions(-) diff --git a/client/package-lock.json b/client/package-lock.json index bd37b570..8a9c329f 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -29,7 +29,6 @@ "fuse.js": "^6.4.6", "js-sha256": "^0.10.0", "libphonenumber-js": "^1.10.44", - "lzutf8": "^0.6.3", "object-to-formdata": "^4.5.1", "pinia": "^2.1.7", "prismjs": "^1.24.1", @@ -9560,14 +9559,6 @@ "yallist": "^3.0.2" } }, - "node_modules/lzutf8": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/lzutf8/-/lzutf8-0.6.3.tgz", - "integrity": "sha512-CAkF9HKrM+XpB0f3DepQ2to2iUEo0zrbh+XgBqgNBc1+k8HMM3u/YSfHI3Dr4GmoTIez2Pr/If1XFl3rU26AwA==", - "dependencies": { - "readable-stream": "^4.0.0" - } - }, "node_modules/magic-string": { "version": "0.30.8", "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.8.tgz", diff --git a/client/package.json b/client/package.json index 2191552b..f9cea567 100644 --- a/client/package.json +++ b/client/package.json @@ -51,7 +51,6 @@ "fuse.js": "^6.4.6", "js-sha256": "^0.10.0", "libphonenumber-js": "^1.10.44", - "lzutf8": "^0.6.3", "object-to-formdata": "^4.5.1", "pinia": "^2.1.7", "prismjs": "^1.24.1", diff --git a/client/plugins/pinia-history.js b/client/plugins/pinia-history.js index 33bd106a..a1e7bcdb 100644 --- a/client/plugins/pinia-history.js +++ b/client/plugins/pinia-history.js @@ -1,5 +1,4 @@ import {computed, reactive} from 'vue' -import {compress, decompress} from 'lzutf8' import debounce from 'debounce' import {hash} from "~/lib/utils.js" @@ -13,19 +12,13 @@ function mergeOptions(options) { max: 30, persistent: false, persistentStrategy: { + // eslint-disable-next-line no-unused-vars get: function (store, type) { - if (typeof localStorage !== 'undefined') { - const key = `pinia-history-${store.$id}-${type}` - const value = localStorage.getItem(key) - return value ? decompress(value, {inputEncoding: 'Base64'}).split(',') : undefined - } + // Todo }, + // eslint-disable-next-line no-unused-vars set: function (store, type, value) { - if (typeof localStorage !== 'undefined') { - const key = `pinia-history-${store.$id}-${type}` - const string = compress(value.join(','), {outputEncoding: 'Base64'}) - localStorage.setItem(key, string) - } + // Todo }, remove: function (store, type) { if (typeof localStorage !== 'undefined') {