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

teste Bruno Souza #161

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
7f1c818
feat: implements layout structure
psbrunosouza Nov 25, 2024
0503075
feat: create equipment tracker component
psbrunosouza Nov 25, 2024
516e8e5
feat: add leaflet lib to lead with maps
psbrunosouza Nov 25, 2024
71120b9
fix: apply deferrable function to treat equipment map loading
psbrunosouza Nov 25, 2024
3635caa
refact: clear ssr unused structures
psbrunosouza Nov 26, 2024
0a24518
feat: implements equipment models; equipment service; equipment card …
psbrunosouza Nov 26, 2024
ac4eb09
feat: implements equipment card content service
psbrunosouza Nov 27, 2024
d89e197
feat: apply state color to equipment card
psbrunosouza Nov 27, 2024
2f7d949
feat: implements equipment selection
psbrunosouza Nov 28, 2024
f6ca37d
feat: map location list implemented
psbrunosouza Nov 28, 2024
34cd32d
feat: add equipment mark
psbrunosouza Nov 28, 2024
d1bbc96
refact: separate map logic into functions
psbrunosouza Nov 28, 2024
56eb9bf
feat: implements image by acronym
psbrunosouza Nov 29, 2024
960a704
fix: map to display just the selected equipments
psbrunosouza Nov 29, 2024
58bfcc8
fix: solving re render problem when selecting equipment
psbrunosouza Nov 30, 2024
b8c77e0
feat: add equipment images
psbrunosouza Nov 30, 2024
0e69027
feat: display by equipments: state, model, position
psbrunosouza Nov 30, 2024
ef913a3
feat: implements timeline equipment history
psbrunosouza Nov 30, 2024
7535c24
style: equipment history style adjustments
psbrunosouza Nov 30, 2024
0f98e60
feat: implements history state
psbrunosouza Dec 1, 2024
7ca360a
refact(app): refact list equipments service
psbrunosouza Dec 1, 2024
a4e62d4
feat: search bar
psbrunosouza Dec 2, 2024
5a02b62
docs: readme
psbrunosouza Dec 2, 2024
0fa3a97
docs: readme
psbrunosouza Dec 2, 2024
0fea6dc
docs: readme
psbrunosouza Dec 2, 2024
33e9ee9
docs: readme
psbrunosouza Dec 2, 2024
c627ee2
feat: add timeline time
psbrunosouza Dec 2, 2024
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: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single

[*.md]
max_line_length = off
trim_trailing_whitespace = false
42 changes: 42 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.

# Compiled output
/dist
/tmp
/out-tsc
/bazel-out

# Node
/node_modules
npm-debug.log
yarn-error.log

# IDEs and editors
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# Miscellaneous
/.angular/cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
testem.log
/typings

# System files
.DS_Store
Thumbs.db
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/node_modules
/dist
15 changes: 15 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf",
"quoteProps": "as-needed",
"htmlWhitespaceSensitivity": "ignore",
"vueIndentScriptAndStyle": true,
"embeddedLanguageFormatting": "auto"
}
4 changes: 4 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
"recommendations": ["angular.ng-template"]
}
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ng serve",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
},
{
"name": "ng test",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: test",
"url": "http://localhost:9876/debug.html"
}
]
}
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"angular-schematics.schematicsDefaultOptions": {
"angular-*": {
"externalTemplate": true,
"style": "scss"
}
}
}
42 changes: 42 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
},
{
"type": "npm",
"script": "test",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
}
]
}
Loading