@ -1,24 +1,12 @@
|
||||
*.iml
|
||||
.gradle
|
||||
/local.properties
|
||||
/.idea
|
||||
.DS_Store
|
||||
node_modules
|
||||
/dist
|
||||
/npm
|
||||
|
||||
|
||||
# local env files
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# Log files
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# Editor directories and files
|
||||
.idea
|
||||
.vscode
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
/build
|
||||
/captures
|
||||
.externalNativeBuild
|
||||
.cxx
|
||||
local.properties
|
||||
/platypush/build
|
||||
/app/release
|
||||
|
@ -0,0 +1 @@
|
||||
/build
|
@ -0,0 +1,46 @@
|
||||
plugins {
|
||||
id 'com.android.application'
|
||||
id 'kotlin-android'
|
||||
id 'kotlin-android-extensions'
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion 29
|
||||
buildToolsVersion "30.0.3"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "tech.platypush.platypush"
|
||||
minSdkVersion 23
|
||||
targetSdkVersion 29
|
||||
versionCode 1000100
|
||||
versionName "1.0.1"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_1_8
|
||||
targetCompatibility JavaVersion.VERSION_1_8
|
||||
}
|
||||
kotlinOptions {
|
||||
jvmTarget = '1.8'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||||
implementation 'androidx.core:core-ktx:1.3.2'
|
||||
implementation 'androidx.appcompat:appcompat:1.2.0'
|
||||
implementation 'com.google.android.material:material:1.3.0'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
||||
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
|
||||
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
|
||||
testImplementation 'junit:junit:4.+'
|
||||
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
# Add project specific ProGuard rules here.
|
||||
# You can control the set of applied configuration files using the
|
||||
# proguardFiles setting in build.gradle.
|
||||
#
|
||||
# For more details, see
|
||||
# http://developer.android.com/guide/developing/tools/proguard.html
|
||||
|
||||
# If your project uses WebView with JS, uncomment the following
|
||||
# and specify the fully qualified class name to the JavaScript interface
|
||||
# class:
|
||||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||
# public *;
|
||||
#}
|
||||
|
||||
# Uncomment this to preserve the line number information for
|
||||
# debugging stack traces.
|
||||
#-keepattributes SourceFile,LineNumberTable
|
||||
|
||||
# If you keep the line number information, uncomment this to
|
||||
# hide the original source file name.
|
||||
#-renamesourcefileattribute SourceFile
|
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="tech.platypush.platypush">
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/Theme.Platypush"
|
||||
android:usesCleartextTraffic="true">
|
||||
<activity
|
||||
android:name="tech.platypush.platypush.MainActivity"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/Theme.Platypush.NoActionBar">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
</manifest>
|
@ -0,0 +1,292 @@
|
||||
html, body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#app {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #e0eae8;
|
||||
font-size: 20px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
color: #2c3e50;
|
||||
}
|
||||
|
||||
.services {
|
||||
width: 60%;
|
||||
height: max-content;
|
||||
min-width: 17em;
|
||||
max-width: 22.5em;
|
||||
background: white;
|
||||
margin-top: 2em;
|
||||
box-shadow: 1px 1px 2px 2px #bbb;
|
||||
border-radius: 1.5em;
|
||||
}
|
||||
|
||||
.services h3 {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.no-items {
|
||||
text-align: center;
|
||||
padding: 2em 1em;
|
||||
}
|
||||
|
||||
.service {
|
||||
width: 100%;
|
||||
padding: 1em .5em;
|
||||
border-bottom: 1px solid #ccc;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.service:first-child {
|
||||
border-radius: 1.5em 1.5em 0 0;
|
||||
}
|
||||
|
||||
.service:last-child {
|
||||
border-radius: 0 0 1.5em 1.5em;
|
||||
}
|
||||
|
||||
.service:hover {
|
||||
background: #bef6da;
|
||||
}
|
||||
|
||||
.service .remove {
|
||||
position: absolute;
|
||||
right: 1.5em;
|
||||
}
|
||||
|
||||
.service .remove img {
|
||||
width: 1.2em;
|
||||
height: 1.2em;
|
||||
}
|
||||
|
||||
.name {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.add-btn {
|
||||
width: 2.5em;
|
||||
height: 2.5em;
|
||||
background: url('../icon/plus.svg');
|
||||
position: fixed;
|
||||
bottom: 1em;
|
||||
right: 1em;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.add-btn:hover {
|
||||
opacity: .75;
|
||||
}
|
||||
|
||||
/* Add host modal */
|
||||
.add-modal-container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.add-modal-background {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: black;
|
||||
position: absolute;
|
||||
opacity: .87;
|
||||
}
|
||||
|
||||
.add-modal {
|
||||
width: 80%;
|
||||
height: max-content;
|
||||
max-width: 22.5em;
|
||||
background: #f0f0f0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
font-size: 1.2em;
|
||||
padding: 1em;
|
||||
border-radius: 1em;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.add-modal .header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding-bottom: .5em;
|
||||
}
|
||||
|
||||
.add-modal form,
|
||||
.add-modal form label {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.add-modal form input {
|
||||
border-radius: .25em;
|
||||
padding: .25em;
|
||||
}
|
||||
|
||||
.add-modal form input[type=text],
|
||||
.add-modal form input[type=number] {
|
||||
width: 95%;
|
||||
font-size: 1.05em;
|
||||
margin-bottom: .5em;
|
||||
}
|
||||
|
||||
.add-modal form input[type=submit] {
|
||||
font-size: 1.05em;
|
||||
}
|
||||
|
||||
.add-modal .buttons {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.add-modal .buttons .button {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
/* Splash screen */
|
||||
.splash {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
position: absolute;
|
||||
background: white;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: 1.2em;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.splash .icon {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
display: flex;
|
||||
margin-bottom: .5em;
|
||||
}
|
||||
|
||||
.splash .icon img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/* Fade in/out animations */
|
||||
.fade-in {
|
||||
animation-duration: 0.5s;
|
||||
-webkit-animation-duration: 0.5s;
|
||||
animation-fill-mode: both;
|
||||
animation-name: fadeIn;
|
||||
-webkit-animation-name: fadeIn;
|
||||
}
|
||||
|
||||
.fade-out {
|
||||
animation-duration: 0.5s;
|
||||
-webkit-animation-duration: 0.5s;
|
||||
animation-fill-mode: both;
|
||||
animation-name: fadeOut;
|
||||
-webkit-animation-name: fadeOut;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
0% {opacity: 0;}
|
||||
100% {opacity: 1;}
|
||||
}
|
||||
|
||||
@keyframes fadeOut {
|
||||
0% {opacity: 1;}
|
||||
100% {
|
||||
opacity: 0;
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* Loading animation */
|
||||
.loading {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 3em;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background: #909090;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.icon {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
|
||||
.icon div {
|
||||
position: absolute;
|
||||
top: 33px;
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
border-radius: 50%;
|
||||
background: #fff;
|
||||
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
||||
}
|
||||
|
||||
.icon div:nth-child(1) {
|
||||
left: 8px;
|
||||
animation: lds-ellipsis1 0.6s infinite;
|
||||
}
|
||||
|
||||
.icon div:nth-child(2) {
|
||||
left: 8px;
|
||||
animation: lds-ellipsis2 0.6s infinite;
|
||||
}
|
||||
|
||||
.icon div:nth-child(3) {
|
||||
left: 32px;
|
||||
animation: lds-ellipsis2 0.6s infinite;
|
||||
}
|
||||
|
||||
.icon div:nth-child(4) {
|
||||
left: 56px;
|
||||
animation: lds-ellipsis3 0.6s infinite;
|
||||
}
|
||||
|
||||
@keyframes lds-ellipsis1 {
|
||||
0% {
|
||||
transform: scale(0);
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes lds-ellipsis3 {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
100% {
|
||||
transform: scale(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes lds-ellipsis2 {
|
||||
0% {
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
100% {
|
||||
transform: translate(24px, 0);
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1 @@
|
||||
../../../res/mipmap-xxxhdpi/ic_launcher.png
|
After Width: | Height: | Size: 5.3 KiB |
@ -0,0 +1,101 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Platypush</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<script type="text/javascript" src="js/vue.min.js"></script>
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app">
|
||||
<div class="splash" v-if="splash">
|
||||
<div class="icon">
|
||||
<img src="img/icon.png" alt="">
|
||||
</div>
|
||||
<div class="app-name">
|
||||
Platypush
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="loading" v-if="loading">
|
||||
<div class="icon">
|
||||
<div v-for="n in 4" :key="n"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="services">
|
||||
<div class="saved" v-if="services.saved?.length">
|
||||
<h3>Saved services</h3>
|
||||
|
||||
<div class="service" v-for="(service, i) in services.saved" :key="i"
|
||||
@click="onServiceClick(service)">
|
||||
<span class="name" v-text="service.name" v-if="service.name"></span>
|
||||
<span v-if="service.name"> on </span>
|
||||
<span class="address" v-text="service.host"></span>:<span class="port" v-text="service.port"></span>
|
||||
<span class="remove" @click="removeService(i, $event)">
|
||||
<img src="img/trash.png" alt="Remove">
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="scanned">
|
||||
<h3>Scanned services</h3>
|
||||
|
||||
<div class="no-items" v-if="!services.scanned?.length">
|
||||
<div class="empty">No Platypush web services found on the network</div>
|
||||
</div>
|
||||
|
||||
<div class="service" v-for="(service, i) in services.scanned" :key="i"
|
||||
@click="onServiceClick(service)">
|
||||
<span class="name" v-text="service.name" v-if="service.name"></span>
|
||||
<span v-if="service.name"> on </span>
|
||||
<span class="address" v-text="service.host"></span>:<span class="port" v-text="service.port"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="add-modal-container" @click="addModal.visible = false" v-if="addModal.visible">
|
||||
<div class="add-modal-background"></div>
|
||||
<div class="add-modal" @click="$event.stopPropagation()">
|
||||
<div class="header">
|
||||
Connect to a Platypush web service
|
||||
</div>
|
||||
|
||||
<div class="body">
|
||||
<form @submit.prevent="onServiceConnect">
|
||||
<label>
|
||||
<input type="text" placeholder="IP or hostname" v-model="addModal.host">
|
||||
</label>
|
||||
|
||||
<label>
|
||||
<input type="number" placeholder="Port" v-model="addModal.port">
|
||||
</label>
|
||||
|
||||
<label v-if="addModal.save">
|
||||
<input type="text" placeholder="Name" v-model="addModal.name">
|
||||
</label>
|
||||
|
||||
<div class="buttons">
|
||||
<div class="button">
|
||||
<input type="submit" value="Connect">
|
||||
</div>
|
||||
<div class="button">
|
||||
<label>
|
||||
Remember this host
|
||||
<input type="checkbox" v-model="addModal.save">
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="add-btn" @click="addModal.visible = true"></div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="js/main.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,167 @@
|
||||
new Vue({
|
||||
el: '#app',
|
||||
data: function() {
|
||||
return {
|
||||
loading: false,
|
||||
splash: false,
|
||||
services: {
|
||||
scanned: [],
|
||||
saved: [],
|
||||
},
|
||||
addModal: {
|
||||
visible: false,
|
||||
host: undefined,
|
||||
port: 8008,
|
||||
name: undefined,
|
||||
save: false,
|
||||
},
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
servicesByName: function() {
|
||||
return Object.values(this.services).reduce((obj, services) =>
|
||||
services.reduce((obj2, srv) => {
|
||||
obj2[srv.name] = srv
|
||||
return obj2
|
||||
}, obj), {})
|
||||
},
|
||||
|
||||
servicesByHostAndPort: function() {
|
||||
return Object.values(this.services).reduce((obj, services) =>
|
||||
services.reduce((obj2, srv) => {
|
||||
obj2[`${srv.host}:${srv.port}`] = srv
|
||||
return obj2
|
||||
}, obj), {})
|
||||
},
|
||||
},
|
||||
|
||||
methods: {
|
||||
refresh: function() {
|
||||
this.services.scanned = [
|
||||
...this.services.scanned,
|
||||
...JSON.parse(app.pollServices()).filter((srv) => !(srv.name in this.servicesByName)),
|
||||
]
|
||||
},
|
||||
|
||||
onServiceClick: function(service) {
|
||||
this.connect(service.host, service.port)
|
||||
},
|
||||
|
||||
onServiceConnect: function() {
|
||||
if (!this.addModal.host?.length) {
|
||||
app.alert('Please specify a host name or IP address')
|
||||
return
|
||||
}
|
||||
|
||||
if (this.addModal.save) {
|
||||
if (!this.saveService(this.addModal.host, this.addModal.port, this.addModal.name || ''))
|
||||
return
|
||||
}
|
||||
|
||||
this.connect(this.addModal.host, this.addModal.port)
|
||||
},
|
||||
|
||||
saveService: function(host, port, name) {
|
||||
name = this.addModal.name.trim()
|
||||
if (!name.length) {
|
||||
app.alert('Please specify a name')
|
||||
return false
|
||||
}
|
||||
|
||||
let overwrite = false
|
||||
if (name in this.servicesByName) {
|
||||
if (!confirm(`A service named ${name} already exists. ` +
|
||||
`Do you want to overwrite it?`))
|
||||
return false
|
||||
|
||||
overwrite = true
|
||||
} else if (`${host}:${port}` in this.servicesByHostAndPort) {
|
||||
if (!confirm(`A service on ${host}:${port} already exists. ` +
|
||||
`Do you want to overwrite it?`))
|
||||
return false
|
||||
|
||||
overwrite = true
|
||||
}
|
||||
|
||||
this.loading = true
|
||||
try {
|
||||
const rs = app.saveService(host, port, name, overwrite)
|
||||
if (rs?.error)
|
||||
throw rs.error
|
||||
|
||||
this.loadServices()
|
||||
return true
|
||||
} finally {
|
||||
this.loading = false
|
||||
}
|
||||
},
|
||||
|
||||
removeService: function(savedIndex, event) {
|
||||
event.stopPropagation()
|
||||
const srv = this.services.saved[savedIndex]
|
||||
if (!(srv && confirm('Are you sure that you want to remove this service?')))
|
||||
return false
|
||||
|
||||
this.loading = true
|
||||
try {
|
||||
const rs = app.removeService(srv.host, srv.port, srv.name)
|
||||
if (rs?.error)
|
||||
throw rs.error
|
||||
|
||||
this.loadServices()
|
||||
return true
|
||||
} finally {
|
||||
this.loading = false
|
||||
}
|
||||
},
|
||||
|
||||
connect: function(host, port) {
|
||||
this.loading = true
|
||||
app.stopServicesPoll()
|
||||
window.location.href = `http://${host}:${port}/`
|
||||
},
|
||||
|
||||
splashScreen: function(duration) {
|
||||
const self = this
|
||||
this.splash = true
|
||||
setTimeout(() => {
|
||||
self.splash = false
|
||||
}, duration)
|
||||
},
|
||||
|
||||
resetAddModal: function() {
|
||||
this.addModal = {
|
||||
host: undefined,
|
||||
port: 8008,
|
||||
name: undefined,
|
||||
save: false,
|
||||
}
|
||||
},
|
||||
|
||||
loadServices: function() {
|
||||
this.services = {
|
||||
...this.services,
|
||||
...JSON.parse(app.loadServices())
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
mounted: function() {
|
||||
this.splashScreen(1500)
|
||||
|
||||
this.$watch(() => this.addModal.visible, (newValue) => {
|
||||
if (!newValue)
|
||||
this.resetAddModal()
|
||||
})
|
||||
|
||||
this.$watch(() => this.addModal.save, (newValue) => {
|
||||
if (newValue)
|
||||
this.addModal.name = this.addModal.host
|
||||
})
|
||||
|
||||
this.loadServices()
|
||||
app.startServicesPoll()
|
||||
setInterval(this.refresh, 500)
|
||||
}
|
||||
})
|
After Width: | Height: | Size: 22 KiB |
@ -0,0 +1,54 @@
|
||||
package tech.platypush.platypush
|
||||
|
||||
import org.json.JSONArray
|
||||
import org.json.JSONObject
|
||||
import java.util.*
|
||||
import kotlin.collections.HashMap
|
||||
|
||||
|
||||
class JSON {
|
||||
companion object {
|
||||
private fun toMap(obj: JSONObject): Map<String, Any?> {
|
||||
val ret = HashMap<String, Any?>()
|
||||
val keys = obj.keys()
|
||||
|
||||
while (keys.hasNext()) {
|
||||
val key = keys.next()
|
||||
var value = obj[key]
|
||||
|
||||
if (value is JSONObject)
|
||||
value = toMap(value)
|
||||
else if (value is JSONArray)
|
||||
value = toList(value)
|
||||
|
||||
ret[key] = value
|
||||
}
|
||||
|
||||
return ret
|
||||
}
|
||||
|
||||
private fun toList(arr: JSONArray): List<Any?> {
|
||||
val ret = LinkedList<Any?>()
|
||||
for (i in 0 until arr.length()) {
|
||||
var value = arr[i]
|
||||
|
||||
if (value is JSONObject)
|
||||
value = toMap(value)
|
||||
else if (value is JSONArray)
|
||||
value = toList(value)
|
||||
|
||||
ret.add(value)
|
||||
}
|
||||
|
||||
return ret
|
||||
}
|
||||
|
||||
fun load(str: String): Map<String, Any?> {
|
||||
return toMap(JSONObject(str))
|
||||
}
|
||||
|
||||
fun dump(obj: Map<String, Any?>): String {
|
||||
return JSONObject(obj).toString()
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
package tech.platypush.platypush
|
||||
|
||||
import android.annotation.SuppressLint
|
||||
import android.os.Bundle
|
||||
import android.webkit.WebChromeClient
|
||||
import androidx.appcompat.app.AppCompatActivity
|
||||
import kotlinx.android.synthetic.main.activity_main.*
|
||||
|
||||
|
||||
class MainActivity : AppCompatActivity() {
|
||||
@SuppressLint("SetJavaScriptEnabled")
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
setContentView(R.layout.activity_main)
|
||||
webview.webViewClient = WebView()
|
||||
webview.webChromeClient = WebChromeClient()
|
||||
webview.settings.javaScriptEnabled = true
|
||||
webview.settings.javaScriptCanOpenWindowsAutomatically = true
|
||||
webview.clearCache(true)
|
||||
webview.addJavascriptInterface(WebAppInterface(this), "app")
|
||||
webview.loadUrl("file:///android_asset/web/index.html")
|
||||
}
|
||||
|
||||
override fun onBackPressed() {
|
||||
if (webview != null && webview.canGoBack())
|
||||
webview.goBack()
|
||||
else
|
||||
super.onBackPressed()
|
||||
}
|
||||
}
|
@ -0,0 +1,249 @@
|
||||
package tech.platypush.platypush
|
||||
|
||||
import android.content.ContentValues.TAG
|
||||
import android.content.Context
|
||||
import android.net.nsd.NsdManager
|
||||
import android.net.nsd.NsdServiceInfo
|
||||
import android.util.Log
|
||||
import java.io.File
|
||||
import java.io.FileWriter
|
||||
import java.lang.RuntimeException
|
||||
import java.util.*
|
||||
import java.util.concurrent.locks.ReentrantLock
|
||||
import kotlin.concurrent.withLock
|
||||
|
||||
|
||||
/**
|
||||
* Service data class
|
||||
*/
|
||||
data class Service(val host: String, val port: Int, val name: String?) {
|
||||
fun toMap(): Map<String, Any?> {
|
||||
return mapOf(
|
||||
"host" to host,
|
||||
"port" to port,
|
||||
"name" to name
|
||||
)
|
||||
}
|
||||
|
||||
override fun toString(): String {
|
||||
return JSON.dump(toMap())
|
||||
}
|
||||
|
||||
companion object {
|
||||
fun load(obj: Map<String, Any?>): Service {
|
||||
return Service(
|
||||
host = obj["host"] as String,
|
||||
port = obj["port"] as Int,
|
||||
name = obj["name"] as String?
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* ZeroConf/Bonjour/mDNS event listener
|
||||
*/
|
||||
class Listener(private val scanner: Scanner): NsdManager.DiscoveryListener {
|
||||
val serviceType = "_platypush-http._tcp."
|
||||
|
||||
override fun onDiscoveryStarted(regType: String) {
|
||||
Log.d(TAG, "Service discovery started")
|
||||
}
|
||||
|
||||
override fun onServiceFound(service: NsdServiceInfo) {
|
||||
Log.d(TAG, "Service discovery succeeded: $service")
|
||||
if (service.serviceType != serviceType) {
|
||||
Log.d(TAG, "Unknown service type: ${service.serviceType}")
|
||||
return
|
||||
}
|
||||
|
||||
scanner.resolveService(service)
|
||||
}
|
||||
|
||||
override fun onServiceLost(service: NsdServiceInfo) {
|
||||
Log.w(TAG, "Service lost: $service")
|
||||
}
|
||||
|
||||
override fun onDiscoveryStopped(serviceType: String) {
|
||||
Log.i(TAG, "Discovery stopped: $serviceType")
|
||||
}
|
||||
|
||||
override fun onStartDiscoveryFailed(serviceType: String, errorCode: Int) {
|
||||
Log.e(TAG, "Discovery start failed: Error code: $errorCode")
|
||||
scanner.stopScan()
|
||||
}
|
||||
|
||||
override fun onStopDiscoveryFailed(serviceType: String, errorCode: Int) {
|
||||
Log.e(TAG, "Discovery stop failed: Error code: $errorCode")
|
||||
scanner.stopScan()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* ZeroConf/Bonjour/mDNS service scanner and resolver
|
||||
*/
|
||||
class Scanner(context: Context) {
|
||||
private val nsdManager = context.getSystemService(Context.NSD_SERVICE) as NsdManager
|
||||
private val listener = Listener(this)
|
||||
private val services = HashMap<Pair<String, Int>, Service>()
|
||||
private val resolverLock = ReentrantLock()
|
||||
|
||||
fun startScan() {
|
||||
nsdManager.discoverServices(listener.serviceType, NsdManager.PROTOCOL_DNS_SD, listener)
|
||||
}
|
||||
|
||||
fun stopScan() {
|
||||
nsdManager.stopServiceDiscovery(listener)
|
||||
}
|
||||
|
||||
fun getServices(): Collection<Service> {
|
||||
return services.values
|
||||
}
|
||||
|
||||
fun resolveService(service: NsdServiceInfo) {
|
||||
// Service resolution is a critical section
|
||||
resolverLock.lock()
|
||||
val scanner = this
|
||||
|
||||
nsdManager.resolveService(service, object : NsdManager.ResolveListener {
|
||||
override fun onResolveFailed(serviceInfo: NsdServiceInfo, errorCode: Int) {
|
||||
resolverLock.unlock()
|
||||
val msg = "Resolve of service ${serviceInfo.serviceName} failed"
|
||||
|
||||
// Retry logic
|
||||
when (errorCode) {
|
||||
NsdManager.FAILURE_ALREADY_ACTIVE -> {
|
||||
Thread.sleep(100)
|
||||
scanner.resolveService(serviceInfo)
|
||||
Log.w(TAG, "$msg: Resolver already active")
|
||||
}
|
||||
|
||||
NsdManager.FAILURE_MAX_LIMIT -> {
|
||||
Thread.sleep(5000)
|
||||
scanner.resolveService(serviceInfo)
|
||||
Log.e(TAG, "$msg: Maximum number of resolve requests reached")
|
||||
}
|
||||
|
||||
NsdManager.FAILURE_INTERNAL_ERROR -> {
|
||||
Log.e(TAG, "$msg: Internal error")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
override fun onServiceResolved(serviceInfo: NsdServiceInfo) {
|
||||
services[Pair(serviceInfo.host.hostAddress, serviceInfo.port)] = Service(
|
||||
serviceInfo.host.hostAddress, serviceInfo.port, serviceInfo.serviceName)
|
||||
resolverLock.unlock()
|
||||
Log.i(TAG, "Resolve succeeded: $serviceInfo")
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Services manager class
|
||||
*/
|
||||
class Manager(context: Context) {
|
||||
private val servicesFile = File(context.filesDir, "services.json")
|
||||
private val servicesFileLock = ReentrantLock()
|
||||
private val emptyServices = mapOf<String, List<Service>>(
|
||||
"saved" to emptyList(),
|
||||
"lastConnected" to emptyList()
|
||||
)
|
||||
|
||||
private fun initServicesFile(reset: Boolean = false) {
|
||||
if (reset || !servicesFile.exists())
|
||||
saveServices(emptyServices)
|
||||
}
|
||||
|
||||
fun loadServices(): Map<String, List<Service>> {
|
||||
initServicesFile()
|
||||
var services: Map<String, List<Service>> = emptyServices
|
||||
|
||||
try {
|
||||
services = deserializeServices(servicesFile.readText())
|
||||
} catch (e: Exception) {
|
||||
Log.e(TAG, "Error while parsing $servicesFile: resetting it", e)
|
||||
initServicesFile(reset = true)
|
||||
}
|
||||
|
||||
return services
|
||||
}
|
||||
|
||||
private fun saveServices(services: Map<String, List<Service>>) {
|
||||
servicesFileLock.withLock {
|
||||
FileWriter(servicesFile).use {
|
||||
it.write(serializeServices(services))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun saveService(host: String, port: Int, name: String, overwrite: Boolean = false) {
|
||||
val service = Service(host, port, name)
|
||||
val services = this.loadServices().toMutableMap()
|
||||
val savedServices = services["saved"]?.toMutableList() ?: ArrayList()
|
||||
val dupIndex = getSavedServiceIndex(service, savedServices)
|
||||
|
||||
if (dupIndex != null && !overwrite)
|
||||
throw DuplicateServiceException(service)
|
||||
|
||||
savedServices.add(service)
|
||||
services["saved"] = savedServices
|
||||
saveServices(services)
|
||||
}
|
||||
|
||||
fun removeService(host: String? = null, port: Int? = null, name: String? = null) {
|
||||
val service = Service(host=host ?: "", port=port ?: 0, name=name)
|
||||
val services = this.loadServices().toMutableMap()
|
||||
val savedServices = ArrayList<Service>(services["saved"] ?: emptyList<Service>())
|
||||
val srvIndex = getSavedServiceIndex(service, savedServices)
|
||||
?: throw NoSuchServiceException(host, port, name)
|
||||
|
||||
savedServices.removeAt(srvIndex)
|
||||
services["saved"] = savedServices
|
||||
saveServices(services)
|
||||
}
|
||||
|
||||
private fun getSavedServiceIndex(service: Service, services: List<Service>): Int? {
|
||||
val matchingSrvIndexes = services.indices.filter {
|
||||
(services[it].host == service.host && services[it].port == service.port) ||
|
||||
services[it].name == service.name
|
||||
}
|
||||
|
||||
return if (matchingSrvIndexes.isNotEmpty()) matchingSrvIndexes[0] else null
|
||||
}
|
||||
|
||||
fun serializeServices(services: Map<String, List<Service>>): String {
|
||||
val parsedServices = HashMap<String, List<Map<String, Any?>>>()
|
||||
|
||||
for (srvType in listOf("saved", "lastConnected")) {
|
||||
val outputList = LinkedList<Map<String, Any?>>()
|
||||
for (srv in services[srvType] ?: emptyList())
|
||||
outputList.add(srv.toMap())
|
||||
parsedServices[srvType] = outputList.toList()
|
||||
}
|
||||
|
||||
return JSON.dump(parsedServices)
|
||||
}
|
||||
|
||||
private fun deserializeServices(servicesJson: String): Map<String, List<Service>> {
|
||||
@Suppress("UNCHECKED_CAST")
|
||||
val services = JSON.load(servicesJson) as Map<String, List<Map<String, Any?>>>
|
||||
val parsedServices = HashMap<String, List<Service>>()
|
||||
|
||||
for (srvType in listOf("saved", "lastConnected")) {
|
||||
val outputList = LinkedList<Service>()
|
||||
for (srv in services[srvType] ?: emptyList())
|
||||
outputList.add(Service.load(srv))
|
||||
parsedServices[srvType] = outputList
|
||||
}
|
||||
|
||||
return parsedServices
|
||||
}
|
||||
}
|
||||
|
||||
class DuplicateServiceException(service: Service) : RuntimeException("Duplicate service: $service")
|
||||
class NoSuchServiceException(host: String? = null, port: Int? = null, name: String? = null):
|
||||
RuntimeException("No such host: host=$host, port=$port, name=$name")
|
@ -0,0 +1,67 @@
|
||||
package tech.platypush.platypush
|
||||
|
||||
import android.content.ContentValues.TAG
|
||||
import android.content.Context
|
||||
import android.util.Log
|
||||
import android.webkit.JavascriptInterface
|
||||
import org.json.JSONArray
|
||||
import java.util.*
|
||||
|
||||
|
||||
class WebAppInterface(context: Context) {
|
||||
private val serviceScanner = Scanner(context)
|
||||
private val serviceManager = Manager(context)
|
||||
|
||||
@Suppress("unused")
|
||||
@JavascriptInterface
|
||||
fun startServicesPoll() {
|
||||
serviceScanner.startScan()
|
||||
}
|
||||
|
||||
@Suppress("unused")
|
||||
@JavascriptInterface
|
||||
fun stopServicesPoll() {
|
||||
serviceScanner.stopScan()
|
||||
}
|
||||
|
||||
@Suppress("unused")
|
||||
@JavascriptInterface
|
||||
fun pollServices(): String {
|
||||
val services = LinkedList<Map<String, Any?>>()
|
||||
for (srv in serviceScanner.getServices())
|
||||
services.add(srv.toMap())
|
||||
return JSONArray(services).toString()
|
||||
}
|
||||
|
||||
@Suppress("unused")
|
||||
@JavascriptInterface
|
||||
fun loadServices(): String {
|
||||
return serviceManager.serializeServices(serviceManager.loadServices())
|
||||
}
|
||||
|
||||
@Suppress("unused")
|
||||
@JavascriptInterface
|
||||
fun saveService(host: String, port: Int, name: String, overwrite: Boolean = false): String? {
|
||||
try {
|
||||
serviceManager.saveService(host, port, name, overwrite=overwrite)
|
||||
} catch (e: Exception) {
|
||||
Log.e(TAG, e.toString())
|
||||
return JSON.dump(mapOf("error" to e.toString()))
|
||||
}
|
||||
|
||||
return null
|
||||
}
|
||||
|
||||
@Suppress("unused")
|
||||
@JavascriptInterface
|
||||
fun removeService(host: String, port: Int, name: String): String? {
|
||||
try {
|
||||
serviceManager.removeService(host, port, name)
|
||||
} catch (e: Exception) {
|
||||
Log.e(TAG, e.toString())
|
||||
return JSON.dump(mapOf("error" to e.toString()))
|
||||
}
|
||||
|
||||
return null
|
||||
}
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
package tech.platypush.platypush
|
||||
|
||||
import android.webkit.WebResourceRequest
|
||||
import android.webkit.WebView
|
||||
import android.webkit.WebViewClient
|
||||
|
||||
class WebView : WebViewClient() {
|
||||
private fun shouldOverrideUrlLoadingInner(view: WebView, url: String): Boolean {
|
||||
view.loadUrl(url)
|
||||
return true
|
||||
}
|
||||
|
||||
override fun shouldOverrideUrlLoading(view: WebView?, request: WebResourceRequest?): Boolean {
|
||||
if (view == null || request == null)
|
||||
return super.shouldOverrideUrlLoading(view, request)
|
||||
|
||||
return this.shouldOverrideUrlLoadingInner(view, request.url.toString())
|
||||
}
|
||||
|
||||
override fun shouldOverrideUrlLoading(view: WebView?, url: String?): Boolean {
|
||||
@Suppress("DEPRECATION")
|
||||
if (view == null || url == null)
|
||||
return super.shouldOverrideUrlLoading(view, url)
|
||||
|
||||
return this.shouldOverrideUrlLoadingInner(view, url)
|
||||
}
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="108dp"
|
||||
android:height="108dp"
|
||||
android:viewportWidth="108"
|
||||
android:viewportHeight="108">
|
||||
<group android:scaleX="0.5016"
|
||||
android:scaleY="0.5016"
|
||||
android:translateX="28.92"
|
||||
android:translateY="28.92">
|
||||
<path
|
||||
android:pathData="M0,50l0,-50 50,0 50,0 0,50 0,50 -50,0 -50,0 0,-50zM73.2,86.2c0.9,-1 0.6,-1.1 -1.6,-0.2 -4.8,1.8 -10.2,1.2 -13.3,-1.4 -2.6,-2.2 -2.8,-3 -2.8,-9.6 0,-9.2 1.8,-11 10.5,-11 7.8,0 10,2.5 10,11.4 0,3.4 -0.5,6.7 -1.2,7.4 -0.9,0.9 -0.4,0.9 2.3,0.2 1.8,-0.6 3.5,-1 3.7,-1 0.1,0 -0.5,-1.1 -1.4,-2.5 -1.2,-1.9 -1.5,-4.1 -1.2,-9l0.4,-6.5 -2.8,0c-3.4,0 -7.8,-2.6 -7.8,-4.6 0,-1.9 -1,-1.8 -2.5,0.2 -0.7,1 -3.2,1.9 -6.2,2.1l-5.1,0.5 -0.4,6.5c-0.3,4.8 -0.9,6.8 -2.1,7.5 -2.1,1.1 -2.2,2.8 -0.3,2.8 2.1,0 5.6,5.4 5.6,8.7 0,2.8 0.1,2.8 6.7,2.9 4.7,0.1 6.9,0.6 7.2,1.5 0.3,0.8 0.7,0.1 0.9,-1.6 0.2,-1.6 0.9,-3.6 1.4,-4.3zM34.2,61.3c0.6,-0.7 2.8,-1.3 4.9,-1.3 2.1,0 4.1,0.6 4.6,1.3 0.5,0.7 1,-0.7 1.3,-3.8l0.5,-5 4.7,0 4.7,0 -2,-2.1c-3.8,-4.1 -2,-10.8 3.3,-12l3.3,-0.7 -3.5,-1.5c-1.9,-0.8 -3.8,-1.9 -4.2,-2.6 -1.3,-1.9 -0.9,-7 0.7,-9.3 1.5,-2.1 1.4,-2.2 -2.7,-2.5l-4.3,-0.3 -0.6,-5c-0.3,-2.7 -0.7,-4.4 -0.7,-3.7 -0.2,0.9 -1.7,1.2 -5.4,1 -5,-0.3 -5.3,-0.5 -5.9,-3.3 -0.6,-3.1 -1,-2.7 -2.5,2.3 -0.4,1.5 -8.5,1.7 -10,0.2 -0.7,-0.7 -0.9,0.2 -0.6,2.5 0.6,4.7 -1.1,6.5 -6.1,6.5 -3.8,0 -3.9,0.1 -2.4,1.8 2,2.2 2.3,9.5 0.5,10.9 -0.7,0.6 -2.6,1.4 -4.3,1.8l-3,0.7 4,1.2c3.8,1.1 4,1.4 4.3,5.3 0.2,2.3 -0.2,5.1 -0.8,6.3 -1,1.8 -0.8,2 2.3,2 4.1,0 5.7,1.5 5.7,5.5 0,3 0.1,3 5.2,3 5,0 5.2,0.1 6.2,3.5 0.9,3.2 1,3.3 1.4,1 0.2,-1.4 0.9,-3.1 1.4,-3.7zM82.4,33.2l11.4,-7.9 -11.3,-7.6c-6.3,-4.2 -11.6,-7.7 -11.9,-7.7 -0.3,0 -0.6,7 -0.6,15.5 0,8.5 0.2,15.5 0.5,15.5 0.3,0 5.7,-3.5 11.9,-7.8z"
|
||||
android:fillColor="#ffffff"/>
|
||||
<path
|
||||
android:pathData="M25.1,51.7c-6.2,-3.2 -8.9,-13.7 -5.6,-22.2 2.1,-5.7 5.4,-7.5 13.3,-7.5 10,0 13.8,5.1 13,17.7 -0.4,6 -0.7,6.8 -4.1,9.9 -3.2,3 -4.3,3.4 -8.9,3.4 -2.9,0 -6.4,-0.6 -7.7,-1.3z"
|
||||
android:fillColor="#ffffff"/>
|
||||
<path
|
||||
android:pathData="M69.3,96.7c-2.9,-3.7 -7.2,-4.1 -10.5,-1 -2.4,2.3 -3,2.4 -4.4,1.3 -1.2,-1.1 -1.4,-2.4 -1,-5.3 0.8,-4.8 -2,-9.2 -6.4,-10.2 -4.1,-0.9 -4.1,-4.7 0,-7.2 3.4,-2 4.9,-7.1 3.1,-10.6 -1,-2 -1,-1.9 -0.5,1 0.4,2.5 0.1,3.4 -1.6,4.3 -1.9,1 -2.6,0.7 -5.5,-2.7 -3.9,-4.5 -5.3,-3.9 -7,3 -0.8,3.5 -1.4,4.2 -3.4,4.2 -2.2,0 -2.6,-0.7 -3.5,-4.9 -0.6,-2.7 -1.7,-5.1 -2.5,-5.4 -0.8,-0.3 -2.8,1.3 -4.6,3.4 -3.2,3.8 -3.3,3.8 -5.3,2.1 -1.8,-1.7 -1.9,-2.1 -0.6,-6.4 1.5,-5.1 0.5,-8 -2.5,-6.7 -5.8,2.3 -7.2,2.3 -8.3,-0.1 -0.9,-2.1 -0.7,-2.9 2.1,-6.1 4,-4.5 3.7,-6.5 -1.1,-7.9 -2.1,-0.5 -4.2,-1.5 -4.9,-2.2 -2,-2 -0.1,-5.1 3.8,-6 5.6,-1.3 6.3,-3.4 2.5,-7.7 -3.5,-4.1 -3.9,-5.8 -1.7,-7.6 1.1,-0.9 2.2,-0.9 5,0 5.4,1.8 6.7,0.3 5,-6.1 -1.2,-4.6 -1.2,-5 0.7,-6 1.7,-0.9 2.5,-0.6 5.3,2.1 1.8,1.8 3.9,3 4.6,2.8 0.8,-0.3 1.8,-2.4 2.4,-4.9 0.9,-3.7 1.5,-4.5 3.7,-4.7 2.3,-0.3 2.6,0.1 3.4,4.5 1.1,6 3.2,6.6 7.3,2.1 2.5,-2.8 3.3,-3.1 4.8,-2.2 1.3,0.8 1.7,2 1.4,4 -0.2,1.6 -0.5,4.3 -0.5,5.9 -0.1,3.3 0.8,3.5 7.1,2.1 2.9,-0.7 3.3,-0.5 3.9,1.8 0.5,2 -0.1,3.4 -2.5,6.1 -1.7,1.9 -2.8,4.1 -2.5,4.9 0.3,0.8 2.4,2.1 4.7,2.9 3.3,1.1 4.3,1.9 4.5,3.9 0.3,2.2 -0.2,2.8 -3.5,3.8 -6.1,1.9 -6.8,3.6 -3.3,7.9 5.1,6.1 3.5,9.9 -3.2,7.5 -4.8,-1.6 -5.8,-1.2 -5.7,2.4 0,2.6 0.1,2.6 0.9,0.5 1,-2.4 3.9,-3 5.7,-1.2 0.7,0.7 2.4,0.8 4.2,0.4 2.3,-0.5 3.7,-1.7 5.2,-4.6 2.5,-4.9 4.9,-4.8 6.2,0.1 1.2,5 4.3,7.2 8.9,6.4 4.7,-0.7 5.8,1.3 3.4,6.2 -2.3,4.9 -2,7.9 1.2,11.6 3.7,4.3 3.1,6.5 -1.8,7.3 -4.6,0.8 -6.7,3.5 -7.2,9.1 -0.4,4.7 -2.7,5.6 -5.5,2.1zM71.2,80.7c3.9,-4.9 0.6,-13.7 -5.2,-13.7 -4.6,0 -7.5,3.1 -7.5,8 0,7.9 8.1,11.6 12.7,5.7zM38.4,46.9c5.9,-5.1 5.8,-15.2 -0.1,-19.8 -8.1,-6.5 -19.3,2.8 -16.4,13.6 2.4,8.8 10.2,11.8 16.5,6.2z"
|
||||
android:fillColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M67,25.6c0,-11.8 0.4,-21.7 0.8,-22 0.4,-0.2 3.5,1.4 6.8,3.7 5.4,3.7 6.1,4.6 6.2,7.7 0.1,1.9 0.4,6.6 0.8,10.4 0.5,5.5 1,6.9 2.5,7.3 1.1,0.3 1.9,1.1 1.9,1.8 0,1.4 -15.7,12.5 -17.7,12.5 -1,0 -1.3,-5 -1.3,-21.4z"
|
||||
android:fillColor="#7bc448"/>
|
||||
<path
|
||||
android:pathData="M81.3,36c-1.3,-0.5 -2.3,-1.5 -2.3,-2.3 0,-0.7 -0.5,-6.2 -1.1,-12.1 -0.6,-5.9 -0.8,-11 -0.5,-11.3 0.8,-0.8 22.6,13.8 22.6,15.1 0,0.9 -13.8,10.6 -15.9,11.3 -0.3,0.1 -1.6,-0.2 -2.8,-0.7z"
|
||||
android:fillColor="#60b64f"/>
|
||||
</group>
|
||||
</vector>
|
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".MainActivity">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/relativeLayout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
tools:context=".MainActivity">
|
||||
<WebView
|
||||
android:id="@+id/webview"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" />
|
||||
</LinearLayout>
|
||||
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<background android:drawable="@color/ic_launcher_background"/>
|
||||
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
|
||||
</adaptive-icon>
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<background android:drawable="@color/ic_launcher_background"/>
|
||||
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
|
||||
</adaptive-icon>
|
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 29 KiB |
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/nav_graph">
|
||||
</navigation>
|
@ -0,0 +1,16 @@
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Base application theme. -->
|
||||
<style name="Theme.Platypush" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
|
||||
<!-- Primary brand color. -->
|
||||
<item name="colorPrimary">@color/purple_200</item>
|
||||
<item name="colorPrimaryVariant">@color/purple_700</item>
|
||||
<item name="colorOnPrimary">@color/black</item>
|
||||
<!-- Secondary brand color. -->
|
||||
<item name="colorSecondary">@color/teal_200</item>
|
||||
<item name="colorSecondaryVariant">@color/teal_200</item>
|
||||
<item name="colorOnSecondary">@color/black</item>
|
||||
<!-- Status bar color. -->
|
||||
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
|
||||
<!-- Customize your theme here. -->
|
||||
</style>
|
||||
</resources>
|
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="purple_200">#FFBB86FC</color>
|
||||
<color name="purple_500">#FF6200EE</color>
|
||||
<color name="purple_700">#FF3700B3</color>
|
||||
<color name="teal_200">#FF03DAC5</color>
|
||||
<color name="teal_700">#FF018786</color>
|
||||
<color name="black">#FF000000</color>
|
||||
<color name="white">#FFFFFFFF</color>
|
||||
</resources>
|
@ -0,0 +1,3 @@
|
||||
<resources>
|
||||
<dimen name="fab_margin">16dp</dimen>
|
||||
</resources>
|
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="ic_launcher_background">#FFFFFF</color>
|
||||
</resources>
|
@ -0,0 +1,6 @@
|
||||
<resources>
|
||||
<string name="app_name">Platypush</string>
|
||||
<string name="action_settings">Settings</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="previous">Previous</string>
|
||||
</resources>
|
@ -0,0 +1,25 @@
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Base application theme. -->
|
||||
<style name="Theme.Platypush" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
|
||||
<!-- Primary brand color. -->
|
||||
<item name="colorPrimary">@color/purple_500</item>
|
||||
<item name="colorPrimaryVariant">@color/purple_700</item>
|
||||
<item name="colorOnPrimary">@color/white</item>
|
||||
<!-- Secondary brand color. -->
|
||||
<item name="colorSecondary">@color/teal_200</item>
|
||||
<item name="colorSecondaryVariant">@color/teal_700</item>
|
||||
<item name="colorOnSecondary">@color/black</item>
|
||||
<!-- Status bar color. -->
|
||||
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
|
||||
<!-- Customize your theme here. -->
|
||||
</style>
|
||||
|
||||
<style name="Theme.Platypush.NoActionBar">
|
||||
<item name="windowActionBar">false</item>
|
||||
<item name="windowNoTitle">true</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme.Platypush.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
|
||||
|
||||
<style name="Theme.Platypush.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
|
||||
</resources>
|
@ -1,121 +0,0 @@
|
||||
html, body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#app {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #e0eae8;
|
||||
font-size: 20px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
color: #2c3e50;
|
||||
}
|
||||
|
||||
.services {
|
||||
width: 50%;
|
||||
height: max-content;
|
||||
min-width: 15em;
|
||||
max-width: 22.5em;
|
||||
background: white;
|
||||
margin-top: 3em;
|
||||
box-shadow: 1px 1px 2px 2px #bbb;
|
||||
border-radius: 1.5em;
|
||||
}
|
||||
|
||||
.no-items {
|
||||
text-align: center;
|
||||
padding: 2em 1em;
|
||||
}
|
||||
|
||||
.service {
|
||||
padding: 1em .5em;
|
||||
border-bottom: 1px solid #ccc;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.service:first-child {
|
||||
border-radius: 1.5em 1.5em 0 0;
|
||||
}
|
||||
|
||||
.service:last-child {
|
||||
border-radius: 0 0 1.5em 1.5em;
|
||||
}
|
||||
|
||||
.service:hover {
|
||||
background: #bef6da;
|
||||
}
|
||||
|
||||
.name {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.add-btn {
|
||||
width: 2.5em;
|
||||
height: 2.5em;
|
||||
background: url('../icon/plus.svg');
|
||||
position: fixed;
|
||||
bottom: 1em;
|
||||
right: 1em;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.add-btn:hover {
|
||||
opacity: .75;
|
||||
}
|
||||
|
||||
.add-modal-container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
z-index: 2;
|
||||
}
|
||||