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

KZL 305 - Visualize documents on a map #444

Merged
merged 24 commits into from Aug 29, 2018
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
802717d
Display warning when using https version of admin console
Aschen Aug 23, 2018
9241419
Merge branch '2.x' of github.com:kuzzleio/kuzzle-admin-console into 2.x
Aschen Aug 27, 2018
865507e
Add a ViewMap component
Aschen Aug 27, 2018
04f57fd
fix alignment
Aschen Aug 27, 2018
f6cd59b
Merge branch '2.x' of github.com:kuzzleio/kuzzle-admin-console into 2.x
Aschen Aug 27, 2018
9504f5c
Merge branch '2.x' into KZL-305/visualize-documents-on-a-map
Aschen Aug 27, 2018
aece5f8
Hide useless button according to the view
Aschen Aug 27, 2018
42d0a07
Show informations and actions about document when click on it
Aschen Aug 28, 2018
9796712
Css tricks
Aschen Aug 28, 2018
85a87b7
Merge branch '2.x' of github.com:kuzzleio/kuzzle-admin-console into 2.x
Aschen Aug 28, 2018
b1ae227
manual merge
Aschen Aug 28, 2018
10522e8
merge_ok
Aschen Aug 28, 2018
857e6bc
nitpicking
Aschen Aug 28, 2018
591e158
Add comment to template
Aschen Aug 28, 2018
a1dffca
Apply @xbill82 recommandations
Aschen Aug 29, 2018
d61fbd4
Merge branch '2.x' of github.com:kuzzleio/kuzzle-admin-console into 2.x
Aschen Aug 29, 2018
44f1c84
Merge branch '2.x' into KZL-305/visualize-documents-on-a-map
Aschen Aug 29, 2018
8eb5911
Fix bug
Aschen Aug 29, 2018
c7ce70e
merge ok
Aschen Aug 29, 2018
ac59f14
Merge branch '2.x' into KZL-305/visualize-documents-on-a-map
Aschen Aug 29, 2018
4806ec0
Change way to identify geo_point because of local bug
Aschen Aug 29, 2018
44be294
Merge branch '2.x' of github.com:kuzzleio/kuzzle-admin-console into 2.x
Aschen Aug 29, 2018
2fd8051
bem class name
Njuelle Aug 29, 2018
c9a97b4
merge ok
Aschen Aug 29, 2018
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
5 changes: 0 additions & 5 deletions CONTRIBUTING.md
Expand Up @@ -15,11 +15,6 @@ to it. Each subsection must contain a `Page.vue` file, used as the entry-point t
- Vuex actions must be prefixed with a verb (doThing ...)
- Getters must be named after the data they get.

## Events

The event name must be prefixed with the component and suffixed with the action with `::` as separator.
Something like `security-create::create`, `filter-raw::search` or `crudl::refresh-search`.

# Coding style-guides

## Javascript
Expand Down
25 changes: 25 additions & 0 deletions dev/templates/Component.vue
@@ -0,0 +1,25 @@
<template>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lacks a comment here to explain what it is

<div class="Component">
</div>
</template>

<script>
export default {
name: 'Component',
components: {},
props: {},
data() {
return {}
},
computed: {},
methods: {},
created() {},
mounted() {},
watch: {}
}
</script>

<style scoped lang="scss">
.Component {
}
</style>