mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
106 lines
3.2 KiB
Vue
106 lines
3.2 KiB
Vue
<template>
|
|
<section class="container py-24">
|
|
<div class="flex flex-col">
|
|
<h1 class="title text-2xl leading-tight mb-6">
|
|
Categories
|
|
</h1>
|
|
|
|
<div class="line-separator border-white border-t-2 mb-12" />
|
|
|
|
<ul class="categories-list space-y-3">
|
|
<li
|
|
v-for="(section, i) in sectionList"
|
|
:key="`${section.slug}-${i}`"
|
|
:ref="`${section.slug}-row`"
|
|
class="relative"
|
|
>
|
|
<!-- section.endpoint: {{ section.endpoint }} -->
|
|
<a
|
|
:href="`/kind/${section.slug}`"
|
|
class="flex justify-start items-center inset-x-0 text-3xl md:text-4xl hover:bg-darkest border-2 border-white border-opacity-0 hover:border-opacity-50 focus:outline-none focus:bg-gray-50 duration-300 ease-in-out rounded-lg space-x-3 -mx-5 px-5 md:pr-64 py-3"
|
|
style="transition-property: border;"
|
|
>
|
|
<div class="font-hairline">
|
|
<div>{{ section.label }}</div>
|
|
<div class="text-xs opacity-75 mb-3">{{ section.appNames.slice(0, 25).join(', ') }}, etc...</div>
|
|
</div>
|
|
<div>➔</div>
|
|
</a>
|
|
|
|
</li>
|
|
</ul>
|
|
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import Search from '~/components/search.vue'
|
|
import LinkButton from '~/components/link-button.vue'
|
|
|
|
import { byTimeThenNull } from '~/helpers/sort-list.js'
|
|
|
|
// import appList from '~/static/app-list.json'
|
|
// import gamelist from '~/static/game-list.json'
|
|
|
|
export default {
|
|
async asyncData () {
|
|
|
|
const { default: appList } = await import('~/static/app-list.json')
|
|
const { default: gamelist } = await import('~/static/game-list.json')
|
|
|
|
const allList = [
|
|
...appList.sort(byTimeThenNull),
|
|
...gamelist,
|
|
]
|
|
|
|
const sectionList = {}
|
|
|
|
allList.forEach( app => {
|
|
// Find and store all sections
|
|
|
|
// console.log('app.section.slug', app.section.slug)
|
|
|
|
if (sectionList.hasOwnProperty(app.section.slug)) {
|
|
sectionList[app.section.slug].appNames.push(app.name)
|
|
|
|
return
|
|
}
|
|
|
|
sectionList[app.section.slug] = {
|
|
...app.section,
|
|
appNames: [ app.name ]
|
|
}
|
|
})
|
|
|
|
return {
|
|
sectionList
|
|
}
|
|
},
|
|
components: {
|
|
Search,
|
|
LinkButton
|
|
},
|
|
data: function () {
|
|
return {}
|
|
},
|
|
// computed: {
|
|
// sectionList () {
|
|
// return sectionList
|
|
// }
|
|
// },
|
|
head() {
|
|
return {
|
|
title: `Categories of App Support for Apple Silicon - Does It ARM`,
|
|
// meta: [
|
|
// // hid is used as unique identifier. Do not use `vmid` for it as it will not work
|
|
// {
|
|
// hid: 'description',
|
|
// name: 'description',
|
|
// content: 'My custom description'
|
|
// }
|
|
// ]
|
|
}
|
|
}
|
|
}
|
|
</script>
|