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

Dev #32

Merged
merged 30 commits into from
Jun 11, 2020
Merged

Dev #32

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
8d6795b
remove duplicated items by bad merge
ivaneliasoo Jun 5, 2020
4b01ecb
add security tier
ivaneliasoo Jun 6, 2020
bed221d
change pass move token controller, change tokencontroller to authcont…
ivaneliasoo Jun 6, 2020
0f0b56b
Merge branch 'master' into dev
ivaneliasoo Jun 6, 2020
c389b3e
Corrige Bug al gueardar seeds
ivaneliasoo Jun 6, 2020
3c3351d
Merge branch 'dev' of https://github.com/ivaneliasoo/Inspections into…
ivaneliasoo Jun 6, 2020
f92da27
Backend CheckLists
ivaneliasoo Jun 9, 2020
f1ab44c
Backend Signatures, Report COnfiguration repository, queires checklis…
ivaneliasoo Jun 9, 2020
a792dd6
Uploads service & Storage helper class, paths on settings
ivaneliasoo Jun 9, 2020
fbd9226
Merge branch 'master' into dev
ivaneliasoo Jun 9, 2020
90cf2b0
solve typo in Shared proyect reference
ivaneliasoo Jun 9, 2020
0c534d8
Merge branch 'dev' of https://github.com/ivaneliasoo/Inspections into…
ivaneliasoo Jun 9, 2020
1d6fd4e
Fix Bug Querying CheckLists
ivaneliasoo Jun 9, 2020
3de5506
Ignore some local files
ivaneliasoo Jun 9, 2020
e3045e7
Optional items in query
ivaneliasoo Jun 9, 2020
1e83c1a
Merge branch 'master' into dev
ivaneliasoo Jun 9, 2020
531a621
update dev branch (#21)
ivaneliasoo Jun 10, 2020
0b218b3
Solves Signature add and update bug
ivaneliasoo Jun 10, 2020
dfadd53
Merge branch 'dev' of https://github.com/ivaneliasoo/Inspections into…
ivaneliasoo Jun 10, 2020
1003e18
simplify api routes
ivaneliasoo Jun 10, 2020
3e667d7
Quering and DTO mappin for signatures
ivaneliasoo Jun 10, 2020
388ed49
Backend Reports Configurations
ivaneliasoo Jun 10, 2020
42ed763
Backend Reports Config
ivaneliasoo Jun 10, 2020
b0651c9
Merge branch 'master' into dev
ivaneliasoo Jun 10, 2020
bb7d450
preparing project to deploy
ivaneliasoo Jun 10, 2020
e54294a
Merge branch 'dev' of https://github.com/ivaneliasoo/Inspections into…
ivaneliasoo Jun 10, 2020
ca9de49
updates composition api package version
ivaneliasoo Jun 10, 2020
8ca4e80
change to npm
ivaneliasoo Jun 10, 2020
05df401
disable husky
ivaneliasoo Jun 10, 2020
f7acee3
Merge branch 'master' into dev
ivaneliasoo Jun 11, 2020
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
16 changes: 14 additions & 2 deletions src/ClientApp/layouts/default.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
<template>
<v-app dark>
<v-navigation-drawer v-model="drawer" :mini-variant="miniVariant" :clipped="clipped" fixed app>
<v-navigation-drawer
v-model="drawer"
:mini-variant="miniVariant"
:clipped="clipped"
fixed
app
>
<v-list>
<v-list-item v-for="(item, i) in items" :key="i" :to="item.to" router exact>
<v-list-item
v-for="(item, i) in items"
:key="i"
:to="item.to"
router
exact
>
<v-list-item-action>
<v-icon>{{ item.icon }}</v-icon>
</v-list-item-action>
Expand Down
1 change: 1 addition & 0 deletions src/ClientApp/nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ export default {
/*
** You can extend webpack config here
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
extend(config, ctx) {}
}
}
17,397 changes: 17,397 additions & 0 deletions src/ClientApp/package-lock.json

Large diffs are not rendered by default.

10 changes: 2 additions & 8 deletions src/ClientApp/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Inspections",
"name": "inspections",
"version": "1.0.0",
"description": " ",
"author": "SmartCode Builders",
Expand All @@ -13,21 +13,15 @@
"test": "jest"
},
"lint-staged": {
"*.{js,vue}": "yarn lint",
"*.{js,vue}": "npm run lint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxt/typescript-runtime": "^0.4.0",
"@nuxtjs/auth": "^4.9.1",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/pwa": "^3.0.0-0",
"vue": "^2.6.11",
"@vue/composition-api": "^0.6.1",
"inversify-props": "^2.0.1",
"nuxt": "^2.0.0",
Expand Down
20 changes: 7 additions & 13 deletions src/ClientApp/pages/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,15 @@
<h1>{{ title }}</h1>
</div>
</template>

<script lang="ts">
import { defineComponent, ref } from '@vue/composition-api'
export default defineComponent({
layout: 'gest',
setup() {
const title = ref('Login')
import { Vue, Component } from 'nuxt-property-decorator'

return {
title
}
}
@Component({
layout: 'gest'
})
export default class Login extends Vue {
title: String = 'Login'
}
</script>

<style>

</style>
<style></style>
17 changes: 6 additions & 11 deletions src/ClientApp/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,12 @@
{{ name }}
</div>
</template>

<script lang="ts">
import { defineComponent, computed } from '@vue/composition-api'

export default defineComponent({
setup(props, context) {
const name = computed(() => context.root.$accessor.inspections.name)

return {
name
}
}
import { Vue, Component } from 'nuxt-property-decorator'
@Component({
layout: 'Default'
})
export default class Login extends Vue {
name: String = ''
}
</script>
2 changes: 1 addition & 1 deletion src/ClientApp/server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const app = express()
const config = require('../nuxt.config.js')
config.dev = process.env.NODE_ENV !== 'production'

async function start () {
async function start() {
// Init Nuxt.js
const nuxt = new Nuxt(config)

Expand Down
1 change: 1 addition & 0 deletions src/ClientApp/stylelint.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable prettier/prettier */
module.exports = {
// add your custom config here
// https://stylelint.io/user-guide/configuration
Expand Down
1 change: 0 additions & 1 deletion src/ClientApp/test/Logo.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { mount } from '@vue/test-utils'
import Logo from '@/components/Logo.vue'

describe('Logo', () => {
test('is a Vue instance', () => {
const wrapper = mount(Logo)
Expand Down