admin管理员组文章数量:1345700
Google Calendar's embed code inserts a "ctz" variable in the URL to set the appropriate display time zone, however I'm working with more than 500 users on a global website and trying to keep everyone clear on scheduling (non-paying language learners, otherwise I'd just hire an expert).
Does anyone have advice on how to set the user's time zone based on their IP address? I've already scanned the questions quite extensively through the day.
Google Calendar's embed code inserts a "ctz" variable in the URL to set the appropriate display time zone, however I'm working with more than 500 users on a global website and trying to keep everyone clear on scheduling (non-paying language learners, otherwise I'd just hire an expert).
Does anyone have advice on how to set the user's time zone based on their IP address? I've already scanned the questions quite extensively through the day.
Share Improve this question asked Aug 5, 2015 at 1:29 EnglishTeacherEricEnglishTeacherEric 2595 silver badges15 bronze badges 1- Well since I'm using SquareSpace (right, I know it's not everybody's favorite...) PHP and Rails won't integrate. Posting additional info in the answer below. – EnglishTeacherEric Commented Aug 5, 2015 at 10:54
4 Answers
Reset to default 6Use the JSTZ library e.g. via cdnjs by including a script tag in the like
<script type="text/javascript" src="https://cdnjs.cloudflare./ajax/libs/jstimezonedetect/1.0.7/jstz.js"></script>
Then put a script tag just before the closing tag that:
- Tags the container of the embedded calendar iframe with an id like 'calendar-container'
- Breaks the iframe embed code into two segments around the timezone param in the url
- Gets the timezone name from JSTZ
- Sets the innerHTML of the container to that rebuilt iframe tag.
So if your calendar embed iframe tag looks like:
<iframe src="https://www.google./calendar/embed?showPrint=0&showCalendars=0&mode=WEEK&height=600&wkst=1&bgcolor=%23FFFFFF&src=somecalendaridentifier%40group.calendar.google.&color=%23AB8B00&ctz=America%2FLos_Angeles" style=" border-width:0 " width="800" height="600" frameborder="0" scrolling="no"></iframe>
Your script would look like:
<script type="text/javascript">
var timezone = jstz.determine();
var pref = '<iframe src="https://www.google./calendar/embed?showPrint=0&showCalendars=0&mode=WEEK&height=600&wkst=1&bgcolor=%23FFFFFF&src=somecalendaridentifier%40group.calendar.google.&color=%23AB8B00&ctz=';
var suff = '" style=" border-width:0 " width="800" height="600" frameborder="0" scrolling="no"></iframe>';
var iframe_html = pref + timezone.name() + suff;
document.getElementById('calendar-container').innerHTML = iframe_html;
</script>
Your solution has worked wonderfully. My final code was like this
HTML (from Marek Rzewuski's answer):
<div id="calendar-container"></div>
JavaScript (modified from sheive's answer):
<script type="text/javascript" src="//cdnjs.cloudflare./ajax/libs/jstimezonedetect/1.0.4/jstz.min.js"></script>
<script type="text/javascript">
var timezone = encodeURIComponent(jstz.determine().name());
var pref = '<iframe src="https://calendar.google./calendar/embed?mode=agenda&src=somecalendaridentifier%40group.calendar.google.&ctz=';
var suff = '" style=" border-width:0 " width="800" height="600" frameborder="0" scrolling="no"></iframe>';
var iframe_html = pref + timezone + suff;
document.getElementById('calendar-container').innerHTML = iframe_html;
</script>
I simply put together all relevant answers on this page.
Or, with ES2015 and without the unneeded JSTZ dependency:
<script type="text/javascript">
const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone
const html = `<iframe src="https://calendar.google./calendar/embed?mode=agenda&src=somecalendaridentifier%40group.calendar.google.&ctz=${timezone}" style=" border-width:0 " width="800" height="600" frameborder="0" scrolling="no"></iframe>`
document.getElementById('calendar-container').innerHTML = html;
</script>
Someone suggested taking a JavaScript library called JSTZ and adding it dynamically to the embed code of Google Calendar. Fortunately, it appears the Google Calendar uses that same standardized IANA time zone codes as browsers (yay good data!) thus avoiding a massive SWITCH statement.
var timezone = jstz.determine(); timezone.name(); "America/New_York"
But I still can't figure out how to get this done. Can someone help take this past the last mile?
Works fine. Have to add:
<div id="calendar-container"></div>
in html
本文标签: javascriptSupport User Time Zone in Embedded Google CalendarStack Overflow
版权声明:本文标题:javascript - Support User Time Zone in Embedded Google Calendar - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743761581a2534476.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论