-
Notifications
You must be signed in to change notification settings - Fork 655
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support load code from local file for issue 59 (#149)
- Loading branch information
Showing
7 changed files
with
484 additions
and
1,180 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,16 @@ | ||
import kebabCase = require("lodash.kebabcase"); | ||
import { IProblem, langExt } from "../shared"; | ||
|
||
export function genFileExt(language: string): string { | ||
const ext: string | undefined = langExt.get(language); | ||
if (!ext) { | ||
throw new Error(`The language "${language}" is not supported.`); | ||
} | ||
return ext; | ||
} | ||
|
||
export function genFileName(node: IProblem, language: string): string { | ||
const slug: string = kebabCase(node.name); | ||
const ext: string = genFileExt(language); | ||
return `${node.id}.${slug}.${ext}`; | ||
} |