Basic setup #1

Merged
jgeorgi merged 1 commits from msv-landing-page into main 2023-11-10 02:42:46 +00:00
5 changed files with 11 additions and 162 deletions

View File

@@ -1,8 +1,8 @@
<?xml version='1.0' encoding='utf-8'?> <?xml version='1.0' encoding='utf-8'?>
<widget id="edu.midwestern.alvinn" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <widget id="edu.midwestern.alvinn" version="0.1.0-a" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>ALVINN</name> <name>ALVINN</name>
<description>Sample Apache Cordova App</description> <description>Anatomy Lab Visual Identification Neural Network.</description>
<author email="dev@cordova.apache.org" href="https://cordova.apache.org"> <author email="jgeorg@midwestern.edu" href="https://midwestern.edu">
Apache Cordova Team Apache Cordova Team
</author> </author>
<content src="index.html" /> <content src="index.html" />

View File

@@ -1,8 +1,8 @@
{ {
"name": "edu.midwestern.alvinn", "name": "edu.midwestern.alvinn",
"displayName": "ALVINN", "displayName": "ALVINN",
"version": "1.0.0", "version": "0.1.0-a",
"description": "A sample Apache Cordova application that responds to the deviceready event.", "description": "Anatomy Lab Visual Identification Neural Network.",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
@@ -10,7 +10,7 @@
"keywords": [ "keywords": [
"ecosystem:cordova" "ecosystem:cordova"
], ],
"author": "Apache Cordova Team", "author": "Justin Georgi",
"license": "Apache-2.0", "license": "Apache-2.0",
"devDependencies": { "devDependencies": {
"cordova-android": "^12.0.1", "cordova-android": "^12.0.1",

View File

@@ -5,28 +5,15 @@
<f7-panel left cover dark> <f7-panel left cover dark>
<f7-view> <f7-view>
<f7-page> <f7-page>
<f7-navbar title="Left Panel"></f7-navbar> <f7-navbar title="ALVINN"></f7-navbar>
<f7-block>Left panel content goes here</f7-block> <f7-block>Menu Settings Here</f7-block>
</f7-page> </f7-page>
</f7-view> </f7-view>
</f7-panel> </f7-panel>
<!-- Right panel with reveal effect-->
<f7-panel right reveal dark>
<f7-view>
<f7-page>
<f7-navbar title="Right Panel"></f7-navbar>
<f7-block>Right panel content goes here</f7-block>
</f7-page>
</f7-view>
</f7-panel>
<!-- Your main view, should have "view-main" class --> <!-- Your main view, should have "view-main" class -->
<f7-view main class="safe-areas" url="/"></f7-view> <f7-view main class="safe-areas" url="/"></f7-view>
<!-- Popup --> <!-- Popup -->
<f7-popup id="my-popup"> <f7-popup id="my-popup">
<f7-view> <f7-view>
@@ -43,33 +30,6 @@
</f7-view> </f7-view>
</f7-popup> </f7-popup>
<f7-login-screen id="my-login-screen">
<f7-view>
<f7-page login-screen>
<f7-login-screen-title>Login</f7-login-screen-title>
<f7-list form>
<f7-list-input
type="text"
name="username"
placeholder="Your username"
v-model:value="username"
></f7-list-input>
<f7-list-input
type="password"
name="password"
placeholder="Your password"
v-model:value="password"
></f7-list-input>
</f7-list>
<f7-list>
<f7-list-button title="Sign In" @click="alertLoginData"></f7-list-button>
<f7-block-footer>
Some text about login information.<br>Click "Sign In" to close Login Screen
</f7-block-footer>
</f7-list>
</f7-page>
</f7-view>
</f7-login-screen>
</f7-app> </f7-app>
</template> </template>
<script> <script>
@@ -92,8 +52,6 @@
primary: '#002f65', primary: '#002f65',
}, },
// App store // App store
store: store, store: store,
// App routes // App routes
@@ -115,15 +73,6 @@
androidOverlaysWebView: false, androidOverlaysWebView: false,
}, },
}; };
// Login screen data
const username = ref('');
const password = ref('');
const alertLoginData = () => {
f7.dialog.alert('Username: ' + username.value + '<br>Password: ' + password.value, () => {
f7.loginScreen.close();
});
}
onMounted(() => { onMounted(() => {
f7ready(() => { f7ready(() => {
// Init cordova APIs (see cordova-app.js) // Init cordova APIs (see cordova-app.js)
@@ -136,10 +85,7 @@
}); });
return { return {
f7params, f7params
username,
password,
alertLoginData
} }
} }
} }

View File

@@ -1,86 +0,0 @@
<template>
<f7-page name="form">
<f7-navbar title="Form" back-link="Back"></f7-navbar>
<f7-block-title>Form Example</f7-block-title>
<f7-list strong-ios dividers-ios outline-ios>
<f7-list-input label="Name" type="text" placeholder="Your name"></f7-list-input>
<f7-list-input label="E-mail" type="email" placeholder="E-mail"></f7-list-input>
<f7-list-input label="URL" type="url" placeholder="URL"></f7-list-input>
<f7-list-input label="Password" type="password" placeholder="Password"></f7-list-input>
<f7-list-input label="Phone" type="tel" placeholder="Phone"></f7-list-input>
<f7-list-input label="Gender" type="select">
<option>Male</option>
<option>Female</option>
</f7-list-input>
<f7-list-input
label="Birth date"
type="date"
placeholder="Birth day"
defaultValue="2014-04-30"
></f7-list-input>
<f7-list-item title="Toggle">
<template #after>
<f7-toggle />
</template>
</f7-list-item>
<f7-list-input label="Range" :input="false">
<template #input>
<f7-range :value="50" :min="0" :max="100" :step="1" />
</template>
</f7-list-input>
<f7-list-input type="textarea" label="Textarea" placeholder="Bio"></f7-list-input>
<f7-list-input type="textarea" label="Resizable" placeholder="Bio" resizable></f7-list-input>
</f7-list>
<f7-block-title>Buttons</f7-block-title>
<f7-block strong-ios outline-ios class="grid grid-cols-2 grid-gap">
<f7-button>Button</f7-button>
<f7-button fill>Fill</f7-button>
<f7-button raised>Raised</f7-button>
<f7-button raised fill>Raised Fill</f7-button>
<f7-button round>Round</f7-button>
<f7-button round fill>Round Fill</f7-button>
<f7-button outline>Outline</f7-button>
<f7-button round outline>Outline Round</f7-button>
<f7-button small outline>Small</f7-button>
<f7-button small round outline>Small Round</f7-button>
<f7-button small fill>Small</f7-button>
<f7-button small round fill>Small Round</f7-button>
<f7-button large raised>Large</f7-button>
<f7-button large fill raised>Large Fill</f7-button>
<f7-button large fill raised color="red">Large Red</f7-button>
<f7-button large fill raised color="green">Large Green</f7-button>
</f7-block>
<f7-block-title>Checkbox group</f7-block-title>
<f7-list strong-ios outline-ios dividers-ios>
<f7-list-item checkbox name="my-checkbox" value="Books" title="Books"></f7-list-item>
<f7-list-item checkbox name="my-checkbox" value="Movies" title="Movies"></f7-list-item>
<f7-list-item checkbox name="my-checkbox" value="Food" title="Food"></f7-list-item>
</f7-list>
<f7-block-title>Radio buttons group</f7-block-title>
<f7-list strong-ios outline-ios dividers-ios>
<f7-list-item radio name="radio" value="Books" title="Books"></f7-list-item>
<f7-list-item radio name="radio" value="Movies" title="Movies"></f7-list-item>
<f7-list-item radio name="radio" value="Food" title="Food"></f7-list-item>
</f7-list>
</f7-page>
</template>

View File

@@ -6,10 +6,7 @@
<f7-link icon-ios="f7:menu" icon-md="material:menu" panel-open="left"></f7-link> <f7-link icon-ios="f7:menu" icon-md="material:menu" panel-open="left"></f7-link>
</f7-nav-left> </f7-nav-left>
<f7-nav-title sliding>ALVINN</f7-nav-title> <f7-nav-title sliding>ALVINN</f7-nav-title>
<f7-nav-right> <f7-nav-title-large>A.L.V.I.N.N.</f7-nav-title-large>
<f7-link icon-ios="f7:menu" icon-md="material:menu" panel-open="right"></f7-link>
</f7-nav-right>
<f7-nav-title-large>ALVINN</f7-nav-title-large>
</f7-navbar> </f7-navbar>
<!-- Toolbar--> <!-- Toolbar-->
<f7-toolbar bottom> <f7-toolbar bottom>
@@ -18,24 +15,16 @@
</f7-toolbar> </f7-toolbar>
<!-- Page content--> <!-- Page content-->
<f7-block> <f7-block>
<p>Here is your blank Framework7 app. Let's see what we have here.</p> <p>Anatomy Lab Visual Identification Neural Network</p>
</f7-block> </f7-block>
<f7-block-title>Navigation</f7-block-title> <f7-block-title>Navigation</f7-block-title>
<f7-list strong inset dividersIos> <f7-list strong inset dividersIos>
<f7-list-item link="/about/" title="About"></f7-list-item> <f7-list-item link="/about/" title="About"></f7-list-item>
<f7-list-item link="/form/" title="Form"></f7-list-item>
</f7-list> </f7-list>
<f7-block-title>Modals</f7-block-title> <f7-block-title>Modals</f7-block-title>
<f7-block class="grid grid-cols-2 grid-gap"> <f7-block class="grid grid-cols-2 grid-gap">
<f7-button fill popup-open="#my-popup">Popup</f7-button> <f7-button fill popup-open="#my-popup">Popup</f7-button>
<f7-button fill login-screen-open="#my-login-screen">Login Screen</f7-button>
</f7-block>
<f7-block-title>Panels</f7-block-title>
<f7-block class="grid grid-cols-2 grid-gap">
<f7-button fill panel-open="left">Left Panel</f7-button>
<f7-button fill panel-open="right">Right Panel</f7-button>
</f7-block> </f7-block>
<f7-list strong inset dividersIos> <f7-list strong inset dividersIos>