77 lines
2.3 KiB
Vue
77 lines
2.3 KiB
Vue
<template>
|
|
<modal-inner aria-label="Insert image">
|
|
<div class="modal__content">
|
|
<p>Please provide a <b>URL</b> for your image.</p>
|
|
<form-entry label="URL" error="url">
|
|
<input slot="field" class="textfield" type="text" v-model.trim="url" @keyup.enter="resolve()">
|
|
</form-entry>
|
|
<menu-entry @click.native="openGooglePhotos(token)" v-for="token in googlePhotosTokens" :key="token.sub">
|
|
<icon-provider slot="icon" provider-id="googlePhotos"></icon-provider>
|
|
<div>Open from Google Photos</div>
|
|
<span>{{token.name}}</span>
|
|
</menu-entry>
|
|
<menu-entry @click.native="addGooglePhotosAccount">
|
|
<icon-provider slot="icon" provider-id="googlePhotos"></icon-provider>
|
|
<span>Add Google Photos account</span>
|
|
</menu-entry>
|
|
</div>
|
|
<div class="modal__button-bar">
|
|
<button class="button" @click="reject()">Cancel</button>
|
|
<button class="button" @click="resolve()">Ok</button>
|
|
</div>
|
|
</modal-inner>
|
|
</template>
|
|
|
|
<script>
|
|
import modalTemplate from './common/modalTemplate';
|
|
import MenuEntry from '../menus/common/MenuEntry';
|
|
import googleHelper from '../../services/providers/helpers/googleHelper';
|
|
|
|
export default modalTemplate({
|
|
components: {
|
|
MenuEntry,
|
|
},
|
|
data: () => ({
|
|
url: '',
|
|
}),
|
|
computed: {
|
|
googlePhotosTokens() {
|
|
const googleTokens = this.$store.getters['data/googleTokens'];
|
|
return Object.entries(googleTokens)
|
|
.map(([, token]) => token)
|
|
.filter(token => token.isPhotos)
|
|
.sort((token1, token2) => token1.name.localeCompare(token2.name));
|
|
},
|
|
},
|
|
methods: {
|
|
resolve() {
|
|
if (!this.url) {
|
|
this.setError('url');
|
|
} else {
|
|
const callback = this.config.callback;
|
|
this.config.resolve();
|
|
callback(this.url);
|
|
}
|
|
},
|
|
reject() {
|
|
const callback = this.config.callback;
|
|
this.config.reject();
|
|
callback(null);
|
|
},
|
|
addGooglePhotosAccount() {
|
|
return googleHelper.addPhotosAccount();
|
|
},
|
|
openGooglePhotos(token) {
|
|
const callback = this.config.callback;
|
|
this.config.reject();
|
|
googleHelper.openPicker(token, 'img')
|
|
.then(res => res[0] && this.$store.dispatch('modal/open', {
|
|
type: 'googlePhoto',
|
|
url: res[0].url,
|
|
callback,
|
|
}));
|
|
},
|
|
},
|
|
});
|
|
</script>
|