Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

13-vuejs-spa-without-vuex adlı klasörü projene ekledim. #2

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions 13-vuejs-spa-without-vuex/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"presets": [
["env", { "modules": false }],
"stage-3"
]
}
9 changes: 9 additions & 0 deletions 13-vuejs-spa-without-vuex/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
2 changes: 2 additions & 0 deletions 13-vuejs-spa-without-vuex/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

node_modules/*
18 changes: 18 additions & 0 deletions 13-vuejs-spa-without-vuex/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# retest

> A Vue.js project

## Build Setup

``` bash
# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build
```

For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader).
26 changes: 26 additions & 0 deletions 13-vuejs-spa-without-vuex/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>retest</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://www.gstatic.com/firebasejs/4.11.0/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyCOo4SGCJq1s0EXJUM00yIhVAz9qqX1xDE",
authDomain: "moviesvueapp.firebaseapp.com",
databaseURL: "https://moviesvueapp.firebaseio.com",
projectId: "moviesvueapp",
storageBucket: "moviesvueapp.appspot.com",
messagingSenderId: "121985339763"
};
firebase.initializeApp(config);
</script>
</head>
<body>
<div id="app"></div>
<script src="/dist/build.js"></script>
</body>
</html>
49 changes: 49 additions & 0 deletions 13-vuejs-spa-without-vuex/npm-debug.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
0 info it worked if it ends with ok
1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe',
1 verbose cli 'C:\\Users\\calganse\\AppData\\Roaming\\npm\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli 'run',
1 verbose cli 'dev' ]
2 info using [email protected]
3 info using [email protected]
4 verbose run-script [ 'predev', 'dev', 'postdev' ]
5 info lifecycle [email protected]~predev: [email protected]
6 silly lifecycle [email protected]~predev: no script for predev, continuing
7 info lifecycle [email protected]~dev: [email protected]
8 verbose lifecycle [email protected]~dev: unsafe-perm in lifecycle true
9 verbose lifecycle [email protected]~dev: PATH: C:\Users\calganse\AppData\Roaming\npm\node_modules\npm\bin\node-gyp-bin;D:\Projects\test\vuejs\retest\node_modules\.bin;C:\Program Files\nodejs;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\Microsoft SQL Server\120\Tools\Binn\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files\Microsoft SQL Server\120\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\ManagementStudio\;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn\;C:\Program Files\dotnet\;C:\Program Files\VDownloader;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Users\calganse\AppData\Local\Microsoft\WindowsApps;C:\Users\calganse\AppData\Local\Programs\Fiddler;C:\Users\calganse\AppData\Roaming\npm;C:\Program Files\Microsoft VS Code\bin;C:\Users\calganse\AppData\Local\Microsoft\WindowsApps
10 verbose lifecycle [email protected]~dev: CWD: D:\Projects\test\vuejs\retest
11 silly lifecycle [email protected]~dev: Args: [ '/d /s /c',
11 silly lifecycle 'cross-env NODE_ENV=development webpack-dev-server --open --hot' ]
12 silly lifecycle [email protected]~dev: Returned: code: 3221225786 signal: null
13 info lifecycle [email protected]~dev: Failed to exec dev script
14 verbose stack Error: [email protected] dev: `cross-env NODE_ENV=development webpack-dev-server --open --hot`
14 verbose stack Exit status 3221225786
14 verbose stack at EventEmitter.<anonymous> (C:\Users\calganse\AppData\Roaming\npm\node_modules\npm\lib\utils\lifecycle.js:242:16)
14 verbose stack at emitTwo (events.js:126:13)
14 verbose stack at EventEmitter.emit (events.js:214:7)
14 verbose stack at ChildProcess.<anonymous> (C:\Users\calganse\AppData\Roaming\npm\node_modules\npm\lib\utils\spawn.js:40:14)
14 verbose stack at emitTwo (events.js:126:13)
14 verbose stack at ChildProcess.emit (events.js:214:7)
14 verbose stack at maybeClose (internal/child_process.js:925:16)
14 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:209:5)
15 verbose pkgid [email protected]
16 verbose cwd D:\Projects\test\vuejs\retest
17 error Windows_NT 10.0.16299
18 error argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\calganse\\AppData\\Roaming\\npm\\node_modules\\npm\\bin\\npm-cli.js" "run" "dev"
19 error node v8.9.4
20 error npm v3.10.5
21 error code ELIFECYCLE
22 error [email protected] dev: `cross-env NODE_ENV=development webpack-dev-server --open --hot`
22 error Exit status 3221225786
23 error Failed at the [email protected] dev script 'cross-env NODE_ENV=development webpack-dev-server --open --hot'.
23 error Make sure you have the latest version of node.js and npm installed.
23 error If you do, this is most likely a problem with the retest package,
23 error not with npm itself.
23 error Tell the author that this fails on your system:
23 error cross-env NODE_ENV=development webpack-dev-server --open --hot
23 error You can get information on how to open an issue for this project with:
23 error npm bugs retest
23 error Or if that isn't available, you can get their info via:
23 error npm owner ls retest
23 error There is likely additional logging output above.
24 verbose exit [ 1, true ]
36 changes: 36 additions & 0 deletions 13-vuejs-spa-without-vuex/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "retest",
"description": "A Vue.js project",
"version": "1.0.0",
"author": "",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
},
"dependencies": {
"vue": "^2.5.11",
"vue-router": "^3.0.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"file-loader": "^1.1.4",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.4.4",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
}
}
23 changes: 23 additions & 0 deletions 13-vuejs-spa-without-vuex/src/App.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<template>
<div id="app">
<router-view></router-view>
</div>
</template>

<script>
export default {
name: 'app',
data () {
return {
}
}
}
</script>

<style lang="scss">
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</style>
104 changes: 104 additions & 0 deletions 13-vuejs-spa-without-vuex/src/assets/mockData/halls.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
{
"H1": {
"name": "Salon 1",
"seating": {
"A": [ "", "", "", "", "", 1, 2, 3, 4, 5, 6, "", "", "", "" ],
"B": [ "", "", "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, "", "" ],
"C": [ "", "", "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, "", "" ],
"D": [ "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, "" ],
"E": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"F": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"G": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"I": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"J": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"K": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"L": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"M": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ]
}
},
"H2": {
"name": "Salon 2",
"seating": {
"A": [ "", "", "", "", "", 1, 2, 3, 4, 5, 6, "", "", "", "" ],
"B": [ "", "", "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, "", "" ],
"C": [ "", "", "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, "", "" ],
"D": [ "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, "" ],
"E": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"F": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"G": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"I": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"J": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"K": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"L": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"M": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ]
}
},
"H3": {
"name": "Salon 3",
"seating": {
"A": [ "", "", "", "", "", 1, 2, 3, 4, 5, 6, "", "", "", "" ],
"B": [ "", "", "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, "", "" ],
"C": [ "", "", "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, "", "" ],
"D": [ "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, "" ],
"E": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"F": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"G": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"I": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"J": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"K": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"L": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"M": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ]
}
},
"H4": {
"name": "Salon 4",
"seating": {
"A": [ "", "", "", "", "", 1, 2, 3, 4, 5, 6, "", "", "", "" ],
"B": [ "", "", "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, "", "" ],
"C": [ "", "", "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, "", "" ],
"D": [ "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, "" ],
"E": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"F": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"G": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"I": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"J": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"K": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"L": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"M": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ]
}
},
"H5": {
"name": "Salon 5",
"seating": {
"A": [ "", "", "", "", "", 1, 2, 3, 4, 5, 6, "", "", "", "" ],
"B": [ "", "", "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, "", "" ],
"C": [ "", "", "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, "", "" ],
"D": [ "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, "" ],
"E": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"F": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"G": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"I": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"J": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"K": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"L": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"M": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ]
}
},
"H6": {
"name": "Salon 6",
"seating": {
"A": [ "", "", "", "", "", 1, 2, 3, 4, 5, 6, "", "", "", "" ],
"B": [ "", "", "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, "", "" ],
"C": [ "", "", "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, "", "" ],
"D": [ "", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, "" ],
"E": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"F": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"G": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"I": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"J": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"K": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"L": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ],
"M": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ]
}
}
}
Loading