diff options
author | Aaron Parecki <aaron@parecki.com> | 2014-05-24 14:41:21 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2014-05-24 14:41:21 -0700 |
commit | 3f82ec2f757c62c25a31b461e0a0cddc14886117 (patch) | |
tree | 8eb85c7f356df87f2bf477a54c7ab521002492a1 /views/dashboard.php |
Working app! Copied signin logic from OwnYourGram. New "post" interface for writing a simple text post. Also supports browser geolocation.
Diffstat (limited to 'views/dashboard.php')
-rw-r--r-- | views/dashboard.php | 214 |
1 files changed, 214 insertions, 0 deletions
diff --git a/views/dashboard.php b/views/dashboard.php new file mode 100644 index 0000000..7a35ba1 --- /dev/null +++ b/views/dashboard.php @@ -0,0 +1,214 @@ + + <div style="max-width: 700px; margin: 0 auto;"> + <form role="form"> + + <div class="form-group"> + <label for="note_content"><code>content</code></label> + <textarea id="note_content" value="" class="form-control" style="height: 4em;"></textarea> + </div> + + <div class="form-group"> + <label for="note_in_reply_to"><code>in-reply-to</code> (optional, a URL you are replying to)</label> + <input type="text" id="note_in_reply_to" value="" class="form-control"> + </div> + + <div class="form-group"> + <label for="note_category"><code>category</code> (comma-separated list of tags)</label> + <input type="text" id="note_category" value="" class="form-control" placeholder="e.g. web, personal"> + </div> + + <div class="form-group"> + <label for="note_location"><code>location</code></label> + <input type="checkbox" id="note_location_chk" value=""> + <img src="/images/spinner.gif" id="note_location_loading" style="display: none;"> + + <input type="text" id="note_location_msg" value="" class="form-control" placeholder="" readonly="readonly"> + <input type="hidden" id="note_location"> + + <div id="note_location_img" style="display: none;"> + <img src="" height="180" id="note_location_img_wide" class="img-responsive"> + <img src="" height="320" id="note_location_img_small" class="img-responsive"> + </div> + </div> + + </form> + + <button class="btn btn-success" id="btn_post">Post</button> + + <div class="alert alert-success hidden" id="test_success"><strong>Success! We found a Location header in the response!</strong><br>Your post should be on your website now!<br><a href="" id="post_href">View your post</a></div> + <div class="alert alert-danger hidden" id="test_error"><strong>Your endpoint did not return a Location header.</strong><br>See <a href="/creating-a-micropub-endpoint">Creating a Micropub Endpoint</a> for more information.</div> + + + <?php if($this->test_response): ?> + <h4>Last response from your Micropub endpoint <span id="last_response_date">(<?= relative_time($this->response_date) ?>)</span></h4> + <?php endif; ?> + <pre id="test_response" style="width: 100%; min-height: 240px;"><?= htmlspecialchars($this->test_response) ?></pre> + + + <div class="callout"> + <p>Clicking "Post" will post this note to your Micropub endpoint. Below is some information about the request that will be made.</p> + + <table class="table table-condensed"> + <tr> + <td>me</td> + <td><code><?= session('me') ?></code> (should be your URL)</td> + </tr> + <tr> + <td>scope</td> + <td><code><?= $this->micropub_scope ?></code> (should be a space-separated list of permissions including "post")</td> + </tr> + <tr> + <td>micropub endpoint</td> + <td><code><?= $this->micropub_endpoint ?></code> (should be a URL)</td> + </tr> + <tr> + <td>access token</td> + <td>String of length <b><?= strlen($this->micropub_access_token) ?></b><?= (strlen($this->micropub_access_token) > 0) ? (', ending in <code>' . substr($this->micropub_access_token, -7) . '</code>') : '' ?> (should be greater than length 0)</td> + </tr> + </table> + </div> + + </div> + +<script> +$(function(){ + + $("#btn_post").click(function(){ + $.post("/micropub/post", { + content: $("#note_content").val(), + in_reply_to: $("#note_in_reply_to").val(), + location: $("#note_location").val(), + category: $("#note_category").val() + }, function(data){ + var response = JSON.parse(data); + + if(response.location != false) { + $("#test_success").removeClass('hidden'); + $("#test_error").addClass('hidden'); + $("#post_href").attr("href", response.location); + + $("#note_content").val(""); + $("#note_in_reply_to").val(""); + $("#note_category").val(""); + + } else { + $("#test_success").addClass('hidden'); + $("#test_error").removeClass('hidden'); + } + + $("#last_response_date").html("(just now)"); + $("#test_response").html(response.response); + }) + }); + + function location_error(msg) { + $("#note_location_msg").val(msg); + $("#note_location_chk").removeAttr("checked"); + $("#note_location_loading").hide(); + $("#note_location_img").hide(); + $("#note_location_msg").removeClass("img-visible"); + } + + var map_template_wide = "<?= static_map('{lat}', '{lng}', 180, 700, 15) ?>"; + var map_template_small = "<?= static_map('{lat}', '{lng}', 320, 480, 15) ?>"; + + $("#note_location_chk").click(function(){ + if($(this).attr("checked") == "checked") { + if(navigator.geolocation) { + $("#note_location_loading").show(); + + navigator.geolocation.getCurrentPosition(function(position){ + + $("#note_location_loading").hide(); + console.log(position); + var geo = "geo:" + (Math.round(position.coords.latitude * 100000) / 100000) + "," + (Math.round(position.coords.longitude * 100000) / 100000) + ";u=" + position.coords.accuracy; + $("#note_location_msg").val(geo); + $("#note_location").val(geo); + $("#note_location_img_small").attr("src", map_template_small.replace('{lat}', position.coords.latitude).replace('{lng}', position.coords.longitude)); + $("#note_location_img_wide").attr("src", map_template_wide.replace('{lat}', position.coords.latitude).replace('{lng}', position.coords.longitude)); + $("#note_location_img").show(); + $("#note_location_msg").addClass("img-visible"); + + }, function(err){ + if(err.code == 1) { + location_error("The website was not able to get permission"); + } else if(err.code == 2) { + location_error("Location information was unavailable"); + } else if(err.code == 3) { + location_error("Timed out getting location"); + } + }); + + } else { + location_error("Browser location is not supported"); + } + } else { + $("#note_location_img").hide(); + $("#note_location_msg").removeClass("img-visible"); + $("#note_location_msg").val(''); + $("#note_location").val(''); + } + }); + +}); +</script> +<style type="text/css"> + + #last_response_date { + font-size: 80%; + font-weight: normal; + } + + #btn_post { + margin-bottom: 10px; + } + + @media all and (max-width: 480px) { + #note_location_img_wide { + display: none; + } + #note_location_img_small { + display: block; + } + } + @media all and (min-width: 480px) { + #note_location_img_wide { + display: block; + } + #note_location_img_small { + display: none; + } + } + + .img-visible { + -webkit-border-bottom-right-radius: 0; + -webkit-border-bottom-left-radius: 0; + -moz-border-radius-bottomright: 0; + -moz-border-radius-bottomleft: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; + } + + #note_location_img img { + margin-top: -1px; + border: 1px solid #ccc; + -webkit-border-bottom-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -moz-border-radius-bottomright: 4px; + -moz-border-radius-bottomleft: 4px; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; + } + + .callout { + border-left: 4px #5bc0de solid; + background-color: #f4f8fa; + padding: 20px; + margin-top: 10px; + } + .callout table { + margin-bottom: 0; + } + +</style> + |