mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2025-08-11 10:32:26 +00:00
Compare commits
1 Commits
main
...
5b2d012f23
Author | SHA1 | Date | |
---|---|---|---|
|
5b2d012f23 |
@@ -1,4 +1,4 @@
|
||||
# syntax=docker/dockerfile:1.17
|
||||
# syntax=docker/dockerfile:1.15
|
||||
FROM cgr.dev/chainguard/go:latest as build
|
||||
|
||||
WORKDIR /src
|
||||
|
931
package-lock.json
generated
931
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -10,7 +10,7 @@
|
||||
"dependencies": {
|
||||
"@github/hotkey": "^3.0.0",
|
||||
"@popperjs/core": "^2.11.8",
|
||||
"axios": "^1.11.0",
|
||||
"axios": "^1.6.0",
|
||||
"bootstrap": "^5.3.1",
|
||||
"bootstrap-vue": "^2.22.0",
|
||||
"core-js": "^3.32.1",
|
||||
|
29
src/App.vue
29
src/App.vue
@@ -2,6 +2,7 @@
|
||||
import axios from "axios";
|
||||
import moment from "moment";
|
||||
import Loading from "vue-loading-overlay";
|
||||
import GithubButton from "vue-github-button";
|
||||
import { install } from "@github/hotkey";
|
||||
|
||||
import "vue-loading-overlay/dist/css/index.css";
|
||||
@@ -117,14 +118,10 @@ export default {
|
||||
return v.replace(re, (matchedText) => `<mark>${matchedText}</mark>`);
|
||||
};
|
||||
},
|
||||
showBeforeTargetDate() {
|
||||
const now = new Date();
|
||||
const target = new Date('2025-08-20T00:00:00');
|
||||
return now < target;
|
||||
}
|
||||
},
|
||||
components: {
|
||||
Loading,
|
||||
GithubButton,
|
||||
},
|
||||
};
|
||||
</script>
|
||||
@@ -209,9 +206,21 @@ export default {
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div v-if="showBeforeTargetDate">
|
||||
<div v-if="!isMobile()">
|
||||
<footer class="fixed-bottom">
|
||||
PSA: <a href="https://rfd.fyi">rfd.fyi</a> will not be renewed after 2025-08-20. Please use <a href="https://rfd.davegallant.ca">rfd.davegallant.ca</a>.
|
||||
<small
|
||||
>Press '/' to begin filtering (i.e.
|
||||
<a
|
||||
href="/#/filter=costco"
|
||||
onclick="setTimeout(location.reload.bind(location), 1)"
|
||||
>/#/filter=costco</a
|
||||
>)</small
|
||||
>
|
||||
<div class="footer-right">
|
||||
<github-button href="https://github.com/davegallant/rfd-fyi"
|
||||
></github-button
|
||||
>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
@@ -225,10 +234,4 @@ export default {
|
||||
text-align: center;
|
||||
color: #2c3e50;
|
||||
}
|
||||
|
||||
.fixed-bottom {
|
||||
background: #ffc;
|
||||
color: black;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
Reference in New Issue
Block a user