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
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
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
love_飞影
Neos
Commits
dcbb77de
Commit
dcbb77de
authored
Jan 27, 2023
by
chechunchi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
migrate fetchDeck
parent
4eddeb2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
3 deletions
+15
-3
src/api/deck.ts
src/api/deck.ts
+15
-3
No files found.
src/api/deck.ts
View file @
dcbb77de
import
axios
from
"
axios
"
;
// import axios from "axios";
import
DECKS
from
"
./deck.json
"
;
const
DeckManager
=
_objToMap
(
DECKS
);
export
interface
IDeck
{
export
interface
IDeck
{
main
?:
number
[];
main
?:
number
[];
...
@@ -12,9 +15,18 @@ export interface IDeck {
...
@@ -12,9 +15,18 @@ export interface IDeck {
* @param deck- 卡组名称
* @param deck- 卡组名称
* @returns 卡组数据
* @returns 卡组数据
*
*
* @todo - 这里应该为萌卡实现卡组存储
* */
* */
export
async
function
fetchDeck
(
deck
:
string
):
Promise
<
IDeck
>
{
export
async
function
fetchDeck
(
deck
:
string
):
Promise
<
IDeck
>
{
const
res
=
await
axios
.
get
<
IDeck
>
(
"
http://localhost:3030/deck/
"
+
deck
);
const
res
=
DeckManager
.
get
(
deck
);
return
res
||
{
main
:
[],
extra
:
[],
side
:
[]
};
}
function
_objToMap
(
object
:
any
):
Map
<
string
,
IDeck
>
{
let
map
=
new
Map
();
Object
.
keys
(
object
).
forEach
((
key
)
=>
map
.
set
(
key
,
object
[
key
]));
return
res
.
data
;
return
map
;
}
}
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