68 lines
2.3 KiB
Vue
68 lines
2.3 KiB
Vue
<template>
|
|
<modal-inner aria-label="发布到Blogger Page">
|
|
<div class="modal__content">
|
|
<div class="modal__image">
|
|
<icon-provider provider-id="bloggerPage"></icon-provider>
|
|
</div>
|
|
<p>发布<b> {{CurrentFileName}} </b>到您的<b> Blogger页面</b>。</p>
|
|
<form-entry label="Blog URL" error="blogUrl">
|
|
<input slot="field" class="textfield" type="text" v-model.trim="blogUrl" @keydown.enter="resolve()">
|
|
<div class="form-entry__info">
|
|
<b>例如:</b> http://example.blogger.com/
|
|
</div>
|
|
</form-entry>
|
|
<form-entry label="现有页面ID" info="可选的">
|
|
<input slot="field" class="textfield" type="text" v-model.trim="pageId" @keydown.enter="resolve()">
|
|
</form-entry>
|
|
<form-entry label="模板">
|
|
<select slot="field" class="textfield" v-model="selectedTemplate" @keydown.enter="resolve()">
|
|
<option v-for="(template, id) in allTemplatesById" :key="id" :value="id">
|
|
{{ template.name }}
|
|
</option>
|
|
</select>
|
|
<div class="form-entry__actions">
|
|
<a href="javascript:void(0)" @click="configureTemplates">配置模板</a>
|
|
</div>
|
|
</form-entry>
|
|
<div class="modal__info">
|
|
<b>提示:</b> 您可以在<a href="javascript:void(0)" @click="openFileProperties">文件属性</a>中提供<code>title</code>的值
|
|
</div>
|
|
</div>
|
|
<div class="modal__button-bar">
|
|
<button class="button" @click="config.reject()">取消</button>
|
|
<button class="button button--resolve" @click="resolve()">确认</button>
|
|
</div>
|
|
</modal-inner>
|
|
</template>
|
|
|
|
<script>
|
|
import bloggerPageProvider from '../../../services/providers/bloggerPageProvider';
|
|
import modalTemplate from '../common/modalTemplate';
|
|
|
|
export default modalTemplate({
|
|
data: () => ({
|
|
pageId: '',
|
|
}),
|
|
computedLocalSettings: {
|
|
blogUrl: 'bloggerBlogUrl',
|
|
selectedTemplate: 'bloggerPublishTemplate',
|
|
},
|
|
methods: {
|
|
resolve() {
|
|
if (!this.blogUrl) {
|
|
this.setError('blogUrl');
|
|
} else {
|
|
// Return new location
|
|
const location = bloggerPageProvider.makeLocation(
|
|
this.config.token,
|
|
this.blogUrl,
|
|
this.pageId,
|
|
);
|
|
location.templateId = this.selectedTemplate;
|
|
this.config.resolve(location);
|
|
}
|
|
},
|
|
},
|
|
});
|
|
</script>
|