-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathunreviewed-card.vue
102 lines (99 loc) · 3.31 KB
/
unreviewed-card.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<template>
<div id="unreviewed" class="card unreviewed">
<div class="card-header">
Tools that have not yet been reviewed:
</div>
<div class="card-body">
<div>
<strong>Here are additional tools that have not been reviewed yet, but may still be of use to those visiting XPDA.net</strong>
<ul>
<li
v-for="(tool, toolIndex) in tools"
:key="'tool' + toolIndex"
>
<a :href="tool.url" target="_blank" rel="noopener noreferrer">{{ tool.title }}</a>
<template v-if="tool.description">
- {{ tool.description }}
</template>
</li>
</ul>
</div>
</div> <!-- end .card-body -->
</div> <!-- end .card -->
</template>
<script>
export default {
name: 'UnreviewedCard',
data: function () {
return {
tools: [
{
title: 'JavaFX',
url: 'https://openjfx.io',
description: ''
},
{
title: 'Avalonia UI',
url: 'http://avaloniaui.net',
description: ''
},
{
title: 'DeskGap',
url: 'http://deskgap.com',
description: ''
},
{
title: 'NodeGUI',
url: 'https://github.com/nodegui/nodegui',
description: 'Qt based Node.js aproach to native UI\'s, includes React framework'
},
{
title: 'Flutter Desktop',
url: 'https://github.com/flutter/flutter/wiki/Desktop-shells',
description: 'Not ready yet'
},
{
title: 'Electrino',
url: 'https://github.com/pojala/electrino',
description: 'Similar to NeutralinoJS. Unfinished experimental project, possibly abandoned?'
},
{
title: 'NodeKit',
url: 'https://nodekit.io',
description: ''
},
{
title: 'Haxe',
url: 'https://haxe.org/use-cases/desktop',
description: 'Doesn\'t really fit in with the rest of the tools on this site. Needs to be partnered with wxWidgets, NW.js, or Electron. More of just a UI library I think, similar to Quasar.'
},
{
title: '.NET MAUI',
url: 'https://github.com/dotnet/maui',
description: 'Won\'t be released until Nov 2021. Waiting for a "getting started" guide to be published.'
},
{
title: 'UNO Platform',
url: 'https://platform.uno',
description: 'C#/.NET. Bring UWP and WinUI to other platforms. Windows, OSX, iOS, Android, "Web" (via big chonky WASM). New. Linux support is experimental.'
},
{
title: 'Fyne',
url: 'https://fyne.io',
description: 'Uses the Go programming language to produce cross-platform Mobile and Desktop apps (iOS, Android, Windows, OSX, Linux) without the use of an embedded browser.'
},
{
title: 'Socket',
url: 'https://socketsupply.co/guides',
description: 'Looks very promising. Too early to review at time of writing.'
},
{
title: 'Did we miss any?',
url: 'https://github.com/xpdanet/xpdanet.github.io/issues',
description: 'If there are any XPDA tools not included on this site, let us know on the GitHub issues.'
}
]
};
}
};
</script>