├── .babelrc ├── .editorconfig ├── .env.example ├── .eslintrc.js ├── .firebaserc ├── .gitignore ├── .prettierrc ├── README.md ├── assets ├── README.md └── css │ └── tailwind.css ├── components ├── README.md ├── common │ ├── AppAccordion.vue │ ├── AppNavbar.vue │ ├── TheFooter.vue │ └── signIn │ │ ├── SignInButton.vue │ │ ├── SignInButtonNav.vue │ │ └── SingIn.vue └── partials │ ├── AccountDropdown.vue │ ├── ButtonPostCreate.vue │ ├── NodeTreeEditor │ ├── NodeTreeEdit.vue │ ├── NodeTreeEditor.vue │ ├── QustionNodeEdit.vue │ └── ResultNodeEdit.vue │ └── post │ ├── InputTags.vue │ ├── PostForm.vue │ ├── PostList.vue │ ├── PostListRecent.vue │ └── PostPlay.vue ├── firebase.json ├── firestore.indexes.json ├── firestore.rules ├── jest.config.js ├── jsconfig.json ├── layouts ├── README.md └── default.vue ├── middleware └── README.md ├── now.json ├── nuxt.config.js ├── package.json ├── pages ├── README.md ├── index.vue ├── posts │ ├── _id │ │ ├── edit.vue │ │ └── index.vue │ └── create.vue └── users │ └── _userId │ └── posts │ └── index.vue ├── plugins ├── README.md ├── firebase.ts └── vue-tags-input.js ├── static ├── README.md ├── favicon.ico ├── icon.png └── images │ └── ogp.png ├── store └── README.md ├── stylelint.config.js ├── tailwind.config.js ├── tsconfig.json ├── types ├── error.ts └── struct.ts ├── utils ├── constants │ ├── defalutNodeTreeData.ts │ └── nodeTreeSamples.ts ├── externals │ └── firebase.ts └── transformer │ └── toObject.ts └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/README.md -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/assets/css/tailwind.css -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/README.md -------------------------------------------------------------------------------- /components/common/AppAccordion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/common/AppAccordion.vue -------------------------------------------------------------------------------- /components/common/AppNavbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/common/AppNavbar.vue -------------------------------------------------------------------------------- /components/common/TheFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/common/TheFooter.vue -------------------------------------------------------------------------------- /components/common/signIn/SignInButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/common/signIn/SignInButton.vue -------------------------------------------------------------------------------- /components/common/signIn/SignInButtonNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/common/signIn/SignInButtonNav.vue -------------------------------------------------------------------------------- /components/common/signIn/SingIn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/common/signIn/SingIn.vue -------------------------------------------------------------------------------- /components/partials/AccountDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/partials/AccountDropdown.vue -------------------------------------------------------------------------------- /components/partials/ButtonPostCreate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/partials/ButtonPostCreate.vue -------------------------------------------------------------------------------- /components/partials/NodeTreeEditor/NodeTreeEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/partials/NodeTreeEditor/NodeTreeEdit.vue -------------------------------------------------------------------------------- /components/partials/NodeTreeEditor/NodeTreeEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/partials/NodeTreeEditor/NodeTreeEditor.vue -------------------------------------------------------------------------------- /components/partials/NodeTreeEditor/QustionNodeEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/partials/NodeTreeEditor/QustionNodeEdit.vue -------------------------------------------------------------------------------- /components/partials/NodeTreeEditor/ResultNodeEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/partials/NodeTreeEditor/ResultNodeEdit.vue -------------------------------------------------------------------------------- /components/partials/post/InputTags.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/partials/post/InputTags.vue -------------------------------------------------------------------------------- /components/partials/post/PostForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/partials/post/PostForm.vue -------------------------------------------------------------------------------- /components/partials/post/PostList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/partials/post/PostList.vue -------------------------------------------------------------------------------- /components/partials/post/PostListRecent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/partials/post/PostListRecent.vue -------------------------------------------------------------------------------- /components/partials/post/PostPlay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/components/partials/post/PostPlay.vue -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/firebase.json -------------------------------------------------------------------------------- /firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/firestore.indexes.json -------------------------------------------------------------------------------- /firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/firestore.rules -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/jsconfig.json -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/middleware/README.md -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/now.json -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/package.json -------------------------------------------------------------------------------- /pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/pages/README.md -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/posts/_id/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/pages/posts/_id/edit.vue -------------------------------------------------------------------------------- /pages/posts/_id/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/pages/posts/_id/index.vue -------------------------------------------------------------------------------- /pages/posts/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/pages/posts/create.vue -------------------------------------------------------------------------------- /pages/users/_userId/posts/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/pages/users/_userId/posts/index.vue -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/plugins/firebase.ts -------------------------------------------------------------------------------- /plugins/vue-tags-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/plugins/vue-tags-input.js -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/static/README.md -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/images/ogp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/static/images/ogp.png -------------------------------------------------------------------------------- /store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/store/README.md -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/stylelint.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/types/error.ts -------------------------------------------------------------------------------- /types/struct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/types/struct.ts -------------------------------------------------------------------------------- /utils/constants/defalutNodeTreeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/utils/constants/defalutNodeTreeData.ts -------------------------------------------------------------------------------- /utils/constants/nodeTreeSamples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/utils/constants/nodeTreeSamples.ts -------------------------------------------------------------------------------- /utils/externals/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/utils/externals/firebase.ts -------------------------------------------------------------------------------- /utils/transformer/toObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/utils/transformer/toObject.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retoruto-carry/shindan-chart-maker/HEAD/yarn.lock --------------------------------------------------------------------------------