-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.html
More file actions
158 lines (142 loc) · 5.82 KB
/
app.html
File metadata and controls
158 lines (142 loc) · 5.82 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#000000" media="(prefers-color-scheme: dark)">
<title>App Details</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body class="details-page">
<div id="splash">
<div class="splash-content">
<div class="splash-logo">RipeStore</div>
<div class="splash-loader"></div>
<div id="splash-status">Loading app details...</div>
</div>
</div>
<nav class="navbar glass">
<div class="nav-content">
<a href="./" class="back-link">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M15 18l-6-6 6-6"/></svg>
Back
</a>
</div>
</nav>
<main class="details-main">
<!-- Hero Header -->
<header class="app-header">
<img id="hero-icon" class="app-icon-large" src="" alt="">
<div class="app-header-info">
<h1 id="hero-title"></h1>
<p id="hero-subtitle"></p>
<div class="actions">
<a id="hero-get" class="btn-get" href="#">GET</a>
<button id="btn-share" class="btn-icon" aria-label="Share">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"/><polyline points="16 6 12 2 8 6"/><line x1="12" y1="2" x2="12" y2="15"/></svg>
</button>
<button id="btn-more-actions" class="btn-icon">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="1"/><circle cx="19" cy="12" r="1"/><circle cx="5" cy="12" r="1"/></svg>
</button>
</div>
</div>
</header>
<div class="separator"></div>
<!-- What's New -->
<section id="whats-new" class="section hidden">
<div class="section-header">
<h2>What's New</h2>
<div class="version-picker">
<select id="version-select"></select>
</div>
</div>
<p id="whats-new-text" class="text-body desc-clamped"></p>
<button id="whats-new-more-btn" class="more-btn hidden">more</button>
</section>
<!-- Screenshots -->
<section id="screenshots-section" class="section hidden">
<h2>Preview</h2>
<div class="carousel-container">
<button class="scroll-btn left hidden" aria-label="Scroll left"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M15 18l-6-6 6-6"/></svg></button>
<div id="screenshots-scroll" class="scroll-row screenshots-row"></div>
<button class="scroll-btn right" aria-label="Scroll right"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M9 18l6-6-6-6"/></svg></button>
</div>
</section>
<div class="separator"></div>
<!-- Description -->
<section class="section">
<p id="app-desc" class="text-body desc-clamped"></p>
<button id="desc-more-btn" class="more-btn hidden">more</button>
</section>
<div class="separator"></div>
<!-- Information -->
<section class="section">
<h2>Information</h2>
<div class="info-list">
<div class="info-row">
<span class="label">Provider</span>
<span id="meta-provider" class="val"></span>
</div>
<div class="info-row">
<span class="label">Size</span>
<span id="meta-size" class="val"></span>
</div>
<div class="info-row">
<span class="label">Compatibility</span>
<span id="meta-min-os" class="val"></span>
</div>
<div class="info-row">
<span class="label">Category</span>
<span id="meta-cat" class="val"></span>
</div>
<div class="info-row">
<span class="label">Source</span>
<span id="meta-source-name" class="val"></span>
</div>
<div id="perm-section" class="info-row hidden clickable">
<span class="label">Permissions</span>
<span id="perm-btn" class="val accent">View Details</span>
</div>
<div id="ent-section" class="info-row hidden clickable">
<span class="label">Entitlements</span>
<span id="ent-btn" class="val accent">View Details</span>
</div>
</div>
</section>
</main>
<!-- Actions Modal -->
<div id="actions-modal" class="modal-overlay">
<div class="modal-content">
<div class="modal-header">
<h3>Alternatives</h3>
<button id="close-actions" class="close-btn">×</button>
</div>
<div id="actions-list" class="modal-body list-menu"></div>
</div>
</div>
<!-- Permissions Modal -->
<div id="perm-modal" class="modal-overlay">
<div class="modal-content">
<div class="modal-header">
<h3>App Permissions</h3>
<button id="close-perm" class="close-btn">×</button>
</div>
<div id="perm-list" class="modal-body"></div>
</div>
</div>
<!-- Entitlements Modal -->
<div id="ent-modal" class="modal-overlay">
<div class="modal-content">
<div class="modal-header">
<h3>App Entitlements</h3>
<button id="close-ent" class="close-btn">×</button>
</div>
<div id="ent-list" class="modal-body"></div>
</div>
</div>
<script type="module" src="assets/js/ui/details.js"></script>
</body>
</html>