This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
<?php if (Auth::user() && Spark::developer(Auth::user()->email) || session('spark:impersonator')) { | |
?> Spark.state.devmode = true; <?php | |
} else { | |
?> Spark.state.devmode = false; <?php | |
} ?> | |
if (Spark.state.user && !Spark.state.devmode) { | |
// Intercom, FullStory, etc. tracking goes here | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setPluginUrl() { | |
// Deleting the default header | |
delete window.axios.defaults.headers.common['X-CSRF-TOKEN']; | |
// Calling the method that fetches the data from Github | |
this.fetchUrl().then(data => { | |
this.pluginUrl = data; | |
}); | |
// Reset the axios default headers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fetchUrl() { | |
return axios.get('https://api.github.com/repos/tnorthcutt/member-score-wp-plugin/releases/latest') | |
.then(function (response) { | |
return response.data.assets[0].browser_download_url; | |
}); | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* We'll load the axios HTTP library which allows us to easily issue requests | |
* to our Laravel back-end. This library automatically handles sending the | |
* CSRF token as a header based on the value of the "XSRF" token cookie. | |
*/ | |
window.axios.defaults.headers.common = { | |
'X-Requested-With': 'XMLHttpRequest', | |
'X-CSRF-TOKEN': Spark.csrfToken | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class=""> | |
<!-- User Photo / Name --> | |
<a href="#" @click.prevent="toggleDropdown" class="px-4 hover:no-underline focus:no-underline" role="button" aria-expanded="false"> | |
<img :src="user.photo_url" class="spark-nav-profile-photo m-r-xs"> | |
<span class="caret"></span> | |
</a> | |
@include('nav.dropdown') | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- NavBar For Authenticated Users --> | |
<main-nav | |
:user="user" | |
:teams="teams" | |
:current-team="currentTeam" | |
:has-unread-notifications="hasUnreadNotifications" | |
:has-unread-announcements="hasUnreadAnnouncements" | |
:nav-open="navOpen" | |
:dropdown-open="dropdownOpen" | |
inline-template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html { | |
font-size: 16px; | |
} | |
body { | |
font-size: 16px; | |
font-weight: inherit; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "docs"; | |
@import "automation"; | |
@import "bootstrap-overrides"; | |
@tailwind preflight; | |
@tailwind components; | |
@tailwind utilities; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Starting with | |
{ | |
"2018-08-18":28, | |
"2018-08-17":33 | |
} | |
// Desired end result |