ui: replace uuid with nanoid

pull/148/head
undefined 3 years ago
parent cc569331e1
commit 04a4306895

@ -1,6 +1,6 @@
{ {
"name": "@hydrooj/ui-default", "name": "@hydrooj/ui-default",
"version": "4.10.2", "version": "4.10.3",
"author": "undefined <i@undefined.moe>", "author": "undefined <i@undefined.moe>",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"main": "hydro.js", "main": "hydro.js",
@ -66,6 +66,7 @@
"moment": "^2.29.1", "moment": "^2.29.1",
"monaco-editor": "^0.24.0", "monaco-editor": "^0.24.0",
"monaco-editor-webpack-plugin": "^3.0.1", "monaco-editor-webpack-plugin": "^3.0.1",
"nanoid": "^3.1.23",
"normalize.css": "^8.0.1", "normalize.css": "^8.0.1",
"nprogress": "^0.2.0", "nprogress": "^0.2.0",
"optimize-css-assets-webpack-plugin": "^5.0.4", "optimize-css-assets-webpack-plugin": "^5.0.4",
@ -96,7 +97,6 @@
"through2": "^4.0.2", "through2": "^4.0.2",
"timeago-react": "^3.0.2", "timeago-react": "^3.0.2",
"timeago.js": "^4.0.2", "timeago.js": "^4.0.2",
"uuid": "^8.3.2",
"vditor": "^3.8.4", "vditor": "^3.8.4",
"vinyl-buffer": "^1.0.1", "vinyl-buffer": "^1.0.1",
"wastyle": "^0.0.5", "wastyle": "^0.0.5",

@ -1,7 +1,7 @@
// Modified from jquery-pjax to support multiple fragments and jQuery 3.0 // Modified from jquery-pjax to support multiple fragments and jQuery 3.0
// https://github.com/defunkt/jquery-pjax/blob/master/jquery.pjax.js // https://github.com/defunkt/jquery-pjax/blob/master/jquery.pjax.js
import { v4 as uuid } from 'uuid'; import { nanoid } from 'nanoid';
import Notification from 'vj/components/notification'; import Notification from 'vj/components/notification';
import NProgress from 'vj/components/nprogress'; import NProgress from 'vj/components/nprogress';
import request from './request'; import request from './request';
@ -56,7 +56,7 @@ pjax.request = async (opt) => {
if (!currentState) { if (!currentState) {
// create initial state // create initial state
currentState = { currentState = {
id: uuid(), id: nanoid(),
options: { options: {
url: window.location.href, url: window.location.href,
}, },
@ -81,7 +81,7 @@ pjax.request = async (opt) => {
const data = await request.ajax(params); const data = await request.ajax(params);
const meta = extractMetaData(options, data); const meta = extractMetaData(options, data);
currentState = { currentState = {
id: uuid(), id: nanoid(),
options: opt, options: opt,
}; };
if (options.push) { if (options.push) {

Loading…
Cancel
Save