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

Feature/quickview #289

Merged
merged 28 commits into from Apr 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
0cb42da
feat: quickview card base and overview creation
a-crea Dec 12, 2022
8324434
feat: generic icon parser and added icons
a-crea Dec 12, 2022
89b1626
feat: added new Tag
a-crea Dec 12, 2022
b460251
feat: added options to ignore auth in api
a-crea Dec 12, 2022
514b243
feat: added base cards to quickview
a-crea Dec 12, 2022
92206df
feat: added expand icon
a-crea Dec 12, 2022
c1ff57c
feat: added map component usinf OpenLayers
a-crea Dec 12, 2022
9be2fe5
feat: added import of OpenLayersMap
a-crea Dec 12, 2022
699c406
feat: added cta icon to quickview overview card and expanded it with …
a-crea Dec 12, 2022
ff77e1d
feat: base quickview page
a-crea Dec 12, 2022
86d3f30
fix: removed skipAuth in useApiRead
a-crea Dec 12, 2022
e397339
fix(QuickView): cannot read properties of undefined for _Meta prop
a-crea Dec 12, 2022
1be7077
feat: added quickview components to support webcam gallery and POI ga…
a-crea Dec 21, 2022
5f7cbd6
feat: load placeholder image if image is broken
a-crea Dec 22, 2022
1a6a25b
feat: parse open and close time to show only hours and minutes
a-crea Dec 22, 2022
39a472b
feat: added QuickView rendering thorugh config file; converted QuickV…
Jan 23, 2023
c80c38e
feat: refactored QuickView in minor components to support setup throu…
Feb 4, 2023
2c0f517
style: refactored quickview components
Feb 10, 2023
fcc8119
feat: refactored QuickView using ComponentRenderer and CellComponent …
Feb 10, 2023
9db6e1e
style: regenerated package-log; fixes Tailwind class orders in QuickView
Feb 10, 2023
b6e5403
refact: refactored QuickView implementation
Feb 17, 2023
5ae820d
style: regenerated package-log; fixes Tailwind class orders in QuickView
Feb 10, 2023
70675cd
refact: applied multiple code optimizations
Mar 6, 2023
cd1f63c
feat: improved gitignore file and removed files to ignore
Mar 15, 2023
2d849bf
fix: fixed build errors
Mar 15, 2023
e0f5d55
feat: replaced vue-layers with vue-leaflet
Mar 27, 2023
2a9af77
fix: regenerated package lock
Mar 27, 2023
a0bcc6a
fix: fixed PointExpression type definition
Mar 27, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
97 changes: 90 additions & 7 deletions databrowser/.gitignore
@@ -1,10 +1,93 @@
node_modules
.DS_Store
dist
dist-ssr
*.local
# Created by .ignore support plugin (hsz.mobi)
### Node template
# Logs
/logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# ENV
# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

.eslintcache
# parcel-bundler cache (https://parceljs.org/)
.cache

# next.js build output
.next

# nuxt.js build output
.nuxt

# Nuxt generate
dist

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless

# IDE / Editor
.idea

# Service worker
sw.*

# macOS
.DS_Store

# Vim swap files
*.swp

dist-ssr
*.local