Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
d19f294
initApp
katpyt Mar 9, 2023
3256824
Merge pull request #1 from katpyt/feature/initApp
lwalik Mar 9, 2023
eb34b85
Create empty pages
katpyt Mar 9, 2023
387b2bd
Merge pull request #2 from katpyt/createEmptyPages
lwalik Mar 10, 2023
82626cb
pageLayout: first stage without working links
katpyt Mar 10, 2023
621a960
Merge pull request #3 from katpyt/feature/pageLayout
katpyt Mar 11, 2023
b311e86
categories and stores links added
katpyt Mar 11, 2023
a269005
Merge pull request #4 from katpyt/feature/pageLayout2
katpyt Mar 11, 2023
445cbbc
mobile navigation
katpyt Mar 11, 2023
bd56c68
Merge pull request #5 from katpyt/feature/mobileNavigation
katpyt Mar 11, 2023
abbaba9
AddShopByCategoryToHomePage
katpyt Mar 11, 2023
62a4534
Merge pull request #6 from katpyt/feature/AddShopByCategoryToHomePpage
katpyt Mar 11, 2023
5c47f2a
Add Stores to Home page - not finished
katpyt Mar 11, 2023
61cab7d
added tag names
katpyt Mar 13, 2023
59ce2f6
Merge pull request #7 from katpyt/feature/AddStorestoHomePage
katpyt Mar 13, 2023
9247c2b
featured categories (sorted and limited)
katpyt Mar 13, 2023
7b87180
dollars without decimal places
katpyt Mar 13, 2023
77ca43f
remove links
katpyt Mar 13, 2023
f4559bd
Merge pull request #8 from katpyt/feature/featuredCategories
katpyt Mar 13, 2023
6add0e2
changes in store component
katpyt Mar 14, 2023
fedb644
store products page
katpyt Mar 15, 2023
ac7e693
Merge pull request #9 from katpyt/feature/storeProductsPage
katpyt Mar 15, 2023
e9e5eab
add categories row on store page
katpyt Mar 15, 2023
d047af7
Merge pull request #10 from katpyt/feature/storeProductsPage
katpyt Mar 15, 2023
dc620ed
separation of header and footer
katpyt Mar 16, 2023
55d02d9
remove footer and header components
katpyt Mar 16, 2023
602e4b5
remove header from store component
katpyt Mar 16, 2023
0d5a20c
show products with details in selected category
katpyt Mar 16, 2023
3925073
Merge pull request #11 from katpyt/feature/categoriesPage
katpyt Mar 16, 2023
0c71f5b
sorting fixing
katpyt Mar 17, 2023
c8a6ddb
remove unused code
katpyt Mar 17, 2023
534902e
filtering fix on categories page
katpyt Mar 17, 2023
044e441
working sorting
katpyt Mar 17, 2023
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Netlify
https://astounding-cuchufli-e5b46a.netlify.app/

# NgFreshcardBootstrapTheme

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.3.3.
Expand Down
3 changes: 3 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@
],
"scripts": []
}
},
"deploy": {
"builder": "angular-cli-ghpages:deploy"
}
}
}
Expand Down
52 changes: 52 additions & 0 deletions coding-standards.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"entityRelations": {
"component": {
"model": ["PROPERTY"],
"queryModel": ["PROPERTY"],
"service": ["CONSTRUCTOR"],
"router": ["CONSTRUCTOR"],
"activatedRoute": ["CONSTRUCTOR"]
},
"service": {
"httpClient": ["CONSTRUCTOR"],
"model": ["PARAMETER", "RETURN"]
}
},
"external": {
"httpClient": {
"type": "HttpClient",
"module": "@angular/common/http"
},
"router": {
"type": "Router",
"module": "@angular/router"
},
"activatedRoute": {
"type": "ActivatedRoute",
"module": "@angular/router"
}
},
"entities": {
"component": {
"type": "ANGULAR_COMPONENT",
"folder": "components/$name$",
"config": {
"stylesExtension": "none",
"viewEncapsulation": "None",
"selector": "generated",
"changeDetectionStrategy": "OnPush"
}
},
"model": {
"type": "DATA_STRUCTURE"
},
"query": {
"type": "DATA_STRUCTURE",
"suffix": "QueryModel",
"folder": "queries"
},
"service": {
"type": "ANGULAR_SERVICE"
}
}
}
Loading