-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
20 changed files
with
1,047 additions
and
954 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
|
||
const NavItemsZH = require('./nav/zh') | ||
const SidebarZH = require('./sidebar/zh') | ||
const NavItemsEN = require('./nav/en') | ||
const SidebarEN = require('./sidebar/en') | ||
|
||
|
||
module.exports ={ | ||
NavItemsZH | ||
NavItemsZH, | ||
SidebarZH, | ||
NavItemsEN, | ||
SidebarEN | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
const NavItemsEN = [ | ||
{ | ||
text: 'Algorithm Booklet', | ||
link: '/en-US/algorithm/complexity.html' | ||
}, | ||
{ | ||
text: 'Web System', | ||
link: '/en-US/guide/' | ||
}, | ||
{ | ||
text: 'Framework Principles', | ||
link: '/en-US/fp/react/build-react.html' | ||
}, | ||
{ | ||
text: 'code', | ||
items: [ | ||
{ | ||
text: 'GitHub', | ||
link: 'https://github.com/hejialianghe/Senior-FrontEnd' | ||
}, | ||
{ | ||
text: 'Gitee', | ||
link: 'https://gitee.com/hejialianghe/Senior-FrontEnd' | ||
} | ||
] | ||
} | ||
] | ||
|
||
module.exports = NavItemsEN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
const { getGuideSidebar } = require('./shared') | ||
|
||
const SidebarEN = { | ||
'/en-US/algorithm/': [{ | ||
title: 'Data Structures and Algorithms', | ||
collapsable: false, | ||
children: [ | ||
['complexity', 'Complexity'], | ||
['dataStructure', 'Data Structure'], | ||
['thinking', 'Problem-Solving Approach'], | ||
['sort', 'Sorting Algorithms'], | ||
['base', 'Real Questions'], | ||
], | ||
}], | ||
"/en-US/fp/": [ | ||
{ | ||
title: 'React', | ||
collapsable: false, | ||
children: [ | ||
['react/build-react', '[Translation]build-your-own-react'], | ||
['react/react-hooks', 'React Hooks'], | ||
], | ||
}, | ||
{ | ||
title: 'Vue2', | ||
collapsable: false, | ||
children: [ | ||
['vue2/', 'Introduction'], | ||
['vue2/dataResponse', 'Reactivity'], | ||
['vue2/virtualdomAndDiff', 'Virtual DOM and Diff'], | ||
], | ||
}, | ||
], | ||
'/en-US/': getGuideSidebar(), | ||
} | ||
|
||
module.exports = SidebarEN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Translating... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.