mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
65 lines
2 KiB
JavaScript
65 lines
2 KiB
JavaScript
import dotenv from 'dotenv'
|
|
|
|
import config from '../nuxt.config.js'
|
|
|
|
import { getAppType, getRouteType } from '../helpers/app-derived.js'
|
|
|
|
import { AppTemplate } from './app.11ty.js'
|
|
|
|
// import VideoRow from '../components-eleventy/video/row.js'
|
|
// import { isVideo } from '../helpers/app-derived'
|
|
|
|
// Setup dotenv
|
|
dotenv.config()
|
|
|
|
export const makeTitle = function ( app ) {
|
|
return `Does ${app.name} work on Apple Silicon? - ${ config.head.title }`
|
|
}
|
|
|
|
export const makeDescription = function ( app ) {
|
|
return `Latest reported support status of ${ app.name } on Apple Silicon and ${ process.env.npm_package_config_verbiage_processors } Processors when installed via Homebrew. `
|
|
}
|
|
|
|
class FormulaTemplate extends AppTemplate {
|
|
// or `async data() {`
|
|
// or `get data() {`
|
|
data () {
|
|
return {
|
|
layout: 'default.11ty.js',
|
|
|
|
pagination: {
|
|
data: 'eleventy-endpoints',
|
|
size: 1,
|
|
alias: 'app',
|
|
before: function( data ) {
|
|
return data.filter( entry => {
|
|
const routeType = getRouteType( entry.route )
|
|
|
|
return routeType === 'formula'
|
|
})
|
|
}
|
|
},
|
|
|
|
eleventyComputed: {
|
|
title: ({ app: { payload: { app } } }) => {
|
|
// console.log('data', data)
|
|
return makeTitle( app )
|
|
},
|
|
description: ({ app: { payload: { app } } }) => {
|
|
return makeDescription( app )
|
|
},
|
|
mainHeading: ({ app: { payload: { app } } }) => {
|
|
return `Does <code>${ app.name }</code> work on Apple Silicon when installed via Homebrew?`
|
|
}
|
|
},
|
|
|
|
permalink: ({ app }) => {
|
|
// console.log('payload', app.payload)
|
|
return app.route.substring(1) + '/'
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = FormulaTemplate
|