├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── disclaimer ├── doc └── legacy │ └── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── App.scss ├── App.test.js ├── Tmp.js ├── chapter.json ├── components │ ├── Choice.js │ ├── Controls.js │ ├── Fade.js │ ├── Figure.js │ ├── Line.js │ ├── Nova.js │ ├── Stage.js │ ├── Typer.js │ ├── contexts │ │ └── Scenario.js │ ├── reducers │ │ ├── nextReducer.js │ │ └── scenarioReducer.js │ ├── style │ │ └── nova.scss │ └── utils │ │ ├── ScenarioUtil.js │ │ └── util.js ├── index.css ├── index.js ├── logo.svg ├── serviceWorker.js └── tmp.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/README.md -------------------------------------------------------------------------------- /disclaimer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/disclaimer -------------------------------------------------------------------------------- /doc/legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/doc/legacy/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/App.scss -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Tmp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/Tmp.js -------------------------------------------------------------------------------- /src/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/chapter.json -------------------------------------------------------------------------------- /src/components/Choice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/components/Choice.js -------------------------------------------------------------------------------- /src/components/Controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/components/Controls.js -------------------------------------------------------------------------------- /src/components/Fade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/components/Fade.js -------------------------------------------------------------------------------- /src/components/Figure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/components/Figure.js -------------------------------------------------------------------------------- /src/components/Line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/components/Line.js -------------------------------------------------------------------------------- /src/components/Nova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/components/Nova.js -------------------------------------------------------------------------------- /src/components/Stage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/components/Stage.js -------------------------------------------------------------------------------- /src/components/Typer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/components/Typer.js -------------------------------------------------------------------------------- /src/components/contexts/Scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/components/contexts/Scenario.js -------------------------------------------------------------------------------- /src/components/reducers/nextReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/components/reducers/nextReducer.js -------------------------------------------------------------------------------- /src/components/reducers/scenarioReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/components/reducers/scenarioReducer.js -------------------------------------------------------------------------------- /src/components/style/nova.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/components/style/nova.scss -------------------------------------------------------------------------------- /src/components/utils/ScenarioUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/components/utils/ScenarioUtil.js -------------------------------------------------------------------------------- /src/components/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/components/utils/util.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/tmp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/src/tmp.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinyanfr/novelscript/HEAD/yarn.lock --------------------------------------------------------------------------------