私はMeteorを初めて使用しますが、本当に楽しんでおり、これが私が構築している最初のリアクティブアプリです.
ユーザーがクリックしたときに要素を削除する方法を知りたいですか、.main
それとも既存のテンプレート (メイン コンテンツを含む) を削除してから別の流星テンプレートに置き換える方がよいでしょうか? このようなことは、html/js アプリ (ユーザーのクリック -> el を dom から削除) ではシンプルで簡単ですが、ここではそれほど明確ではありません。
私はただ学び、ベストプラクティスについての洞察を求めています。
//gallery.html
<template name="gallery">
<div class="main">First run info.... Only on first visit should user see this info.</div>
<div id="gallery">
<img src="{{selectedPhoto.url}}">
</div>
</template>
//gallery.js
firstRun = true;
Template.gallery.events({
'click .main' : function(){
$(".main").fadeOut();
firstRun = false;
}
})
if (Meteor.isClient) {
function showSelectedPhoto(photo){
var container = $('#gallery');
container.fadeOut(1000, function(){
Session.set('selectedPhoto', photo);
Template.gallery.rendered = function(){
var $gallery = $(this.lastNode);
if(!firstRun){
$(".main").css({display:"none"});
console.log("not");
}
setTimeout(function(){
$gallery.fadeIn(1000);
}, 1000)
}
});
}
Deps.autorun(function(){
selectedPhoto = Photos.findOne({active : true});
showSelectedPhoto(selectedPhoto);
});
Meteor.setInterval(function(){
selectedPhoto = Session.get('selectedPhoto');
//some selections happen here for getting photos.
Photos.update({_id: selectedPhoto._id}, { $set: { active: false } });
Photos.update({_id: newPhoto._id}, { $set: { active: true } });
}, 10000 );
}