Updated components to PascalCase

Added comment for `key` usage
This commit is contained in:
Phil Hughes 2018-04-03 11:10:01 +01:00
parent c0dddb511c
commit 259adc3415
No known key found for this signature in database
GPG Key ID: 32245528C52E0F9F
4 changed files with 13 additions and 10 deletions

View File

@ -1,10 +1,10 @@
<script>
import { mapActions } from 'vuex';
import icon from '~/vue_shared/components/icon.vue';
import Icon from '~/vue_shared/components/icon.vue';
export default {
components: {
icon,
Icon,
},
props: {
file: {

View File

@ -21,6 +21,7 @@ export default {
},
watch: {
file(oldVal, newVal) {
// Compare key to allow for files opened in review mode to be cached differently
if (newVal.key !== this.file.key) {
this.initMonaco();
}

View File

@ -1,17 +1,17 @@
<script>
import { mapActions } from 'vuex';
import fileIcon from '~/vue_shared/components/file_icon.vue';
import icon from '~/vue_shared/components/icon.vue';
import fileStatusIcon from './repo_file_status_icon.vue';
import changedFileIcon from './changed_file_icon.vue';
import FileIcon from '~/vue_shared/components/file_icon.vue';
import Icon from '~/vue_shared/components/icon.vue';
import FileStatusIcon from './repo_file_status_icon.vue';
import ChangedFileIcon from './changed_file_icon.vue';
export default {
components: {
fileStatusIcon,
fileIcon,
icon,
changedFileIcon,
FileStatusIcon,
FileIcon,
Icon,
ChangedFileIcon,
},
props: {
tab: {

View File

@ -1,5 +1,7 @@
export const dataStructure = () => ({
id: '',
// Key will contain a mixture of ID and path
// it can also contain a prefix `pending-` for files opened in review mode
key: '',
type: '',
projectId: '',