[new feature] ImagePreview reconstruct (#201)

* [Document] add english document of Checkbox

* [Document] add english document of Field

* [Document] add english document of NumberKeyboard

* [bugfix] NumberKeyboard should not dispaly title when title is empty

* [Document] add english document of PasswordInput

* [Document] add english document of Radio

* [document] add english document of Switch

* [bugfix] remove redundent styles in english document

* [Document] fix details

* fix Switch test cases

* [bugfix] Swipe shouid reinitialize when item changes

* [new feature] ImagePreview reconstruct
This commit is contained in:
neverland
2017-10-12 20:26:28 -05:00
committed by GitHub
parent 4dfa56e796
commit d7cee6e8f4
4 changed files with 78 additions and 154 deletions
+4 -15
View File
@@ -6,30 +6,19 @@ let instance;
const ImagePreviewConstructor = Vue.extend(ImagePreview);
const initInstance = () => {
/* istanbul ignore if */
if (Vue.prototype.$isServer) return;
instance = new ImagePreviewConstructor({
el: document.createElement('div')
});
document.body.appendChild(instance.$el);
};
var ImagePreviewBox = images => {
/* istanbul ignore if */
if (Vue.prototype.$isServer) return;
const ImagePreviewBox = images => {
if (!instance) {
initInstance();
}
/* istanbul ignore else */
if (!instance.value) {
instance.images = images;
document.body.appendChild(instance.$el);
Vue.nextTick(() => {
instance.value = true;
});
}
instance.images = images;
instance.value = true;
};
export default ImagePreviewBox;