Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
Neos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
Neos
Commits
d58778dc
Commit
d58778dc
authored
Oct 09, 2024
by
chechunchi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "add env 408 cdb"
This reverts commit
2264b8a3
.
parent
2264b8a3
Pipeline
#30299
failed with stages
in 2 minutes and 56 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
127 additions
and
129 deletions
+127
-129
neos.config.json
neos.config.json
+0
-4
neos.config.prod.json
neos.config.prod.json
+0
-4
src/container/compat.ts
src/container/compat.ts
+2
-3
src/container/impl.ts
src/container/impl.ts
+1
-4
src/middleware/sqlite/index.ts
src/middleware/sqlite/index.ts
+113
-90
src/ui/Layout/utils.ts
src/ui/Layout/utils.ts
+11
-24
No files found.
neos.config.json
View file @
d58778dc
...
...
@@ -39,10 +39,6 @@
"lflist"
:
"https://cdn02.moecube.com:444/ygopro-database/zh-CN/lflist.conf"
,
"config"
:
"https://cdn02.moecube.com:444/ygopro-super-pre/data/test-release-v2.json"
},
"env408Resource"
:
{
"cdb"
:
"https://cdn02.moecube.com:444/cn-database/env408-zh-CN/expansions/env408.cdb"
,
"lflist"
:
"https://cdn02.moecube.com:444/cn-database/env408-zh-CN/expansions/lflist.conf"
},
"stringsUrl"
:
"https://cdn02.moecube.com:444/ygopro-database/zh-CN/strings.conf"
,
"replayUrl"
:
"replay.neos.moe"
,
"loginUrl"
:
"https://accounts.moecube.com/signin"
,
...
...
neos.config.prod.json
View file @
d58778dc
...
...
@@ -39,10 +39,6 @@
"lflist"
:
"https://cdn02.moecube.com:444/ygopro-database/zh-CN/lflist.conf"
,
"config"
:
"https://cdn02.moecube.com:444/ygopro-super-pre/data/test-release-v2.json"
},
"env408Resource"
:
{
"cdb"
:
"https://cdn02.moecube.com:444/cn-database/env408-zh-CN/expansions/env408.cdb"
,
"lflist"
:
"https://cdn02.moecube.com:444/cn-database/env408-zh-CN/expansions/lflist.conf"
},
"stringsUrl"
:
"https://cdn02.moecube.com:444/ygopro-database/zh-CN/strings.conf"
,
"replayUrl"
:
"replay.neos.moe"
,
"loginUrl"
:
"https://accounts.moecube.com/signin"
,
...
...
src/container/compat.ts
View file @
d58778dc
...
...
@@ -12,11 +12,10 @@ import {
import
{
CONTAINERS
}
from
"
.
"
;
import
{
Context
}
from
"
./context
"
;
import
{
Container
}
from
"
./impl
"
;
import
{
YgoCdb
}
from
"
@/middleware/sqlite
"
;
const
UI_KEY
=
"
NEOS_UI
"
;
export
function
initUIContainer
(
conn
:
WebSocketStream
,
cdb
:
YgoCdb
)
{
export
function
initUIContainer
(
conn
:
WebSocketStream
)
{
const
context
=
new
Context
({
matStore
,
cardStore
,
...
...
@@ -26,7 +25,7 @@ export function initUIContainer(conn: WebSocketStream, cdb: YgoCdb) {
sideStore
,
historyStore
,
});
const
container
=
new
Container
(
context
,
conn
,
cdb
);
const
container
=
new
Container
(
context
,
conn
);
CONTAINERS
.
set
(
UI_KEY
,
container
);
}
...
...
src/container/impl.ts
View file @
d58778dc
import
{
WebSocketStream
}
from
"
@/infra
"
;
import
{
Context
}
from
"
./context
"
;
import
{
YgoCdb
}
from
"
@/middleware/sqlite
"
;
export
class
Container
{
public
context
:
Context
;
public
conn
:
WebSocketStream
;
public
cdb
:
YgoCdb
;
// ref: https://yugioh.fandom.com/wiki/Kuriboh
private
enableKuriboh
:
boolean
=
false
;
constructor
(
context
:
Context
,
conn
:
WebSocketStream
,
cdb
:
YgoCdb
)
{
constructor
(
context
:
Context
,
conn
:
WebSocketStream
)
{
this
.
context
=
context
;
this
.
conn
=
conn
;
this
.
cdb
=
cdb
;
}
public
setEnableKuriboh
(
value
:
boolean
)
{
...
...
src/middleware/sqlite/index.ts
View file @
d58778dc
...
...
@@ -39,13 +39,6 @@ export interface sqliteAction<T extends sqliteCmd> {
};
}
interface
CdbInitInfo
{
main
:
string
;
sub
?:
string
;
i18n
:
boolean
;
progressCallback
?:
(
progress
:
number
)
=>
void
;
// 用于获取读取进度
}
export
interface
sqliteResult
{
selectResult
?:
CardMeta
;
ftsResult
?:
CardMeta
[];
...
...
@@ -55,88 +48,23 @@ const sqlPromise = initSqlJs({
locateFile
:
(
file
)
=>
`
${
NeosConfig
.
assetsPath
}
/
${
file
}
`
,
});
export
class
YgoCdb
{
private
main
?:
Database
;
private
sub
?:
Database
;
constructor
()
{}
public
async
init
(
info
:
CdbInitInfo
):
Promise
<
void
>
{
if
(
info
.
i18n
)
{
const
language
=
localStorage
.
getItem
(
"
language
"
)
??
"
cn
"
;
// Update URLs based on the language
updateDbUrls
(
info
,
language
);
}
const
promises
=
[
pfetch
(
info
.
main
,
{
progressCallback
:
info
.
progressCallback
,
}).
then
((
res
)
=>
res
.
arrayBuffer
())];
if
(
info
.
sub
!==
undefined
)
{
promises
.
push
(
pfetch
(
info
.
sub
,
{
progressCallback
:
info
.
progressCallback
,
}).
then
((
res
)
=>
res
.
arrayBuffer
()));
}
const
sql
=
await
sqlPromise
;
return
Promise
.
all
(
promises
).
then
(([
mainBuffer
,
subBuffer
])
=>
{
this
.
main
=
new
sql
.
Database
(
new
Uint8Array
(
mainBuffer
));
this
.
sub
=
new
sql
.
Database
(
new
Uint8Array
(
subBuffer
),
);
console
.
log
(
"
YGODB inited!
"
);
});
}
public
select
(
code
:
number
):
sqliteResult
{
if
(
this
.
main
)
{
const
db
=
isSuperReleaseCard
(
code
)
?
this
.
sub
!
// must be initialized when `isSuperReleaseCard` return true
:
this
.
main
;
const
dataStmt
=
db
.
prepare
(
"
SELECT * FROM datas WHERE ID = $id
"
);
const
dataResult
=
dataStmt
.
getAsObject
({
$id
:
code
});
const
textStmt
=
db
.
prepare
(
"
SELECT * FROM texts WHERE ID = $id
"
);
const
textResult
=
textStmt
.
getAsObject
({
$id
:
code
});
return
{
selectResult
:
constructCardMeta
(
code
,
dataResult
,
textResult
),
};
}
else
{
console
.
warn
(
"
ygo cdb not init!
"
);
return
{};
}
}
public
fts
(
params
:
FtsParams
):
sqliteResult
{
if
(
this
.
main
)
{
let
metas
=
invokeFts
(
this
.
main
,
params
,
);
if
(
this
.
sub
!==
undefined
)
{
metas
=
metas
.
concat
(
invokeFts
(
this
.
sub
,
params
));
}
export
default
function
<
T
extends
sqliteCmd
>
(
action
:
sqliteAction
<
T
>
,
):
T
extends
sqliteCmd
.
INIT
?
Promise
<
void
>
:
sqliteResult
{
return
helper
(
action
)
as
any
;
}
return
{
ftsResult
:
metas
};
}
else
{
console
.
warn
(
"
ygo db not init!
"
);
return
{};
}
}
// TODO: may defining a class be better?
interface
YgoDbs
{
release
:
Database
|
null
;
preRelease
:
Database
|
null
;
}
let
YGODBS
:
YgoDbs
=
{
release
:
null
,
preRelease
:
null
};
//It currently only supports en-US, es-ES, ja-JP, ko-KR, zh-CN
// Function to update URLs based on the language
//
// Note: it currently only supports en-US, es-ES, ja-JP, ko-KR, zh-CN for main cdb
function
updateDbUrls
(
info
:
CdbInitInfo
,
language
:
string
):
void
{
function
updateDbUrls
(
info
:
any
,
language
:
string
):
void
{
const
languageMap
:
{
[
key
:
string
]:
string
}
=
{
en
:
"
en-US
"
,
br
:
"
en-US
"
,
...
...
@@ -147,8 +75,106 @@ function updateDbUrls(info: CdbInitInfo, language: string): void {
es
:
"
es-ES
"
,
};
const
locale
=
languageMap
[
language
]
??
"
zh-CN
"
;
info
.
main
=
info
.
main
.
replace
(
"
zh-CN
"
,
locale
);
const
locale
=
languageMap
[
language
]
||
"
zh-CN
"
;
info
.
releaseDbUrl
=
info
.
releaseDbUrl
.
replace
(
"
zh-CN
"
,
locale
);
info
.
preReleaseDbUrl
=
info
.
preReleaseDbUrl
.
replace
(
"
zh-CN
"
,
locale
);
}
// FIXME: 应该有个返回值,告诉业务方本次请求的结果,比如初始化DB失败
function
helper
<
T
extends
sqliteCmd
>
(
action
:
sqliteAction
<
T
>
)
{
switch
(
action
.
cmd
)
{
case
sqliteCmd
.
INIT
:
{
const
info
=
action
.
initInfo
;
if
(
info
)
{
const
language
=
localStorage
.
getItem
(
"
language
"
)
||
"
cn
"
;
// Update URLs based on the language
updateDbUrls
(
info
,
language
);
const
releasePromise
=
pfetch
(
info
.
releaseDbUrl
,
{
progressCallback
:
action
.
initInfo
?.
progressCallback
,
}).
then
((
res
)
=>
res
.
arrayBuffer
());
// TODO: i18n
const
preReleasePromise
=
pfetch
(
info
.
preReleaseDbUrl
,
{
progressCallback
:
action
.
initInfo
?.
progressCallback
,
}).
then
((
res
)
=>
res
.
arrayBuffer
());
return
Promise
.
all
([
sqlPromise
,
releasePromise
,
preReleasePromise
,
]).
then
(([
SQL
,
releaseBuffer
,
preReleaseBuffer
])
=>
{
YGODBS
.
release
=
new
SQL
.
Database
(
new
Uint8Array
(
releaseBuffer
));
YGODBS
.
preRelease
=
new
SQL
.
Database
(
new
Uint8Array
(
preReleaseBuffer
),
);
console
.
log
(
"
YGODB inited!
"
);
});
}
else
{
console
.
warn
(
"
init YGODB action without initInfo
"
);
return
{};
}
}
case
sqliteCmd
.
SELECT
:
{
if
(
YGODBS
.
release
&&
YGODBS
.
preRelease
&&
action
.
payload
&&
action
.
payload
.
id
)
{
const
code
=
action
.
payload
.
id
;
const
db
=
isSuperReleaseCard
(
code
)
?
YGODBS
.
preRelease
:
YGODBS
.
release
;
const
dataStmt
=
db
.
prepare
(
"
SELECT * FROM datas WHERE ID = $id
"
);
const
dataResult
=
dataStmt
.
getAsObject
({
$id
:
code
});
const
textStmt
=
db
.
prepare
(
"
SELECT * FROM texts WHERE ID = $id
"
);
const
textResult
=
textStmt
.
getAsObject
({
$id
:
code
});
return
{
selectResult
:
constructCardMeta
(
code
,
dataResult
,
textResult
),
};
}
else
{
if
(
action
.
payload
?.
id
!==
0
)
{
// 0是无效的卡片ID,不需要报错,返回空即可
console
.
warn
(
"
ygo db not init or id not provied!
"
);
}
}
return
{};
}
case
sqliteCmd
.
FTS
:
{
if
(
YGODBS
.
release
&&
YGODBS
.
preRelease
&&
action
.
payload
&&
action
.
payload
.
ftsParams
)
{
const
releaseMetas
=
invokeFts
(
YGODBS
.
release
,
action
.
payload
.
ftsParams
,
);
const
preReleaseMetas
=
invokeFts
(
YGODBS
.
preRelease
,
action
.
payload
.
ftsParams
,
);
const
metas
=
releaseMetas
.
concat
(
preReleaseMetas
);
return
{
ftsResult
:
metas
};
}
else
{
console
.
warn
(
"
ygo db not init or query not provied!
"
);
}
return
{};
}
default
:
{
console
.
warn
(
`Unhandled sqlite command:
${
action
.
cmd
}
`
);
return
{};
}
}
}
export
function
constructCardMeta
(
...
...
@@ -167,6 +193,3 @@ export function constructCardMeta(
text
,
};
}
export
const
OCG_CDB
:
YgoCdb
=
new
YgoCdb
();
export
const
ENV_408_CDB
:
YgoCdb
=
new
YgoCdb
();
src/ui/Layout/utils.ts
View file @
d58778dc
...
...
@@ -10,39 +10,26 @@ import {
}
from
"
@/api
"
;
import
{
useConfig
}
from
"
@/config
"
;
import
{
useEnv
}
from
"
@/hook
"
;
import
sqliteMiddleWare
,
{
sqliteCmd
}
from
"
@/middleware/sqlite
"
;
import
{
accountStore
,
deckStore
,
initStore
,
type
User
}
from
"
@/stores
"
;
import
{
ENV_408_CDB
,
OCG_CDB
}
from
"
@/middleware/sqlite
"
;
const
{
releaseResource
,
preReleaseResource
,
env408Resource
}
=
useConfig
();
const
{
releaseResource
,
preReleaseResource
}
=
useConfig
();
const
{
BASE_URL
}
=
useEnv
();
/** 加载
OCG
ygodb */
export
const
init
OCGCdb
=
async
()
=>
{
/** 加载ygodb */
export
const
init
Sqlite
=
async
()
=>
{
if
(
!
initStore
.
sqlite
.
progress
)
{
const
{
sqlite
}
=
initStore
;
const
progressCallback
=
(
progress
:
number
)
=>
(
sqlite
.
progress
=
progress
*
0.9
);
sqlite
.
progress
=
0.01
;
await
OCG_CDB
.
init
({
main
:
releaseResource
.
cdb
,
sub
:
preReleaseResource
.
cdb
,
i18n
:
true
,
progressCallback
});
sqlite
.
progress
=
1
;
}
};
/** 加载 408 环境 ygodb */
export
const
init408Cdb
=
async
()
=>
{
if
(
!
initStore
.
sqlite
.
progress
)
{
const
{
sqlite
}
=
initStore
;
const
progressCallback
=
(
progress
:
number
)
=>
(
sqlite
.
progress
=
progress
*
0.9
);
sqlite
.
progress
=
0.01
;
await
ENV_408_CDB
.
init
({
main
:
env408Resource
.
cdb
,
i18n
:
false
,
progressCallback
await
sqliteMiddleWare
({
cmd
:
sqliteCmd
.
INIT
,
initInfo
:
{
releaseDbUrl
:
releaseResource
.
cdb
,
preReleaseDbUrl
:
preReleaseResource
.
cdb
,
progressCallback
,
},
});
sqlite
.
progress
=
1
;
}
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment