FE review changes app code
This commit is contained in:
parent
fe96bd416c
commit
00ee7a9f27
|
|
@ -18,7 +18,7 @@ class Diff {
|
|||
});
|
||||
|
||||
const tab = document.getElementById('diffs');
|
||||
if (!tab || (tab && !Object.hasOwnProperty.call(tab.dataset, 'isLocked'))) FilesCommentButton.init($diffFile);
|
||||
if (!tab || (tab && tab.dataset && tab.dataset.isLocked !== '')) FilesCommentButton.init($diffFile);
|
||||
|
||||
$diffFile.each((index, file) => new gl.ImageFile(file));
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@
|
|||
isIssueOpen() {
|
||||
return this.issueState === constants.OPENED || this.issueState === constants.REOPENED;
|
||||
},
|
||||
canCreate() {
|
||||
canCreateNote() {
|
||||
return this.getIssueData.current_user.can_create_note;
|
||||
},
|
||||
issueActionButtonTitle() {
|
||||
|
|
@ -241,7 +241,7 @@
|
|||
<template>
|
||||
<div>
|
||||
<issue-note-signed-out-widget v-if="!isLoggedIn" />
|
||||
<issue-discussion-locked-widget v-else-if="!canCreate" />
|
||||
<issue-discussion-locked-widget v-else-if="!canCreateNote" />
|
||||
<ul
|
||||
v-else
|
||||
class="notes notes-form timeline">
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<script>
|
||||
export default {
|
||||
computed: {
|
||||
icon() {
|
||||
lockIcon() {
|
||||
return gl.utils.spriteIcon('lock');
|
||||
},
|
||||
},
|
||||
|
|
@ -12,7 +12,7 @@
|
|||
<template>
|
||||
<div class="disabled-comment text-center">
|
||||
<span class="issuable-note-warning">
|
||||
<span class="icon" v-html="icon"></span>
|
||||
<span class="icon" v-html="lockIcon"></span>
|
||||
<span>This issue is locked. Only <b>project members</b> can comment.</span>
|
||||
</span>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ export default {
|
|||
},
|
||||
},
|
||||
computed: {
|
||||
buttonText() {
|
||||
toggleButtonText() {
|
||||
return this.isConfidential ? 'Turn Off' : 'Turn On';
|
||||
},
|
||||
updateConfidentialBool() {
|
||||
|
|
@ -39,7 +39,7 @@ export default {
|
|||
class="btn btn-close"
|
||||
@click.prevent="updateConfidentialAttribute(updateConfidentialBool)"
|
||||
>
|
||||
{{ buttonText }}
|
||||
{{ toggleButtonText }}
|
||||
</button>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@ export default {
|
|||
</div>
|
||||
|
||||
<div class="value sidebar-item-value hide-collapsed">
|
||||
<editForm
|
||||
<edit-form
|
||||
v-if="isLockDialogOpen"
|
||||
:toggle-form="toggleForm"
|
||||
:is-locked="isLocked"
|
||||
|
|
@ -94,13 +94,25 @@ export default {
|
|||
:issuable-type="issuableType"
|
||||
/>
|
||||
|
||||
<div v-if="isLocked" class="value sidebar-item-value">
|
||||
<i aria-hidden="true" class="fa fa-lock sidebar-item-icon is-active"></i>
|
||||
<div
|
||||
v-if="isLocked"
|
||||
class="value sidebar-item-value"
|
||||
>
|
||||
<i
|
||||
aria-hidden="true"
|
||||
class="fa fa-lock sidebar-item-icon is-active"
|
||||
></i>
|
||||
{{ __('Locked') }}
|
||||
</div>
|
||||
|
||||
<div v-else class="no-value sidebar-item-value hide-collapsed">
|
||||
<i aria-hidden="true" class="fa fa-unlock sidebar-item-icon"></i>
|
||||
<div
|
||||
v-else
|
||||
class="no-value sidebar-item-value hide-collapsed"
|
||||
>
|
||||
<i
|
||||
aria-hidden="true"
|
||||
class="fa fa-unlock sidebar-item-icon"
|
||||
></i>
|
||||
{{ __('Unlocked') }}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
import Vue from 'vue';
|
||||
import sidebarTimeTracking from './components/time_tracking/sidebar_time_tracking';
|
||||
import sidebarAssignees from './components/assignees/sidebar_assignees';
|
||||
import confidential from './components/confidential/confidential_issue_sidebar.vue';
|
||||
import SidebarTimeTracking from './components/time_tracking/sidebar_time_tracking';
|
||||
import SidebarAssignees from './components/assignees/sidebar_assignees';
|
||||
import ConfidentialIssueSidebar from './components/confidential/confidential_issue_sidebar.vue';
|
||||
import SidebarMoveIssue from './lib/sidebar_move_issue';
|
||||
import lockBlock from './components/lock/lock_issue_sidebar.vue';
|
||||
import LockIssueSidebar from './components/lock/lock_issue_sidebar.vue';
|
||||
import Translate from '../vue_shared/translate';
|
||||
|
||||
import Mediator from './sidebar_mediator';
|
||||
|
|
@ -11,14 +11,14 @@ import Mediator from './sidebar_mediator';
|
|||
Vue.use(Translate);
|
||||
|
||||
function mountConfidentialComponent(mediator) {
|
||||
const el = document.querySelector('#js-confidential-entry-point');
|
||||
const el = document.getElementById('js-confidential-entry-point');
|
||||
|
||||
if (!el) return;
|
||||
|
||||
const dataNode = document.getElementById('js-confidential-issue-data');
|
||||
const initialData = JSON.parse(dataNode.innerHTML);
|
||||
|
||||
const ConfidentialComp = Vue.extend(confidential);
|
||||
const ConfidentialComp = Vue.extend(ConfidentialIssueSidebar);
|
||||
|
||||
new ConfidentialComp({
|
||||
propsData: {
|
||||
|
|
@ -30,14 +30,14 @@ function mountConfidentialComponent(mediator) {
|
|||
}
|
||||
|
||||
function mountLockComponent(mediator) {
|
||||
const el = document.querySelector('#js-lock-entry-point');
|
||||
const el = document.getElementById('js-lock-entry-point');
|
||||
|
||||
if (!el) return;
|
||||
|
||||
const dataNode = document.getElementById('js-lock-issue-data');
|
||||
const initialData = JSON.parse(dataNode.innerHTML);
|
||||
|
||||
const LockComp = Vue.extend(lockBlock);
|
||||
const LockComp = Vue.extend(LockIssueSidebar);
|
||||
|
||||
new LockComp({
|
||||
propsData: {
|
||||
|
|
@ -54,11 +54,11 @@ function domContentLoaded() {
|
|||
const mediator = new Mediator(sidebarOptions);
|
||||
mediator.fetch();
|
||||
|
||||
const sidebarAssigneesEl = document.querySelector('#js-vue-sidebar-assignees');
|
||||
const sidebarAssigneesEl = document.getElementById('js-vue-sidebar-assignees');
|
||||
// Only create the sidebarAssignees vue app if it is found in the DOM
|
||||
// We currently do not use sidebarAssignees for the MR page
|
||||
if (sidebarAssigneesEl) {
|
||||
new Vue(sidebarAssignees).$mount(sidebarAssigneesEl);
|
||||
new Vue(SidebarAssignees).$mount(sidebarAssigneesEl);
|
||||
}
|
||||
|
||||
mountConfidentialComponent(mediator);
|
||||
|
|
@ -70,7 +70,7 @@ function domContentLoaded() {
|
|||
$('.js-move-issue-confirmation-button'),
|
||||
).init();
|
||||
|
||||
new Vue(sidebarTimeTracking).$mount('#issuable-time-tracker');
|
||||
new Vue(SidebarTimeTracking).$mount('#issuable-time-tracker');
|
||||
}
|
||||
|
||||
document.addEventListener('DOMContentLoaded', domContentLoaded);
|
||||
|
|
|
|||
|
|
@ -4,11 +4,13 @@
|
|||
isLocked: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
required: false,
|
||||
},
|
||||
|
||||
isConfidential: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
required: false,
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
export default {
|
||||
methods: {
|
||||
issuableDisplayName(issuableType) {
|
||||
return issuableType.replace(/_/, ' ');
|
||||
const displayName = issuableType.replace(/_/, ' ');
|
||||
|
||||
return this.__ ? this.__(displayName) : displayName;
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1218,6 +1218,7 @@ ActiveRecord::Schema.define(version: 20170921115009) do
|
|||
t.datetime "last_repository_updated_at"
|
||||
t.integer "storage_version", limit: 2
|
||||
t.boolean "resolve_outdated_diff_discussions"
|
||||
t.boolean "merge_requests_ff_only_enabled", default: false, null: false
|
||||
end
|
||||
|
||||
add_index "projects", ["ci_id"], name: "index_projects_on_ci_id", using: :btree
|
||||
|
|
|
|||
Loading…
Reference in New Issue