mh-two-thousand-and-two
2024-04-12 3d2ec2fd0578d3ba0a414b0cc4e4a2ae60878596
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
import {
  invoke
} from '../../bridge'
 
const STORAGE_DATA_TYPE = '__TYPE'
const STORAGE_KEYS = 'uni-storage-keys'
 
function parseValue (value) {
  const types = ['object', 'string', 'number', 'boolean', 'undefined']
  try {
    const object = typeof value === 'string' ? JSON.parse(value) : value
    const type = object.type
    if (types.indexOf(type) >= 0) {
      const keys = Object.keys(object)
      if (keys.length === 2 && 'data' in object) {
        // eslint-disable-next-line valid-typeof
        if (typeof object.data === type) {
          return object.data
        }
        // eslint-disable-next-line no-useless-escape
        if (type === 'object' && /^\d{4}-\d{2}-\d{2}T\d{2}\:\d{2}\:\d{2}\.\d{3}Z$/.test(object.data)) {
          // ISO 8601 格式返回 Date
          return new Date(object.data)
        }
      } else if (keys.length === 1) {
        return ''
      }
    }
  } catch (error) {}
}
 
export function setStorage ({
  key,
  data,
  isSync
} = {}, callbackId) {
  const type = typeof data
  const value = type === 'string' ? data : JSON.stringify({
    type,
    data: data
  })
  try {
    if (type === 'string' && parseValue(value) !== undefined) {
      plus.storage.setItemAsync(key + STORAGE_DATA_TYPE, type, () => {})
    } else {
      plus.storage.removeItemAsync(key + STORAGE_DATA_TYPE, () => {})
    }
    plus.storage.setItemAsync(key, value, function () {
      invoke(callbackId, {
        errMsg: 'setStorage:ok'
      })
    }, function (err) {
      invoke(callbackId, {
        errMsg: `setStorage:fail ${err.message}`
      })
    })
  } catch (error) {
    invoke(callbackId, {
      errMsg: `setStorage:fail ${error}`
    })
  }
}
 
export function setStorageSync (key, data) {
  const type = typeof data
  const value = type === 'string' ? data : JSON.stringify({
    type,
    data: data
  })
  try {
    if (type === 'string' && parseValue(value) !== undefined) {
      plus.storage.setItem(key + STORAGE_DATA_TYPE, type)
    } else {
      plus.storage.removeItem(key + STORAGE_DATA_TYPE)
    }
    plus.storage.setItem(key, value)
  } catch (error) {
 
  }
}
 
function parseGetStorage (type, value) {
  let data = value
  if (type !== 'string' || (type === 'string' && value === '{"type":"undefined"}')) {
    try {
      // 兼容H5和V3初期历史格式
      let object = JSON.parse(value)
      const result = parseValue(object)
      if (result !== undefined) {
        data = result
      } else if (type) {
        // 兼容App端历史格式
        data = object
        if (typeof object === 'string') {
          object = JSON.parse(object)
          const objectType = typeof object
          if (objectType === 'number' && type === 'date') {
            data = new Date(object)
          } else if (objectType === (['null', 'array'].indexOf(type) < 0 ? type : 'object')) {
            data = object
          }
        }
      }
    } catch (error) {}
  }
  return data
}
 
export function getStorage ({
  key
} = {}, callbackId) {
  plus.storage.getItemAsync(key, function (res) {
    plus.storage.getItemAsync(key + STORAGE_DATA_TYPE, function (typeRes) {
      const typeOrigin = typeRes.data || ''
      const type = typeOrigin.toLowerCase()
      invoke(callbackId, {
        data: parseGetStorage(type, res.data),
        errMsg: 'getStorage:ok'
      })
    }, function () {
      const type = ''
      invoke(callbackId, {
        data: parseGetStorage(type, res.data),
        errMsg: 'getStorage:ok'
      })
    })
  }, function (err) {
    invoke(callbackId, {
      data: '',
      errMsg: `getStorage:fail ${err.message}`
    })
  })
}
 
export function getStorageSync (key) {
  const value = plus.storage.getItem(key)
  const typeOrigin = plus.storage.getItem(key + STORAGE_DATA_TYPE) || ''
  const type = typeOrigin.toLowerCase()
  if (typeof value !== 'string') {
    return ''
  }
  return parseGetStorage(type, value)
}
 
export function removeStorage ({
  key
} = {}, callbackId) {
  // 兼容App端历史格式
  plus.storage.removeItemAsync(key + STORAGE_DATA_TYPE, () => {})
  plus.storage.removeItemAsync(key, function (res) {
    invoke(callbackId, {
      errMsg: 'removeStorage:ok'
    })
  }, function (err) {
    invoke(callbackId, {
      errMsg: `removeStorage:fail ${err.message}`
    })
  })
}
 
export function removeStorageSync (key) {
  plus.storage.removeItem(key + STORAGE_DATA_TYPE)
  plus.storage.removeItem(key)
}
 
export function clearStorage (args, callbackId) {
  plus.storage.clearAsync(function (res) {
    invoke(callbackId, {
      errMsg: 'clearStorage:ok'
    })
  }, function (err) {
    invoke(callbackId, {
      errMsg: `clearStorage:fail ${err.message}`
    })
  })
}
 
export function clearStorageSync () {
  plus.storage.clear()
}
 
export function getStorageInfo () {
  const length = (plus.storage.length || plus.storage.getLength()) || 0
  const keys = []
  let currentSize = 0
  for (let index = 0; index < length; index++) {
    const key = plus.storage.key(index)
    if (key !== STORAGE_KEYS && (key.indexOf(STORAGE_DATA_TYPE) < 0 || key.indexOf(STORAGE_DATA_TYPE) + STORAGE_DATA_TYPE.length !== key.length)) {
      const value = plus.storage.getItem(key)
      currentSize += key.length + value.length
      keys.push(key)
    }
  }
  return {
    keys,
    currentSize: Math.ceil(currentSize * 2 / 1024),
    limitSize: Number.MAX_VALUE,
    errMsg: 'getStorageInfo:ok'
  }
}
 
export function getStorageInfoSync () {
  const res = getStorageInfo()
  delete res.errMsg
  return res
}