Use generateUrl and imagePath instead of OC.*

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2020-07-14 11:05:17 +02:00
parent ed3e03821b
commit 2607d2df1a
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
1 changed files with 16 additions and 3 deletions

View File

@ -23,7 +23,7 @@
<form ref="loginForm" <form ref="loginForm"
method="post" method="post"
name="login" name="login"
:action="OC.generateUrl('login')" :action="loginActionUrl"
@submit="submit"> @submit="submit">
<fieldset> <fieldset>
<div v-if="apacheAuthFailed" <div v-if="apacheAuthFailed"
@ -47,7 +47,7 @@
class="hidden"> class="hidden">
<img class="float-spinner" <img class="float-spinner"
alt="" alt=""
:src="OC.imagePath('core', 'loading-dark.gif')"> :src="loadingIcon">
<span id="messageText" /> <span id="messageText" />
<!-- the following div ensures that the spinner is always inside the #message div --> <!-- the following div ensures that the spinner is always inside the #message div -->
<div style="clear: both;" /> <div style="clear: both;" />
@ -82,7 +82,7 @@
<label for="password" <label for="password"
class="infield">{{ t('Password') }}</label> class="infield">{{ t('Password') }}</label>
<a href="#" class="toggle-password" @click.stop.prevent="togglePassword"> <a href="#" class="toggle-password" @click.stop.prevent="togglePassword">
<img :src="OC.imagePath('core', 'actions/toggle.svg')"> <img :src="toggleIcon">
</a> </a>
</p> </p>
@ -126,6 +126,10 @@
<script> <script>
import jstz from 'jstimezonedetect' import jstz from 'jstimezonedetect'
import LoginButton from './LoginButton' import LoginButton from './LoginButton'
import {
generateUrl,
imagePath,
} from '@nextcloud/router'
export default { export default {
name: 'LoginForm', name: 'LoginForm',
@ -185,6 +189,15 @@ export default {
userDisabled() { userDisabled() {
return this.errors.indexOf('userdisabled') !== -1 return this.errors.indexOf('userdisabled') !== -1
}, },
toggleIcon() {
return imagePath('core', 'actions/toggle.svg')
},
loadingIcon() {
return imagePath('core', 'loading-dark.gif')
},
loginActionUrl() {
return generateUrl('login')
},
}, },
mounted() { mounted() {
if (this.username === '') { if (this.username === '') {