mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
162 lines
5 KiB
Vue
162 lines
5 KiB
Vue
<template>
|
|
<div>
|
|
<div class="dropdown protocol-options-dropdown">
|
|
<button
|
|
class="btn btn-secondary dropdown-toggle"
|
|
type="button"
|
|
id="dropdownProtocolOptions"
|
|
data-toggle="dropdown"
|
|
aria-haspopup="true"
|
|
aria-expanded="true"
|
|
tabindex="0"
|
|
>
|
|
<span>{{ i18n.t("my_modules.protocol.options_dropdown.title") }}</span>
|
|
<span class="sn-icon sn-icon-down"></span>
|
|
</button>
|
|
<ul
|
|
class="dropdown-menu dropdown-menu-right rounded !p-2.5 sn-shadow-menu-sm"
|
|
aria-labelledby="dropdownProtocolOptions"
|
|
>
|
|
<li v-if="protocol.attributes.urls.load_from_repo_url">
|
|
<a class="!px-3 !py-2.5 hover:!bg-sn-super-light-blue !text-sn-blue"
|
|
ref="loadProtocol"
|
|
data-action="load-from-repository"
|
|
@click="loadProtocol"
|
|
>
|
|
<span>{{ i18n.t("my_modules.protocol.options_dropdown.load_from_repo") }}</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="!px-3 !py-2.5 hover:!bg-sn-super-light-blue !text-sn-blue"
|
|
data-toggle="modal"
|
|
data-target="#newProtocolModal"
|
|
v-bind:data-protocol-name="protocol.attributes.name"
|
|
:class="{ disabled: !protocol.attributes.urls.save_to_repo_url }"
|
|
>
|
|
<span>{{
|
|
i18n.t("my_modules.protocol.options_dropdown.save_to_repo")
|
|
}}</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="!px-3 !py-2.5 hover:!bg-sn-super-light-blue !text-sn-blue"
|
|
data-turbolinks="false"
|
|
:href="protocol.attributes.urls.export_url"
|
|
:class="{ disabled: !protocol.attributes.urls.export_url }"
|
|
>
|
|
<span>{{
|
|
i18n.t("my_modules.protocol.options_dropdown.export")
|
|
}}</span>
|
|
</a>
|
|
</li>
|
|
<li v-if="protocol.attributes.urls.update_protocol_url">
|
|
<a class="!px-3 !py-2.5 hover:!bg-sn-super-light-blue !text-sn-blue"
|
|
ref="updateProtocol"
|
|
data-action="update-self"
|
|
@click="updateProtocol"
|
|
>
|
|
<span>{{
|
|
i18n.t("my_modules.protocol.options_dropdown.update_protocol")
|
|
}}</span>
|
|
</a>
|
|
</li>
|
|
<li v-if="protocol.attributes.urls.unlink_url">
|
|
<a class="!px-3 !py-2.5 hover:!bg-sn-super-light-blue !text-sn-blue"
|
|
ref="unlinkProtocol"
|
|
data-action="unlink"
|
|
@click="unlinkProtocol"
|
|
>
|
|
<span>{{
|
|
i18n.t("my_modules.protocol.options_dropdown.unlink")
|
|
}}</span>
|
|
</a>
|
|
</li>
|
|
<li v-if="protocol.attributes.urls.revert_protocol_url">
|
|
<a class="!px-3 !py-2.5 hover:!bg-sn-super-light-blue !text-sn-blue"
|
|
ref="revertProtocol"
|
|
data-action="revert"
|
|
@click="revertProtocol"
|
|
>
|
|
<span>{{
|
|
i18n.t("my_modules.protocol.options_dropdown.revert_protocol")
|
|
}}</span>
|
|
</a>
|
|
</li>
|
|
<li v-if="canDeleteSteps">
|
|
<a class="!px-3 !py-2.5 hover:!bg-sn-super-light-blue !text-sn-blue"
|
|
data-turbolinks="false"
|
|
@click.prevent="openStepsDeletingModal()"
|
|
>
|
|
<span>{{
|
|
i18n.t("my_modules.protocol.options_dropdown.delete_steps")
|
|
}}</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<DeleteStepsModals v-if="stepsDeleting" @confirm="deleteSteps" @close="closeStartStepsDeletingModal" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import DeleteStepsModals from './modals/delete_steps';
|
|
|
|
export default {
|
|
|
|
name: 'ProtocolOptions',
|
|
components: { DeleteStepsModals },
|
|
data() {
|
|
return {
|
|
stepsDeleting: false
|
|
};
|
|
},
|
|
props: {
|
|
protocol: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
canDeleteSteps: {
|
|
type: Boolean,
|
|
required: true
|
|
}
|
|
},
|
|
mounted() {
|
|
// Legacy global functions from app/assets/javascripts/my_modules/protocols.js
|
|
initLoadFromRepository();
|
|
initLinkUpdate();
|
|
},
|
|
methods: {
|
|
openStepsDeletingModal() {
|
|
this.stepsDeleting = true;
|
|
},
|
|
closeStartStepsDeletingModal() {
|
|
this.stepsDeleting = false;
|
|
},
|
|
loadProtocol() {
|
|
$.get(
|
|
`${this.protocol.attributes.urls.load_from_repo_url}?type=recent`
|
|
).done((data) => {
|
|
$(this.$refs.loadProtocol).trigger('ajax:success', data);
|
|
});
|
|
},
|
|
unlinkProtocol() {
|
|
$.get(this.protocol.attributes.urls.unlink_url).done((data) => {
|
|
$(this.$refs.unlinkProtocol).trigger('ajax:success', data);
|
|
});
|
|
},
|
|
updateProtocol() {
|
|
$.get(this.protocol.attributes.urls.update_protocol_url).done((data) => {
|
|
$(this.$refs.updateProtocol).trigger('ajax:success', data);
|
|
});
|
|
},
|
|
revertProtocol() {
|
|
$.get(this.protocol.attributes.urls.revert_protocol_url).done((data) => {
|
|
$(this.$refs.revertProtocol).trigger('ajax:success', data);
|
|
});
|
|
},
|
|
deleteSteps() {
|
|
this.$emit('protocol:delete_steps');
|
|
}
|
|
}
|
|
};
|
|
</script>
|