Initial commit - Asansör Takip Projesi

This commit is contained in:
2026-04-10 22:43:43 +03:00
parent cab84b4969
commit bd0e890883
92 changed files with 4709 additions and 120 deletions
+101
View File
@@ -0,0 +1,101 @@
# Using Android gitignore template: https://github.com/github/gitignore/blob/HEAD/Android.gitignore
# Built application files
*.apk
*.aar
*.ap_
*.aab
# Files for the ART/Dalvik VM
*.dex
# Java class files
*.class
# Generated files
bin/
gen/
out/
# Uncomment the following line in case you need and you don't have the release build type files in your app
# release/
# Gradle files
.gradle/
build/
# Local configuration file (sdk path, etc)
local.properties
# Proguard folder generated by Eclipse
proguard/
# Log Files
*.log
# Android Studio Navigation editor temp files
.navigation/
# Android Studio captures folder
captures/
# IntelliJ
*.iml
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/assetWizardSettings.xml
.idea/dictionaries
.idea/libraries
# Android Studio 3 in .gitignore file.
.idea/caches
.idea/modules.xml
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
.idea/navEditor.xml
# Keystore files
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore
# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
.cxx/
# Google Services (e.g. APIs or Firebase)
# google-services.json
# Freeline
freeline.py
freeline/
freeline_project_description.json
# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md
# Version control
vcs.xml
# lint
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
# lint/reports/
# Android Profiling
*.hprof
# Cordova plugins for Capacitor
capacitor-cordova-android-plugins
# Copied web assets
app/src/main/assets/public
# Generated Config files
app/src/main/assets/capacitor.config.json
app/src/main/assets/capacitor.plugins.json
app/src/main/res/xml/config.xml
+2
View File
@@ -0,0 +1,2 @@
/build/*
!/build/.npmkeep
+54
View File
@@ -0,0 +1,54 @@
apply plugin: 'com.android.application'
android {
namespace = "com.asansor.app"
compileSdk = rootProject.ext.compileSdkVersion
defaultConfig {
applicationId "com.asansor.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
// Default: https://android.googlesource.com/platform/frameworks/base/+/282e181b58cf72b6ca770dc7ca5f91f135444502/tools/aapt/AaptAssets.cpp#61
ignoreAssetsPattern = '!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~'
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
flatDir{
dirs '../capacitor-cordova-android-plugins/src/main/libs', 'libs'
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
implementation "androidx.coordinatorlayout:coordinatorlayout:$androidxCoordinatorLayoutVersion"
implementation "androidx.core:core-splashscreen:$coreSplashScreenVersion"
implementation project(':capacitor-android')
testImplementation "junit:junit:$junitVersion"
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
implementation project(':capacitor-cordova-android-plugins')
}
apply from: 'capacitor.build.gradle'
try {
def servicesJSON = file('google-services.json')
if (servicesJSON.text) {
apply plugin: 'com.google.gms.google-services'
}
} catch(Exception e) {
logger.info("google-services.json not found, google-services plugin not applied. Push Notifications won't work")
}
+21
View File
@@ -0,0 +1,21 @@
// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN
android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_21
targetCompatibility JavaVersion.VERSION_21
}
}
apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
dependencies {
implementation project(':capacitor-community-sqlite')
implementation project(':capacitor-network')
implementation project(':capacitor-push-notifications')
}
if (hasProperty('postBuildExtras')) {
postBuildExtras()
}
+21
View File
@@ -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 @@
package com.getcapacitor.myapp;
import static org.junit.Assert.*;
import android.content.Context;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import androidx.test.platform.app.InstrumentationRegistry;
import org.junit.Test;
import org.junit.runner.RunWith;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("com.getcapacitor.app", appContext.getPackageName());
}
}
+41
View File
@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<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/AppTheme">
<activity
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode|navigation|density"
android:name=".MainActivity"
android:label="@string/title_activity_main"
android:theme="@style/AppTheme.NoActionBarLaunch"
android:launchMode="singleTask"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths"></meta-data>
</provider>
</application>
<!-- Permissions -->
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
@@ -0,0 +1,5 @@
package com.asansor.app;
import com.getcapacitor.BridgeActivity;
public class MainActivity extends BridgeActivity {}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

@@ -0,0 +1,34 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportHeight="108"
android:viewportWidth="108">
<path
android:fillType="evenOdd"
android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
android:strokeColor="#00000000"
android:strokeWidth="1">
<aapt:attr name="android:fillColor">
<gradient
android:endX="78.5885"
android:endY="90.9159"
android:startX="48.7653"
android:startY="61.0927"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
android:strokeColor="#00000000"
android:strokeWidth="1" />
</vector>
@@ -0,0 +1,170 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportHeight="108"
android:viewportWidth="108">
<path
android:fillColor="#26A69A"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
</vector>
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<WebView
android:layout_width="match_parent"
android:layout_height="match_parent" />
</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="@mipmap/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="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#FFFFFF</color>
</resources>
@@ -0,0 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="app_name">Asansor</string>
<string name="title_activity_main">Asansor</string>
<string name="package_name">com.asansor.app</string>
<string name="custom_url_scheme">com.asansor.app</string>
</resources>
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.NoActionBar" parent="Theme.AppCompat.DayNight.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:background">@null</item>
</style>
<style name="AppTheme.NoActionBarLaunch" parent="Theme.SplashScreen">
<item name="android:background">@drawable/splash</item>
</style>
</resources>
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="my_images" path="." />
<cache-path name="my_cache_images" path="." />
</paths>
@@ -0,0 +1,18 @@
package com.getcapacitor.myapp;
import static org.junit.Assert.*;
import org.junit.Test;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
}
+29
View File
@@ -0,0 +1,29 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.13.0'
classpath 'com.google.gms:google-services:4.4.4'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
apply from: "variables.gradle"
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
+12
View File
@@ -0,0 +1,12 @@
// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN
include ':capacitor-android'
project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/android/capacitor')
include ':capacitor-community-sqlite'
project(':capacitor-community-sqlite').projectDir = new File('../node_modules/@capacitor-community/sqlite/android')
include ':capacitor-network'
project(':capacitor-network').projectDir = new File('../node_modules/@capacitor/network/android')
include ':capacitor-push-notifications'
project(':capacitor-push-notifications').projectDir = new File('../node_modules/@capacitor/push-notifications/android')
+22
View File
@@ -0,0 +1,22 @@
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx1536m
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
Binary file not shown.
+7
View File
@@ -0,0 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
+251
View File
@@ -0,0 +1,251 @@
#!/bin/sh
#
# Copyright © 2015-2021 the original authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#
##############################################################################
#
# Gradle start up script for POSIX generated by Gradle.
#
# Important for running:
#
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
# noncompliant, but you have some other compliant shell such as ksh or
# bash, then to run this script, type that shell name before the whole
# command line, like:
#
# ksh Gradle
#
# Busybox and similar reduced shells will NOT work, because this script
# requires all of these POSIX shell features:
# * functions;
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
# * compound commands having a testable exit status, especially «case»;
# * various built-in commands including «command», «set», and «ulimit».
#
# Important for patching:
#
# (2) This script targets any POSIX shell, so it avoids extensions provided
# by Bash, Ksh, etc; in particular arrays are avoided.
#
# The "traditional" practice of packing multiple parameters into a
# space-separated string is a well documented source of bugs and security
# problems, so this is (mostly) avoided, by progressively accumulating
# options in "$@", and eventually passing that to Java.
#
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
# see the in-line comments for details.
#
# There are tweaks for specific operating systems such as AIX, CygWin,
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
#
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
app_path=$0
# Need this for daisy-chained symlinks.
while
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
[ -h "$app_path" ]
do
ls=$( ls -ld "$app_path" )
link=${ls#*' -> '}
case $link in #(
/*) app_path=$link ;; #(
*) app_path=$APP_HOME$link ;;
esac
done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
warn () {
echo "$*"
} >&2
die () {
echo
echo "$*"
echo
exit 1
} >&2
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "$( uname )" in #(
CYGWIN* ) cygwin=true ;; #(
Darwin* ) darwin=true ;; #(
MSYS* | MINGW* ) msys=true ;; #(
NONSTOP* ) nonstop=true ;;
esac
CLASSPATH="\\\"\\\""
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD=$JAVA_HOME/jre/sh/java
else
JAVACMD=$JAVA_HOME/bin/java
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD=java
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi
# Increase the maximum file descriptors if we can.
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC2039,SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC2039,SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
fi
# Collect all arguments for the java command, stacking in reverse order:
# * args from the command line
# * the main class name
# * -classpath
# * -D...appname settings
# * --module-path (only if needed)
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
# For Cygwin or MSYS, switch paths to Windows format before running java
if "$cygwin" || "$msys" ; then
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
JAVACMD=$( cygpath --unix "$JAVACMD" )
# Now convert the arguments - kludge to limit ourselves to /bin/sh
for arg do
if
case $arg in #(
-*) false ;; # don't mess with options #(
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
[ -e "$t" ] ;; #(
*) false ;;
esac
then
arg=$( cygpath --path --ignore --mixed "$arg" )
fi
# Roll the args list around exactly as many times as the number of
# args, so each arg winds up back in the position where it started, but
# possibly modified.
#
# NB: a `for` loop captures its iteration list before it begins, so
# changing the positional parameters here affects neither the number of
# iterations, nor the values presented in `arg`.
shift # remove old arg
set -- "$@" "$arg" # push replacement arg
done
fi
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line.
set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
-classpath "$CLASSPATH" \
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
"$@"
# Stop when "xargs" is not available.
if ! command -v xargs >/dev/null 2>&1
then
die "xargs is not available"
fi
# Use "xargs" to parse quoted args.
#
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
#
# In Bash we could simply go:
#
# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
# set -- "${ARGS[@]}" "$@"
#
# but POSIX shell has neither arrays nor command substitution, so instead we
# post-process each arg (as a line of input to sed) to backslash-escape any
# character that might be a shell metacharacter, then use eval to reverse
# that process (while maintaining the separation between arguments), and wrap
# the whole thing up as a single "set" statement.
#
# This will of course break if any of these variables contains a newline or
# an unmatched quote.
#
eval "set -- $(
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
xargs -n1 |
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
tr '\n' ' '
)" '"$@"'
exec "$JAVACMD" "$@"
+94
View File
@@ -0,0 +1,94 @@
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@rem SPDX-License-Identifier: Apache-2.0
@rem
@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%"=="" set DIRNAME=.
@rem This is normally unused
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if %ERRORLEVEL% equ 0 goto execute
echo. 1>&2
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
echo. 1>&2
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2
goto fail
:execute
@rem Setup the command line
set CLASSPATH=
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
:end
@rem End local scope for the variables with windows NT shell
if %ERRORLEVEL% equ 0 goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
set EXIT_CODE=%ERRORLEVEL%
if %EXIT_CODE% equ 0 set EXIT_CODE=1
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
exit /b %EXIT_CODE%
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
+5
View File
@@ -0,0 +1,5 @@
include ':app'
include ':capacitor-cordova-android-plugins'
project(':capacitor-cordova-android-plugins').projectDir = new File('./capacitor-cordova-android-plugins/')
apply from: 'capacitor.settings.gradle'
+16
View File
@@ -0,0 +1,16 @@
ext {
minSdkVersion = 24
compileSdkVersion = 36
targetSdkVersion = 36
androidxActivityVersion = '1.11.0'
androidxAppCompatVersion = '1.7.1'
androidxCoordinatorLayoutVersion = '1.3.0'
androidxCoreVersion = '1.17.0'
androidxFragmentVersion = '1.8.9'
coreSplashScreenVersion = '1.2.0'
androidxWebkitVersion = '1.14.0'
junitVersion = '4.13.2'
androidxJunitVersion = '1.3.0'
androidxEspressoCoreVersion = '3.7.0'
cordovaAndroidVersion = '14.0.1'
}
+9
View File
@@ -0,0 +1,9 @@
import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.asansor.app',
appName: 'Asansor',
webDir: 'out'
};
export default config;
+13
View File
@@ -0,0 +1,13 @@
App/build
App/Pods
App/output
App/App/public
DerivedData
xcuserdata
# Cordova plugins for Capacitor
capacitor-cordova-ios-plugins
# Generated Config files
App/App/capacitor.config.json
App/App/config.xml
+376
View File
@@ -0,0 +1,376 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 60;
objects = {
/* Begin PBXBuildFile section */
2FAD9763203C412B000D30F8 /* config.xml in Resources */ = {isa = PBXBuildFile; fileRef = 2FAD9762203C412B000D30F8 /* config.xml */; };
4D22ABE92AF431CB00220026 /* CapApp-SPM in Frameworks */ = {isa = PBXBuildFile; productRef = 4D22ABE82AF431CB00220026 /* CapApp-SPM */; };
50379B232058CBB4000EE86E /* capacitor.config.json in Resources */ = {isa = PBXBuildFile; fileRef = 50379B222058CBB4000EE86E /* capacitor.config.json */; };
504EC3081FED79650016851F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 504EC3071FED79650016851F /* AppDelegate.swift */; };
504EC30D1FED79650016851F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 504EC30B1FED79650016851F /* Main.storyboard */; };
504EC30F1FED79650016851F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 504EC30E1FED79650016851F /* Assets.xcassets */; };
504EC3121FED79650016851F /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 504EC3101FED79650016851F /* LaunchScreen.storyboard */; };
50B271D11FEDC1A000F3C39B /* public in Resources */ = {isa = PBXBuildFile; fileRef = 50B271D01FEDC1A000F3C39B /* public */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
2FAD9762203C412B000D30F8 /* config.xml */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = config.xml; sourceTree = "<group>"; };
50379B222058CBB4000EE86E /* capacitor.config.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = capacitor.config.json; sourceTree = "<group>"; };
504EC3041FED79650016851F /* App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = App.app; sourceTree = BUILT_PRODUCTS_DIR; };
504EC3071FED79650016851F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
504EC30C1FED79650016851F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
504EC30E1FED79650016851F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
504EC3111FED79650016851F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
504EC3131FED79650016851F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
50B271D01FEDC1A000F3C39B /* public */ = {isa = PBXFileReference; lastKnownFileType = folder; path = public; sourceTree = "<group>"; };
958DCC722DB07C7200EA8C5F /* debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = debug.xcconfig; path = ../debug.xcconfig; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
504EC3011FED79650016851F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
4D22ABE92AF431CB00220026 /* CapApp-SPM in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
504EC2FB1FED79650016851F = {
isa = PBXGroup;
children = (
958DCC722DB07C7200EA8C5F /* debug.xcconfig */,
504EC3061FED79650016851F /* App */,
504EC3051FED79650016851F /* Products */,
);
sourceTree = "<group>";
};
504EC3051FED79650016851F /* Products */ = {
isa = PBXGroup;
children = (
504EC3041FED79650016851F /* App.app */,
);
name = Products;
sourceTree = "<group>";
};
504EC3061FED79650016851F /* App */ = {
isa = PBXGroup;
children = (
50379B222058CBB4000EE86E /* capacitor.config.json */,
504EC3071FED79650016851F /* AppDelegate.swift */,
504EC30B1FED79650016851F /* Main.storyboard */,
504EC30E1FED79650016851F /* Assets.xcassets */,
504EC3101FED79650016851F /* LaunchScreen.storyboard */,
504EC3131FED79650016851F /* Info.plist */,
2FAD9762203C412B000D30F8 /* config.xml */,
50B271D01FEDC1A000F3C39B /* public */,
);
path = App;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
504EC3031FED79650016851F /* App */ = {
isa = PBXNativeTarget;
buildConfigurationList = 504EC3161FED79650016851F /* Build configuration list for PBXNativeTarget "App" */;
buildPhases = (
504EC3001FED79650016851F /* Sources */,
504EC3011FED79650016851F /* Frameworks */,
504EC3021FED79650016851F /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = App;
packageProductDependencies = (
4D22ABE82AF431CB00220026 /* CapApp-SPM */,
);
productName = App;
productReference = 504EC3041FED79650016851F /* App.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
504EC2FC1FED79650016851F /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0920;
LastUpgradeCheck = 0920;
TargetAttributes = {
504EC3031FED79650016851F = {
CreatedOnToolsVersion = 9.2;
LastSwiftMigration = 1100;
ProvisioningStyle = Automatic;
};
};
};
buildConfigurationList = 504EC2FF1FED79650016851F /* Build configuration list for PBXProject "App" */;
compatibilityVersion = "Xcode 8.0";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 504EC2FB1FED79650016851F;
packageReferences = (
D4C12C0A2AAA248700AAC8A2 /* XCLocalSwiftPackageReference "CapApp-SPM" */,
);
productRefGroup = 504EC3051FED79650016851F /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
504EC3031FED79650016851F /* App */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
504EC3021FED79650016851F /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
504EC3121FED79650016851F /* LaunchScreen.storyboard in Resources */,
50B271D11FEDC1A000F3C39B /* public in Resources */,
504EC30F1FED79650016851F /* Assets.xcassets in Resources */,
50379B232058CBB4000EE86E /* capacitor.config.json in Resources */,
504EC30D1FED79650016851F /* Main.storyboard in Resources */,
2FAD9763203C412B000D30F8 /* config.xml in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
504EC3001FED79650016851F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
504EC3081FED79650016851F /* AppDelegate.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
504EC30B1FED79650016851F /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
504EC30C1FED79650016851F /* Base */,
);
name = Main.storyboard;
sourceTree = "<group>";
};
504EC3101FED79650016851F /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
504EC3111FED79650016851F /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
504EC3141FED79650016851F /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 958DCC722DB07C7200EA8C5F /* debug.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
};
name = Debug;
};
504EC3151FED79650016851F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
504EC3171FED79650016851F /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 958DCC722DB07C7200EA8C5F /* debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
PRODUCT_BUNDLE_IDENTIFIER = com.asansor.app;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
504EC3181FED79650016851F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.asansor.app;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
504EC2FF1FED79650016851F /* Build configuration list for PBXProject "App" */ = {
isa = XCConfigurationList;
buildConfigurations = (
504EC3141FED79650016851F /* Debug */,
504EC3151FED79650016851F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
504EC3161FED79650016851F /* Build configuration list for PBXNativeTarget "App" */ = {
isa = XCConfigurationList;
buildConfigurations = (
504EC3171FED79650016851F /* Debug */,
504EC3181FED79650016851F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
/* Begin XCLocalSwiftPackageReference section */
D4C12C0A2AAA248700AAC8A2 /* XCLocalSwiftPackageReference "CapApp-SPM" */ = {
isa = XCLocalSwiftPackageReference;
relativePath = "CapApp-SPM";
};
/* End XCLocalSwiftPackageReference section */
/* Begin XCSwiftPackageProductDependency section */
4D22ABE82AF431CB00220026 /* CapApp-SPM */ = {
isa = XCSwiftPackageProductDependency;
package = D4C12C0A2AAA248700AAC8A2 /* XCLocalSwiftPackageReference "CapApp-SPM" */;
productName = "CapApp-SPM";
};
/* End XCSwiftPackageProductDependency section */
};
rootObject = 504EC2FC1FED79650016851F /* Project object */;
}
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
+49
View File
@@ -0,0 +1,49 @@
import UIKit
import Capacitor
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
return true
}
func applicationWillResignActive(_ application: UIApplication) {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
}
func applicationDidEnterBackground(_ application: UIApplication) {
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}
func applicationWillEnterForeground(_ application: UIApplication) {
// Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}
func applicationDidBecomeActive(_ application: UIApplication) {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
func applicationWillTerminate(_ application: UIApplication) {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
// Called when the app was launched with a url. Feel free to add additional processing here,
// but if you want the App API to support tracking app url opens, make sure to keep this call
return ApplicationDelegateProxy.shared.application(app, open: url, options: options)
}
func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
// Called when the app was launched with an activity, including Universal Links.
// Feel free to add additional processing here, but if you want the App API to support
// tracking app url opens, make sure to keep this call
return ApplicationDelegateProxy.shared.application(application, continue: userActivity, restorationHandler: restorationHandler)
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

@@ -0,0 +1,14 @@
{
"images" : [
{
"filename" : "AppIcon-512@2x.png",
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
@@ -0,0 +1,6 @@
{
"info" : {
"version" : 1,
"author" : "xcode"
}
}
@@ -0,0 +1,23 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "splash-2732x2732-2.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "splash-2732x2732-1.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "splash-2732x2732.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="17132" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
<device id="retina4_7" orientation="portrait" appearance="light"/>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="17105"/>
<capability name="System colors in document resources" minToolsVersion="11.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="EHf-IW-A2E">
<objects>
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
<imageView key="view" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="Splash" id="snD-IY-ifK">
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
<autoresizingMask key="autoresizingMask"/>
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
</imageView>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="53" y="375"/>
</scene>
</scenes>
<resources>
<image name="Splash" width="1366" height="1366"/>
<systemColor name="systemBackgroundColor">
<color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
</systemColor>
</resources>
</document>
+19
View File
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="14111" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="BYZ-38-t0r">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14088"/>
</dependencies>
<scenes>
<!--Bridge View Controller-->
<scene sceneID="tne-QT-ifu">
<objects>
<viewController id="BYZ-38-t0r" customClass="CAPBridgeViewController" customModule="Capacitor" sceneMemberID="viewController"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
</objects>
</scene>
</scenes>
</document>
+51
View File
@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CAPACITOR_DEBUG</key>
<string>$(CAPACITOR_DEBUG)</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>Asansor</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<true/>
</dict>
</plist>
+9
View File
@@ -0,0 +1,9 @@
.DS_Store
/.build
/Packages
/*.xcodeproj
xcuserdata/
DerivedData/
.swiftpm/config/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc
+31
View File
@@ -0,0 +1,31 @@
// swift-tools-version: 5.9
import PackageDescription
// DO NOT MODIFY THIS FILE - managed by Capacitor CLI commands
let package = Package(
name: "CapApp-SPM",
platforms: [.iOS(.v15)],
products: [
.library(
name: "CapApp-SPM",
targets: ["CapApp-SPM"])
],
dependencies: [
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", exact: "8.3.0"),
.package(name: "CapacitorCommunitySqlite", path: "..\..\..\node_modules\@capacitor-community\sqlite"),
.package(name: "CapacitorNetwork", path: "..\..\..\node_modules\@capacitor\network"),
.package(name: "CapacitorPushNotifications", path: "..\..\..\node_modules\@capacitor\push-notifications")
],
targets: [
.target(
name: "CapApp-SPM",
dependencies: [
.product(name: "Capacitor", package: "capacitor-swift-pm"),
.product(name: "Cordova", package: "capacitor-swift-pm"),
.product(name: "CapacitorCommunitySqlite", package: "CapacitorCommunitySqlite"),
.product(name: "CapacitorNetwork", package: "CapacitorNetwork"),
.product(name: "CapacitorPushNotifications", package: "CapacitorPushNotifications")
]
)
]
)
+5
View File
@@ -0,0 +1,5 @@
# CapApp-SPM
This package is used to host SPM dependencies for your Capacitor project
Do not modify the contents of it or there may be unintended consequences.
@@ -0,0 +1 @@
public let isCapacitorApp = true
+1
View File
@@ -0,0 +1 @@
CAPACITOR_DEBUG = true
+4 -1
View File
@@ -1,7 +1,10 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: 'export',
images: {
unoptimized: true,
},
};
export default nextConfig;
+1397 -13
View File
File diff suppressed because it is too large Load Diff
+11
View File
@@ -9,6 +9,17 @@
"lint": "eslint"
},
"dependencies": {
"@capacitor-community/sqlite": "^8.1.0",
"@capacitor/android": "^8.3.0",
"@capacitor/cli": "^8.3.0",
"@capacitor/core": "^8.3.0",
"@capacitor/ios": "^8.3.0",
"@capacitor/network": "^8.0.1",
"@capacitor/push-notifications": "^8.0.3",
"@supabase/ssr": "^0.10.2",
"@supabase/supabase-js": "^2.103.0",
"framer-motion": "^12.38.0",
"lucide-react": "^1.8.0",
"next": "16.2.3",
"react": "19.2.4",
"react-dom": "19.2.4"
+171
View File
@@ -0,0 +1,171 @@
'use client';
import React, { useState } from 'react';
import {
AlertTriangle,
Clock,
Search,
Plus,
ChevronRight,
MessageSquare,
Wrench
} from 'lucide-react';
import { motion } from 'framer-motion';
export default function ArizalarPage() {
const [searchTerm, setSearchTerm] = useState('');
const failures = [
{
id: 1,
bina: 'Güneş Apartmanı',
asansor: 'A Blok - Sol',
konu: 'Kapı Kapanmıyor',
oncelik: 'Acil',
durum: 'İşlemde',
tarih: '2 Saat önce'
},
{
id: 2,
bina: 'Yıldız Rezidans',
asansor: 'Yük Asansörü',
konu: 'Kat Göstergesi Arızalı',
oncelik: 'Normal',
durum: 'Bekliyor',
tarih: '5 Saat önce'
},
{
id: 3,
bina: 'Mavi Plaza',
asansor: '2. Asansör',
konu: 'Sesli Çalışıyor',
oncelik: 'Düşük',
durum: 'Bekliyor',
tarih: 'Dün'
},
];
const getPriorityColor = (p: string) => {
switch (p) {
case 'Acil': return '#f43f5e';
case 'Normal': return '#f59e0b';
default: return '#3b82f6';
}
};
return (
<div>
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', marginBottom: '2rem' }}>
<div>
<h1 style={{ fontSize: '1.75rem', fontWeight: 800, color: 'var(--secondary)' }}>Arıza Talepleri</h1>
<p style={{ color: 'var(--muted-foreground)' }}>Gelen arıza bildirimlerini takip edin ve teknisyen atayın.</p>
</div>
<button className="btn-primary">
<Plus size={18} />
Arıza Kaydı
</button>
</div>
<div style={{ display: 'flex', gap: '1rem', marginBottom: '2rem' }}>
<div style={{
flex: 1,
position: 'relative',
display: 'flex',
alignItems: 'center'
}}>
<Search size={18} style={{ position: 'absolute', left: '1rem', color: 'var(--muted-foreground)' }} />
<input
type="text"
placeholder="Bina veya arıza ara..."
style={{
width: '100%',
padding: '0.75rem 1rem 0.75rem 2.5rem',
borderRadius: '0.75rem',
border: '1px solid var(--border)',
background: 'white'
}}
/>
</div>
</div>
<div style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}>
{failures.map((fail) => (
<motion.div
key={fail.id}
whileHover={{ x: 4 }}
className="premium-card"
style={{ padding: '1.25rem', display: 'flex', alignItems: 'center', gap: '1.5rem' }}
>
<div style={{
background: `${getPriorityColor(fail.oncelik)}15`,
padding: '0.75rem',
borderRadius: '0.75rem',
color: getPriorityColor(fail.oncelik)
}}>
<AlertTriangle size={24} />
</div>
<div style={{ flex: 1 }}>
<div style={{ display: 'flex', alignItems: 'center', gap: '0.75rem', marginBottom: '0.25rem' }}>
<h3 style={{ fontSize: '1rem', fontWeight: 700 }}>{fail.konu}</h3>
<span style={{
fontSize: '0.7rem',
fontWeight: 700,
padding: '0.15rem 0.5rem',
borderRadius: '9999px',
background: fail.durum === 'İşlemde' ? '#3b82f615' : '#f59e0b15',
color: fail.durum === 'İşlemde' ? '#3b82f6' : '#f59e0b',
}}>
{fail.durum}
</span>
</div>
<p style={{ fontSize: '0.85rem', color: 'var(--muted-foreground)' }}>
{fail.bina} {fail.asansor}
</p>
</div>
<div style={{ textAlign: 'right', display: 'flex', flexDirection: 'column', gap: '0.5rem' }}>
<div style={{ display: 'flex', alignItems: 'center', gap: '0.4rem', color: 'var(--muted-foreground)', fontSize: '0.8rem' }}>
<Clock size={14} />
<span>{fail.tarih}</span>
</div>
<button style={{
background: 'none',
border: 'none',
color: 'var(--primary)',
fontWeight: 600,
fontSize: '0.85rem',
display: 'flex',
alignItems: 'center',
gap: '0.25rem',
cursor: 'pointer'
}}>
Detay <ChevronRight size={16} />
</button>
</div>
</motion.div>
))}
</div>
<div style={{
marginTop: '3rem',
padding: '2rem',
background: 'var(--secondary)',
borderRadius: '1.5rem',
color: 'white',
display: 'flex',
alignItems: 'center',
justifyContent: 'space-between'
}}>
<div>
<h2 style={{ fontSize: '1.25rem', fontWeight: 700, marginBottom: '0.5rem' }}>Teknisyen Ataması Yapılmadı</h2>
<p style={{ opacity: 0.8, fontSize: '0.9rem' }}>Bekleyen 2 arıza için henüz saha personeli görevlendirilmedi.</p>
</div>
<button className="btn-primary" style={{ background: 'white', color: 'var(--secondary)' }}>
<Wrench size={18} />
Teknisyen Ata
</button>
</div>
</div>
);
}
+244
View File
@@ -0,0 +1,244 @@
'use client';
import React, { useState } from 'react';
import {
QrCode,
Camera,
PenTool,
CheckCircle2,
AlertTriangle,
ChevronRight,
ChevronLeft,
X
} from 'lucide-react';
import { motion, AnimatePresence } from 'framer-motion';
export default function BakimFormu() {
const [step, setStep] = useState(1); // 1: QR Scan, 2: Checklist, 3: Media & Sign
const [scanned, setScanned] = useState(false);
const [checks, setChecks] = useState({
kuyu: false,
kabin_ustu: false,
kabin_ici: false,
makine_dairesi: false
});
const nextStep = () => setStep(s => s + 1);
const prevStep = () => setStep(s => s - 1);
return (
<div style={{ maxWidth: '600px', margin: '0 auto', paddingBottom: '5rem' }}>
{/* Progress Header */}
<div style={{ display: 'flex', justifyContent: 'space-between', marginBottom: '2rem', position: 'relative', padding: '0 1rem' }}>
<div style={{ position: 'absolute', top: '20px', left: '1rem', right: '1rem', height: '2px', background: 'var(--border)', zIndex: 0 }} />
{[1, 2, 3].map(i => (
<div key={i} style={{
width: '40px',
height: '40px',
borderRadius: '50%',
background: step >= i ? 'var(--primary)' : 'white',
border: step >= i ? 'none' : '2px solid var(--border)',
color: step >= i ? 'white' : 'var(--muted-foreground)',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
fontWeight: 700,
zIndex: 1,
transition: 'all 0.3s ease'
}}>
{step > i ? <CheckCircle2 size={20} /> : i}
</div>
))}
</div>
<AnimatePresence mode="wait">
{step === 1 && (
<motion.div
initial={{ opacity: 0, x: 20 }}
animate={{ opacity: 1, x: 0 }}
exit={{ opacity: 0, x: -20 }}
key="step1"
style={{ textAlign: 'center' }}
>
<div className="premium-card" style={{ padding: '3rem 2rem' }}>
<div style={{
width: '120px',
height: '120px',
background: scanned ? '#10b98115' : 'var(--primary)15',
borderRadius: '30px',
margin: '0 auto 2rem',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
color: scanned ? '#10b981' : 'var(--primary)'
}}>
<QrCode size={64} />
</div>
<h2 style={{ fontWeight: 800, marginBottom: '0.5rem' }}>QR Kod Okutun</h2>
<p style={{ color: 'var(--muted-foreground)', marginBottom: '2rem' }}>
Bakımı başlatmak için asansör üzerindeki QR kodu kameranıza okutun.
</p>
{!scanned ? (
<button
onClick={() => setScanned(true)}
className="btn-primary"
style={{ width: '100%', justifyContent: 'center' }}
>
<Camera size={20} /> Kamerayı Başlat
</button>
) : (
<div style={{ background: '#10b98115', padding: '1rem', borderRadius: '0.75rem', marginBottom: '2rem' }}>
<p style={{ color: '#10b981', fontWeight: 700 }}> Asansör Doğrulandı: A Blok - Sol</p>
</div>
)}
{scanned && (
<button
onClick={nextStep}
className="btn-primary"
style={{ width: '100%', justifyContent: 'center' }}
>
Devam Et <ChevronRight size={20} />
</button>
)}
</div>
</motion.div>
)}
{step === 2 && (
<motion.div
initial={{ opacity: 0, x: 20 }}
animate={{ opacity: 1, x: 0 }}
exit={{ opacity: 0, x: -20 }}
key="step2"
>
<h2 style={{ fontWeight: 800, marginBottom: '1.5rem' }}>Kontrol Listesi</h2>
<div style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}>
{[
{ id: 'kuyu', label: 'Kuyu Dibini Kontrol Et', detail: 'Sıvı kaçağı ve temizlik' },
{ id: 'kabin_ustu', label: 'Kabin Üstü Parçalar', detail: 'Ray yağlayıcılar, halatlar' },
{ id: 'kabin_ici', label: 'Kabin İçi Fonksiyonlar', detail: 'Butonlar, acil aydınlatma' },
{ id: 'makine_dairesi', label: 'Makine Dairesi Testleri', detail: 'Frenler, yağ seviyesi' }
].map(item => (
<div
key={item.id}
onClick={() => setChecks(prev => ({ ...prev, [item.id]: !prev[item.id as keyof typeof prev] }))}
className="premium-card"
style={{
display: 'flex',
alignItems: 'center',
gap: '1rem',
padding: '1.25rem',
borderColor: checks[item.id as keyof typeof checks] ? 'var(--primary)' : 'var(--border)',
cursor: 'pointer'
}}
>
<div style={{
width: '24px',
height: '24px',
borderRadius: '6px',
border: '2px solid',
borderColor: checks[item.id as keyof typeof checks] ? 'var(--primary)' : 'var(--border)',
background: checks[item.id as keyof typeof checks] ? 'var(--primary)' : 'transparent',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
color: 'white'
}}>
{checks[item.id as keyof typeof checks] && <CheckCircle2 size={16} />}
</div>
<div style={{ flex: 1 }}>
<p style={{ fontWeight: 700, fontSize: '1rem' }}>{item.label}</p>
<p style={{ fontSize: '0.8rem', color: 'var(--muted-foreground)' }}>{item.detail}</p>
</div>
</div>
))}
</div>
<div style={{ display: 'flex', gap: '1rem', marginTop: '2rem' }}>
<button
onClick={prevStep}
className="btn-primary"
style={{ background: 'var(--muted)', color: 'var(--secondary)', flex: 1, justifyContent: 'center' }}
>
Geri
</button>
<button
onClick={nextStep}
className="btn-primary"
style={{ flex: 1, justifyContent: 'center' }}
>
Sonraki Adım
</button>
</div>
</motion.div>
)}
{step === 3 && (
<motion.div
initial={{ opacity: 0, x: 20 }}
animate={{ opacity: 1, x: 0 }}
exit={{ opacity: 0, x: -20 }}
key="step3"
>
<h2 style={{ fontWeight: 800, marginBottom: '1.5rem' }}>Fotoğraflar ve İmza</h2>
<div className="premium-card" style={{ marginBottom: '1.5rem' }}>
<h3 style={{ fontSize: '0.9rem', fontWeight: 700, marginBottom: '1rem' }}>Fotoğraf Ekle</h3>
<div style={{ display: 'flex', gap: '0.75rem' }}>
<div style={{
width: '80px',
height: '80px',
borderRadius: '12px',
border: '2px dashed var(--border)',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
color: 'var(--muted-foreground)',
cursor: 'pointer'
}}>
<Camera size={24} />
</div>
</div>
</div>
<div className="premium-card" style={{ marginBottom: '2rem' }}>
<h3 style={{ fontSize: '0.9rem', fontWeight: 700, marginBottom: '1rem' }}>Müşteri/Yönetici İmzası</h3>
<div style={{
width: '100%',
height: '150px',
background: 'var(--muted)',
borderRadius: '12px',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
color: 'var(--muted-foreground)',
position: 'relative'
}}>
<PenTool size={32} />
<span style={{ position: 'absolute', bottom: '1rem', fontSize: '0.75rem' }}>Ekrana imza atın</span>
</div>
</div>
<div style={{ display: 'flex', gap: '1rem' }}>
<button
onClick={prevStep}
className="btn-primary"
style={{ background: 'var(--muted)', color: 'var(--secondary)', flex: 1, justifyContent: 'center' }}
>
Geri
</button>
<button
className="btn-primary"
style={{ flex: 2, justifyContent: 'center' }}
>
Bakımı Tamamla
</button>
</div>
</motion.div>
)}
</AnimatePresence>
</div>
);
}
+205
View File
@@ -0,0 +1,205 @@
'use client';
import React, { useState } from 'react';
import {
ArrowLeft,
Plus,
QrCode,
Settings,
CheckCircle2,
AlertCircle,
Hash,
MoveUp,
Weight,
Tag
} from 'lucide-react';
import { useParams, useRouter } from 'next/navigation';
export default function BinaDetay() {
const params = useParams();
const router = useRouter();
const [showAddForm, setShowAddForm] = useState(false);
// Mock Data
const building = { id: params.id, name: 'Güneş Apartmanı', address: 'Huzur Mah. 123. Sokak No:5, Ankara' };
const elevators = [
{
id: 1,
label: 'A Blok - Sol',
kimlikNo: '12345678',
kapasite: '630 Kg / 8 Kişi',
etiket: 'Yeşil',
gecerlilik: '01.01.2027',
durum: 'Aktif'
},
{
id: 2,
label: 'A Blok - Sağ',
kimlikNo: '12345679',
kapasite: '630 Kg / 8 Kişi',
etiket: 'Mavi',
gecerlilik: '15.06.2026',
durum: 'Bakımda'
},
];
return (
<div>
<div style={{ marginBottom: '2rem' }}>
<button
onClick={() => router.back()}
style={{
background: 'none',
border: 'none',
display: 'flex',
alignItems: 'center',
gap: '0.5rem',
color: 'var(--muted-foreground)',
cursor: 'pointer',
marginBottom: '1rem',
fontWeight: 500
}}
>
<ArrowLeft size={18} /> Geri Dön
</button>
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'flex-end' }}>
<div>
<h1 style={{ fontSize: '1.75rem', fontWeight: 800, color: 'var(--secondary)' }}>{building.name}</h1>
<p style={{ color: 'var(--muted-foreground)' }}>{building.address}</p>
</div>
<button
onClick={() => setShowAddForm(true)}
className="btn-primary"
>
<Plus size={18} />
Yeni Asansör Ekle
</button>
</div>
</div>
<div style={{ display: 'grid', gridTemplateColumns: 'repeat(auto-fit, minmax(400px, 1fr))', gap: '1.5rem' }}>
{elevators.map((elev) => (
<div key={elev.id} className="premium-card" style={{ padding: '0' }}>
<div style={{ padding: '1.5rem', borderBottom: '1px solid var(--border)', display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}>
<div style={{ display: 'flex', alignItems: 'center', gap: '0.75rem' }}>
<div style={{
background: 'var(--primary)15',
padding: '0.5rem',
borderRadius: '0.5rem',
color: 'var(--primary)'
}}>
<MoveUp size={20} />
</div>
<div>
<h3 style={{ fontWeight: 700 }}>{elev.label}</h3>
<span style={{ fontSize: '0.75rem', color: 'var(--muted-foreground)' }}>ID: {elev.kimlikNo}</span>
</div>
</div>
<div style={{ display: 'flex', alignItems: 'center', gap: '0.5rem' }}>
<span style={{
fontSize: '0.7rem',
fontWeight: 700,
padding: '0.2rem 0.5rem',
borderRadius: '4px',
background: elev.etiket === 'Yeşil' ? '#10b981' : elev.etiket === 'Mavi' ? '#3b82f6' : '#f59e0b',
color: 'white'
}}>
{elev.etiket} Etiket
</span>
<button style={{ background: 'none', border: 'none', cursor: 'pointer', color: 'var(--muted-foreground)' }}>
<Settings size={18} />
</button>
</div>
</div>
<div style={{ padding: '1.25rem', display: 'grid', gridTemplateColumns: '1fr 1fr', gap: '1rem' }}>
<div style={{ display: 'flex', alignItems: 'center', gap: '0.5rem' }}>
<Weight size={16} color="var(--muted-foreground)" />
<span style={{ fontSize: '0.85rem' }}>{elev.kapasite}</span>
</div>
<div style={{ display: 'flex', alignItems: 'center', gap: '0.5rem' }}>
<Tag size={16} color="var(--muted-foreground)" />
<span style={{ fontSize: '0.85rem' }}>Son Kontrol: {elev.gecerlilik}</span>
</div>
</div>
<div style={{ padding: '1rem 1.5rem', background: 'var(--muted)', borderBottomLeftRadius: 'var(--radius)', borderBottomRightRadius: 'var(--radius)', display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}>
<div style={{ display: 'flex', alignItems: 'center', gap: '0.4rem' }}>
{elev.durum === 'Aktif' ? <CheckCircle2 size={14} color="#10b981" /> : <AlertCircle size={14} color="#f59e0b" />}
<span style={{ fontSize: '0.8rem', fontWeight: 600 }}>{elev.durum}</span>
</div>
<button style={{
background: 'white',
border: '1px solid var(--border)',
padding: '0.4rem 0.75rem',
borderRadius: '0.5rem',
fontSize: '0.8rem',
fontWeight: 600,
display: 'flex',
alignItems: 'center',
gap: '0.4rem',
cursor: 'pointer'
}}>
<QrCode size={14} /> Karekod Yazdır
</button>
</div>
</div>
))}
</div>
{/* Placeholder for Add Form Modal */}
{showAddForm && (
<div style={{
position: 'fixed',
inset: 0,
background: 'rgba(0,0,0,0.5)',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
backdropFilter: 'blur(4px)',
zIndex: 100
}}>
<div className="premium-card" style={{ width: '100%', maxWidth: '500px' }}>
<h2 style={{ marginBottom: '1.5rem', fontWeight: 800 }}>Yeni Asansör Kaydı</h2>
<div style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}>
<input placeholder="Asansör Adı (Örn: A Blok)" style={inputStyle} />
<input placeholder="Belediye/Bakanlık Kimlik No" style={inputStyle} />
<div style={{ display: 'grid', gridTemplateColumns: '1fr 1fr', gap: '1rem' }}>
<input placeholder="Kapasite (Kg)" style={inputStyle} />
<input placeholder="Kişi Sayısı" style={inputStyle} />
</div>
<select style={inputStyle}>
<option>Etiket Rengi Seçiniz</option>
<option>Yeşil</option>
<option>Mavi</option>
<option>Sarı</option>
<option>Kırmızı</option>
</select>
<div style={{ display: 'flex', gap: '1rem', marginTop: '1rem' }}>
<button
onClick={() => setShowAddForm(false)}
className="btn-primary"
style={{ background: 'var(--muted)', color: 'var(--secondary)', flex: 1 }}
>
İptal
</button>
<button className="btn-primary" style={{ flex: 1 }}>Kaydet</button>
</div>
</div>
</div>
</div>
)}
</div>
);
}
const inputStyle = {
width: '100%',
padding: '0.75rem 1rem',
borderRadius: '0.75rem',
border: '1px solid var(--border)',
background: 'var(--muted)',
fontSize: '0.9rem',
outline: 'none'
};
+103
View File
@@ -0,0 +1,103 @@
'use client';
import React, { useState } from 'react';
import BuildingCard from '@/components/BuildingCard';
import { Search, Plus, Filter, Download } from 'lucide-react';
export default function BinalarPage() {
const [searchTerm, setSearchTerm] = useState('');
const buildings = [
{ name: 'Güneş Apartmanı', address: 'Huzur Mah. 123. Sokak No:5, Ankara', elevators: 2, balance: 1250, status: 'active' as const },
{ name: 'Yıldız Rezidans', address: 'Merkez Mah. Atatürk Bulv. No:42, Ankara', elevators: 4, balance: 0, status: 'active' as const },
{ name: 'Mavi Plaza', address: 'Çankaya Cad. No:10, Ankara', elevators: 3, balance: -500, status: 'active' as const },
{ name: 'Koru Evleri', address: 'Orman Yolu No:2, Ankara', elevators: 1, balance: 3400, status: 'passive' as const },
{ name: 'Deniz Apt.', address: 'Sahil Yolu No:88, Ankara', elevators: 2, balance: 150, status: 'active' as const },
{ name: 'Işık İş Merkezi', address: 'Sanayi Bölgesi 2. Cadde, Ankara', elevators: 2, balance: 0, status: 'active' as const },
];
const filteredBuildings = buildings.filter(b =>
b.name.toLowerCase().includes(searchTerm.toLowerCase()) ||
b.address.toLowerCase().includes(searchTerm.toLowerCase())
);
return (
<div>
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', marginBottom: '2rem' }}>
<div>
<h1 style={{ fontSize: '1.75rem', fontWeight: 800, color: 'var(--secondary)' }}>Bina Yönetimi</h1>
<p style={{ color: 'var(--muted-foreground)' }}>Kayıtlı binaları, asansör sayılarını ve finansal durumları yönetin.</p>
</div>
<div style={{ display: 'flex', gap: '0.75rem' }}>
<button className="btn-primary" style={{ background: 'var(--secondary)' }}>
<Download size={18} />
Dışa Aktar
</button>
<button className="btn-primary">
<Plus size={18} />
Yeni Bina Ekle
</button>
</div>
</div>
<div style={{ display: 'flex', gap: '1rem', marginBottom: '2rem' }}>
<div style={{
flex: 1,
position: 'relative',
display: 'flex',
alignItems: 'center'
}}>
<Search size={18} style={{ position: 'absolute', left: '1rem', color: 'var(--muted-foreground)' }} />
<input
type="text"
placeholder="Bina adı veya adres ara..."
value={searchTerm}
onChange={(e) => setSearchTerm(e.target.value)}
style={{
width: '100%',
padding: '0.75rem 1rem 0.75rem 2.5rem',
borderRadius: '0.75rem',
border: '1px solid var(--border)',
background: 'white'
}}
/>
</div>
<button style={{
background: 'white',
border: '1px solid var(--border)',
padding: '0.75rem 1.25rem',
borderRadius: '0.75rem',
display: 'flex',
alignItems: 'center',
gap: '0.5rem',
fontWeight: 600,
cursor: 'pointer'
}}>
<Filter size={18} /> Filtrele
</button>
</div>
<div style={{
display: 'grid',
gridTemplateColumns: 'repeat(auto-fill, minmax(320px, 1fr))',
gap: '1.5rem'
}}>
{filteredBuildings.map((building, i) => (
<BuildingCard key={i} {...building} />
))}
</div>
{filteredBuildings.length === 0 && (
<div style={{
textAlign: 'center',
padding: '4rem',
background: 'white',
borderRadius: '1rem',
border: '1px dashed var(--border)'
}}>
<p style={{ color: 'var(--muted-foreground)' }}>Aramanıza uygun bina bulunamadı.</p>
</div>
)}
</div>
);
}
+116 -33
View File
@@ -1,49 +1,132 @@
:root {
--background: #ffffff;
--primary: #CE0515;
--secondary: #173363;
--background: #F8F9FA;
--foreground: #171717;
--card: #ffffff;
--card-foreground: #171717;
--muted: #f1f5f9;
--muted-foreground: #64748b;
--accent: #CE0515;
--accent-foreground: #ffffff;
--border: #e2e8f0;
--radius: 1rem;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
html {
height: 100%;
}
html,
body {
max-width: 100vw;
overflow-x: hidden;
}
body {
min-height: 100%;
display: flex;
flex-direction: column;
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
[data-theme="dark"] {
--background: #0f172a;
--foreground: #f8fafc;
--card: #1e293b;
--card-foreground: #f8fafc;
--muted: #334155;
--muted-foreground: #94a3b8;
--accent: #CE0515;
--accent-foreground: #ffffff;
--border: #334155;
}
* {
box-sizing: border-box;
padding: 0;
margin: 0;
padding: 0;
}
a {
color: inherit;
body {
background: var(--background);
color: var(--foreground);
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
min-height: 100vh;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.premium-card {
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
padding: 1.5rem;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.premium-card:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-primary {
background: var(--primary);
color: white;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 9999px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.btn-primary:hover {
filter: brightness(1.1);
transform: scale(1.02);
}
.navbar {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 50;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.sidebar {
background: var(--secondary);
color: white;
width: 250px;
height: 100vh;
position: fixed;
left: 0;
top: 0;
padding: 2rem 1.5rem;
display: flex;
flex-direction: column;
gap: 1rem;
}
.nav-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1rem;
border-radius: 0.75rem;
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: all 0.2s ease;
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
.nav-item:hover, .nav-item.active {
background: rgba(255, 255, 255, 0.1);
color: white;
}
.container {
padding: 2rem;
margin-left: 250px;
}
@media (max-width: 768px) {
.sidebar {
display: none;
}
.container {
margin-left: 0;
}
}
+18 -15
View File
@@ -1,20 +1,12 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
import Sidebar from "@/components/Sidebar";
import Header from "@/components/Header";
import MobileNav from "@/components/MobileNav";
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Asansör Takip | Kurumsal Yönetim Sistemi",
description: "Asansör servis, bakım ve üretim takip uygulaması",
};
export default function RootLayout({
@@ -23,8 +15,19 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en" className={`${geistSans.variable} ${geistMono.variable}`}>
<body>{children}</body>
<html lang="tr">
<body>
<div style={{ display: 'flex' }}>
<Sidebar />
<div style={{ flex: 1 }}>
<Header />
<main className="container">
{children}
</main>
<MobileNav />
</div>
</div>
</body>
</html>
);
}
+119 -58
View File
@@ -1,66 +1,127 @@
import Image from "next/image";
import styles from "./page.module.css";
'use client';
import React from 'react';
import StatsCard from '@/components/StatsCard';
import {
Building2,
Wrench,
AlertTriangle,
Factory,
ArrowRight,
PlusCircle,
FileText
} from 'lucide-react';
export default function Dashboard() {
const stats = [
{ title: 'Toplam Bina', value: '142', icon: Building2, trend: '+4', color: '#173363' },
{ title: 'Aylık Bakım', value: '86/120', icon: Wrench, trend: '72%', color: '#CE0515' },
{ title: 'Aktif Arıza', value: '3', icon: AlertTriangle, trend: '-2', color: '#f59e0b' },
{ title: 'Devam Eden Üretim', value: '12', icon: Factory, trend: '+2', color: '#10b981' },
];
const recentActivity = [
{ title: 'Bakım Tamamlandı', location: 'Güneş Apartmanı - A Blok', date: '10 Dakika önce', status: 'success' },
{ title: 'Arıza Bildirimi', location: 'Yıldız Rezidans', date: '1 Saat önce', status: 'danger' },
{ title: 'Yeni Üretim Planı', location: 'Deniz Evleri', date: '3 Saat önce', status: 'info' },
];
export default function Home() {
return (
<div className={styles.page}>
<main className={styles.main}>
<Image
className={styles.logo}
src="/next.svg"
alt="Next.js logo"
width={100}
height={20}
priority
/>
<div className={styles.intro}>
<h1>To get started, edit the page.tsx file.</h1>
<p>
Looking for a starting point or more instructions? Head over to{" "}
<a
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
Templates
</a>{" "}
or the{" "}
<a
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
Learning
</a>{" "}
center.
<div>
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', marginBottom: '2rem' }}>
<div>
<h1 style={{ fontSize: '1.75rem', fontWeight: 800, color: 'var(--secondary)' }}>
Hoş Geldiniz, Kenan
</h1>
<p style={{ color: 'var(--muted-foreground)', marginTop: '0.25rem' }}>
İşte bugünkü asansör servis ve üretim özeti.
</p>
</div>
<div className={styles.ctas}>
<a
className={styles.primary}
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
<Image
className={styles.logo}
src="/vercel.svg"
alt="Vercel logomark"
width={16}
height={16}
/>
Deploy Now
</a>
<a
className={styles.secondary}
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
Documentation
</a>
<div style={{ display: 'flex', gap: '1rem' }}>
<button className="btn-primary" style={{ background: 'var(--secondary)' }}>
<FileText size={18} />
Rapor Al
</button>
<button className="btn-primary">
<PlusCircle size={18} />
Yeni İş Emri
</button>
</div>
</div>
<div style={{
display: 'grid',
gridTemplateColumns: 'repeat(auto-fit, minmax(240px, 1fr))',
gap: '1.5rem',
marginBottom: '2.5rem'
}}>
{stats.map((stat, i) => (
<StatsCard key={i} {...stat} />
))}
</div>
<div style={{
display: 'grid',
gridTemplateColumns: 'repeat(auto-fit, minmax(350px, 1fr))',
gap: '2rem'
}}>
{/* Son Aktiviteler */}
<div className="premium-card">
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', marginBottom: '1.5rem' }}>
<h2 style={{ fontSize: '1.1rem', fontWeight: 700 }}>Son Aktiviteler</h2>
<button style={{
background: 'none',
border: 'none',
color: 'var(--primary)',
fontWeight: 600,
fontSize: '0.85rem',
cursor: 'pointer',
display: 'flex',
alignItems: 'center',
gap: '0.25rem'
}}>
Tümünü Gör <ArrowRight size={14} />
</button>
</div>
<div style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}>
{recentActivity.map((act, i) => (
<div key={i} style={{
display: 'flex',
alignItems: 'center',
gap: '1rem',
padding: '0.75rem',
background: 'var(--muted)',
borderRadius: '0.75rem'
}}>
<div style={{
width: '10px',
height: '10px',
borderRadius: '50%',
background: act.status === 'success' ? '#10b981' : act.status === 'danger' ? '#f43f5e' : '#3b82f6'
}} />
<div style={{ flex: 1 }}>
<p style={{ fontSize: '0.9rem', fontWeight: 600 }}>{act.title}</p>
<p style={{ fontSize: '0.8rem', color: 'var(--muted-foreground)' }}>{act.location}</p>
</div>
<span style={{ fontSize: '0.75rem', color: 'var(--muted-foreground)' }}>{act.date}</span>
</div>
))}
</div>
</div>
{/* Bekleyen Görevler / Notlar */}
<div className="premium-card" style={{ background: 'var(--secondary)', color: 'white' }}>
<h2 style={{ fontSize: '1.1rem', fontWeight: 700, marginBottom: '1.5rem' }}>Hatırlatıcılar</h2>
<div style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}>
<div style={{ background: 'rgba(255,255,255,0.1)', padding: '1rem', borderRadius: '0.75rem' }}>
<p style={{ fontSize: '0.9rem', fontWeight: 500 }}> Güneş Apt. için parça bekleniyor.</p>
</div>
<div style={{ background: 'rgba(255,255,255,0.1)', padding: '1rem', borderRadius: '0.75rem' }}>
<p style={{ fontSize: '0.9rem', fontWeight: 500 }}>📅 Yarınki bakım rotası hazırlandı.</p>
</div>
</div>
</div>
</div>
</main>
</div>
);
}
+214
View File
@@ -0,0 +1,214 @@
'use client';
import React, { useState } from 'react';
import {
Plus,
Search,
Calendar,
CheckCircle2,
Circle,
ChevronRight,
MoreVertical,
Factory
} from 'lucide-react';
export default function UretimPlani() {
const [activeTab, setActiveTab] = useState('active');
const productionPlans = [
{
id: 1,
proje: 'Koru Sitesi - Asansör 1',
bina: 'Batıkent, Ankara',
asama: 'Malzeme Temini',
yuzde: 35,
tarih: '15 Mayıs',
steps: ['Proje', 'Malzeme', 'Karkas', 'Ray', 'Motor', 'Kabin', 'Test']
},
{
id: 2,
proje: 'Mavi Plaza - Yük Asansörü',
bina: 'Çankaya, Ankara',
asama: 'Ray Montajı',
yuzde: 60,
tarih: '28 Nisan',
steps: ['Proje', 'Malzeme', 'Karkas', 'Ray', 'Motor', 'Kabin', 'Test']
},
];
return (
<div style={{ maxWidth: '1200px', margin: '0 auto' }}>
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', marginBottom: '2rem' }}>
<div>
<h1 style={{ fontSize: '1.75rem', fontWeight: 800, color: 'var(--secondary)' }}>Üretim Planlama</h1>
<p style={{ color: 'var(--muted-foreground)' }}>Yeni projelerin imalat ve montaj süreçlerini yönetin.</p>
</div>
<button className="btn-primary">
<Factory size={18} />
Yeni Üretim Planı Oluştur
</button>
</div>
<div style={{ display: 'flex', gap: '2rem', marginBottom: '2rem' }}>
<div style={{
flex: 1,
position: 'relative',
display: 'flex',
alignItems: 'center'
}}>
<Search size={18} style={{ position: 'absolute', left: '1rem', color: 'var(--muted-foreground)' }} />
<input
type="text"
placeholder="Proje veya bina ara..."
style={{
width: '100%',
padding: '0.75rem 1rem 0.75rem 2.5rem',
borderRadius: '0.75rem',
border: '1px solid var(--border)',
background: 'white'
}}
/>
</div>
<div style={{ display: 'flex', background: 'var(--muted)', padding: '0.25rem', borderRadius: '0.75rem' }}>
<button
onClick={() => setActiveTab('active')}
style={{
padding: '0.5rem 1.5rem',
borderRadius: '0.5rem',
border: 'none',
cursor: 'pointer',
background: activeTab === 'active' ? 'white' : 'transparent',
fontWeight: activeTab === 'active' ? 600 : 500,
boxShadow: activeTab === 'active' ? '0 2px 4px rgba(0,0,0,0.05)' : 'none'
}}
>
Aktif
</button>
<button
onClick={() => setActiveTab('completed')}
style={{
padding: '0.5rem 1.5rem',
borderRadius: '0.5rem',
border: 'none',
cursor: 'pointer',
background: activeTab === 'completed' ? 'white' : 'transparent',
fontWeight: activeTab === 'completed' ? 600 : 500,
boxShadow: activeTab === 'completed' ? '0 2px 4px rgba(0,0,0,0.05)' : 'none'
}}
>
Tamamlanan
</button>
</div>
</div>
<div style={{ display: 'flex', flexDirection: 'column', gap: '1.5rem' }}>
{productionPlans.map((plan) => (
<div key={plan.id} className="premium-card" style={{ padding: '1.5rem' }}>
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'flex-start', marginBottom: '1.5rem' }}>
<div>
<h3 style={{ fontSize: '1.1rem', fontWeight: 700 }}>{plan.proje}</h3>
<p style={{ fontSize: '0.85rem', color: 'var(--muted-foreground)', marginTop: '0.25rem' }}>{plan.bina}</p>
</div>
<div style={{ display: 'flex', alignItems: 'center', gap: '1rem' }}>
<div style={{ textAlign: 'right' }}>
<p style={{ fontSize: '0.75rem', color: 'var(--muted-foreground)' }}>Hedef Bitiş</p>
<p style={{ fontSize: '0.9rem', fontWeight: 600 }}>{plan.tarih}</p>
</div>
<button style={{ background: 'none', border: 'none', cursor: 'pointer', color: 'var(--muted-foreground)' }}>
<MoreVertical size={20} />
</button>
</div>
</div>
{/* Progress Aşamaları */}
<div style={{ display: 'flex', justifyContent: 'space-between', marginBottom: '2rem', position: 'relative' }}>
<div style={{
position: 'absolute',
top: '15px',
left: '0',
right: '0',
height: '2px',
background: 'var(--border)',
zIndex: 0
}} />
<div style={{
position: 'absolute',
top: '15px',
left: '0',
width: `${plan.yuzde}%`,
height: '2px',
background: 'var(--primary)',
zIndex: 0
}} />
{plan.steps.map((step, idx) => {
const isCompleted = idx < plan.steps.indexOf(plan.asama.split(' ')[0]) || plan.yuzde === 100;
const isCurrent = plan.asama.startsWith(step);
return (
<div key={step} style={{
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
gap: '0.5rem',
zIndex: 1,
width: '60px'
}}>
<div style={{
width: '32px',
height: '32px',
borderRadius: '50%',
background: isCompleted ? 'var(--primary)' : isCurrent ? 'white' : 'white',
border: isCurrent ? '2px solid var(--primary)' : '2px solid var(--border)',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
color: isCompleted ? 'white' : isCurrent ? 'var(--primary)' : 'var(--muted-foreground)'
}}>
{isCompleted ? <CheckCircle2 size={18} /> : <Circle size={10} fill={isCurrent ? 'var(--primary)' : 'none'} />}
</div>
<span style={{
fontSize: '0.7rem',
fontWeight: isCurrent ? 700 : 500,
color: isCurrent ? 'var(--secondary)' : 'var(--muted-foreground)',
textAlign: 'center'
}}>
{step}
</span>
</div>
);
})}
</div>
<div style={{
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center',
paddingTop: '1rem',
borderTop: '1px solid var(--border)'
}}>
<div style={{ display: 'flex', alignItems: 'center', gap: '0.5rem' }}>
<Calendar size={16} color="var(--muted-foreground)" />
<span style={{ fontSize: '0.85rem', color: 'var(--muted-foreground)' }}>Son güncelleme: Dün</span>
</div>
<button
style={{
background: 'none',
border: 'none',
color: 'var(--primary)',
fontWeight: 600,
display: 'flex',
alignItems: 'center',
gap: '0.25rem',
cursor: 'pointer'
}}
>
Planı Yönet <ChevronRight size={16} />
</button>
</div>
</div>
))}
</div>
</div>
);
}
+107
View File
@@ -0,0 +1,107 @@
'use client';
import React from 'react';
import { Building2, MapPin, Elevator, CreditCard, ChevronRight } from 'lucide-react';
import { motion } from 'framer-motion';
interface BuildingCardProps {
name: string;
address: string;
elevators: number;
balance: number;
status: 'active' | 'passive';
}
const BuildingCard = ({ name, address, elevators, balance, status }: BuildingCardProps) => {
return (
<motion.div
whileHover={{ y: -4 }}
className="premium-card"
style={{ cursor: 'pointer' }}
>
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'flex-start', marginBottom: '1rem' }}>
<div style={{
background: 'var(--secondary)15',
padding: '0.75rem',
borderRadius: '0.75rem',
color: 'var(--secondary)'
}}>
<Building2 size={24} />
</div>
<span style={{
fontSize: '0.75rem',
fontWeight: 600,
padding: '0.25rem 0.6rem',
borderRadius: '9999px',
background: status === 'active' ? '#10b98115' : '#f43f5e15',
color: status === 'active' ? '#10b981' : '#f43f5e'
}}>
{status === 'active' ? 'Aktif' : 'Pasif'}
</span>
</div>
<h3 style={{ fontSize: '1.1rem', fontWeight: 700, marginBottom: '0.25rem' }}>{name}</h3>
<div style={{ display: 'flex', alignItems: 'center', gap: '0.4rem', color: 'var(--muted-foreground)', fontSize: '0.85rem', marginBottom: '1.25rem' }}>
<MapPin size={14} />
<span className="truncate">{address}</span>
</div>
<div style={{
display: 'grid',
gridTemplateColumns: '1fr 1fr',
gap: '0.75rem',
padding: '1rem',
background: 'var(--muted)',
borderRadius: '0.75rem'
}}>
<div style={{ display: 'flex', flexDirection: 'column', gap: '0.2rem' }}>
<div style={{ display: 'flex', alignItems: 'center', gap: '0.4rem', color: 'var(--muted-foreground)', fontSize: '0.75rem' }}>
<Wrench size={12} />
<span>Asansör</span>
</div>
<span style={{ fontWeight: 700, fontSize: '0.9rem' }}>{elevators} Adet</span>
</div>
<div style={{ display: 'flex', flexDirection: 'column', gap: '0.2rem' }}>
<div style={{ display: 'flex', alignItems: 'center', gap: '0.4rem', color: 'var(--muted-foreground)', fontSize: '0.75rem' }}>
<CreditCard size={12} />
<span>Bakiye</span>
</div>
<span style={{
fontWeight: 700,
fontSize: '0.9rem',
color: balance > 0 ? '#f43f5e' : '#10b981'
}}>
{balance.toLocaleString('tr-TR')}
</span>
</div>
</div>
<div style={{
marginTop: '1.25rem',
display: 'flex',
justifyContent: 'flex-end',
borderTop: '1px solid var(--border)',
paddingTop: '0.75rem'
}}>
<button style={{
background: 'none',
border: 'none',
color: 'var(--primary)',
fontWeight: 600,
fontSize: '0.85rem',
display: 'flex',
alignItems: 'center',
gap: '0.25rem',
cursor: 'pointer'
}}>
Detayları Gör <ChevronRight size={16} />
</button>
</div>
</motion.div>
);
};
export default BuildingCard;
// Helper to use Wrench icon in the snippet
import { Wrench } from 'lucide-react';
+62
View File
@@ -0,0 +1,62 @@
'use client';
import React from 'react';
import { Bell, Search, Menu } from 'lucide-react';
const Header = () => {
return (
<header className="navbar">
<div style={{ display: 'flex', alignItems: 'center', gap: '1rem', flex: 1 }}>
<button className="md:hidden" style={{ background: 'none', border: 'none', cursor: 'pointer' }}>
<Menu size={24} />
</button>
<div style={{
position: 'relative',
width: '100%',
maxWidth: '400px',
display: 'flex',
alignItems: 'center'
}}>
<Search
size={18}
style={{ position: 'absolute', left: '1rem', color: 'var(--muted-foreground)' }}
/>
<input
type="text"
placeholder="Asansör veya bina ara..."
style={{
width: '100%',
padding: '0.6rem 1rem 0.6rem 2.5rem',
borderRadius: '0.75rem',
border: '1px solid var(--border)',
background: 'var(--muted)',
fontSize: '0.9rem',
outline: 'none'
}}
/>
</div>
</div>
<div style={{ display: 'flex', alignItems: 'center', gap: '1.25rem' }}>
<div style={{ position: 'relative', cursor: 'pointer' }}>
<Bell size={22} color="var(--muted-foreground)" />
<span style={{
position: 'absolute',
top: '-2px',
right: '-2px',
background: 'var(--primary)',
width: '8px',
height: '8px',
borderRadius: '50%',
border: '2px solid white'
}} />
</div>
<button className="btn-primary" style={{ padding: '0.5rem 1rem', fontSize: '0.85rem' }}>
Yeni Kayıt
</button>
</div>
</header>
);
};
export default Header;
+79
View File
@@ -0,0 +1,79 @@
'use client';
import React from 'react';
import Link from 'next/link';
import { usePathname } from 'next/navigation';
import {
LayoutDashboard,
Building2,
Wrench,
AlertTriangle,
PlusSquare
} from 'lucide-react';
const MobileNav = () => {
const pathname = usePathname();
const items = [
{ icon: LayoutDashboard, href: '/', label: 'Ana Sayfa' },
{ icon: Building2, href: '/binalar', label: 'Binalar' },
{ icon: PlusSquare, href: '/bakimlar/yeni', label: 'Yeni Bakım', primary: true },
{ icon: AlertTriangle, href: '/arizalar', label: 'Arızalar' },
{ icon: Wrench, href: '/uretim', label: 'Üretim' },
];
return (
<nav className="md:hidden" style={{
position: 'fixed',
bottom: 0,
left: 0,
right: 0,
background: 'rgba(255, 255, 255, 0.9)',
backdropFilter: 'blur(20px)',
borderTop: '1px solid var(--border)',
display: 'flex',
justifyContent: 'space-around',
alignItems: 'center',
padding: '0.6rem 0.5rem 1.5rem',
zIndex: 100
}}>
{items.map((item) => (
<Link
key={item.href}
href={item.href}
style={{
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
gap: '0.25rem',
textDecoration: 'none',
color: pathname === item.href ? 'var(--primary)' : 'var(--muted-foreground)',
position: 'relative'
}}
>
{item.primary ? (
<div style={{
background: 'var(--primary)',
width: '48px',
height: '48px',
borderRadius: '16px',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
color: 'white',
marginTop: '-2rem',
boxShadow: '0 4px 12px rgba(206, 5, 21, 0.3)'
}}>
<item.icon size={24} />
</div>
) : (
<item.icon size={22} color={pathname === item.href ? 'var(--primary)' : 'var(--muted-foreground)'} />
)}
<span style={{ fontSize: '0.65rem', fontWeight: 600 }}>{item.label}</span>
</Link>
))}
</nav>
);
};
export default MobileNav;
+71
View File
@@ -0,0 +1,71 @@
'use client';
import React from 'react';
import Link from 'next/link';
import { usePathname } from 'next/navigation';
import {
LayoutDashboard,
Building2,
Wrench,
AlertTriangle,
History,
Settings,
UserCircle,
Factory
} from 'lucide-react';
const Sidebar = () => {
const pathname = usePathname();
const navItems = [
{ name: 'Gözlem Paneli', href: '/', icon: LayoutDashboard },
{ name: 'Binalar & Asansörler', href: '/binalar', icon: Building2 },
{ name: 'Bakım Kayıtları', href: '/bakimlar', icon: History },
{ name: 'Arıza Talepleri', href: '/arizalar', icon: AlertTriangle },
{ name: 'Üretim Planlama', href: '/uretim', icon: Factory },
{ name: 'Teknisyenler', href: '/teknisyenler', icon: Wrench },
{ name: 'Ayarlar', href: '/ayarlar', icon: Settings },
];
return (
<aside className="sidebar">
<div style={{ marginBottom: '2.5rem', display: 'flex', alignItems: 'center', gap: '0.75rem' }}>
<div style={{
background: 'var(--primary)',
padding: '0.5rem',
borderRadius: '0.75rem',
display: 'flex',
alignItems: 'center',
justifyContent: 'center'
}}>
<Wrench size={24} color="white" />
</div>
<h2 style={{ fontSize: '1.25rem', fontWeight: 700, letterSpacing: '-0.02em' }}>
ASANSÖR<span style={{ color: 'var(--primary)' }}>TAKİP</span>
</h2>
</div>
<nav style={{ display: 'flex', flexDirection: 'column', gap: '0.25rem' }}>
{navItems.map((item) => (
<Link
key={item.href}
href={item.href}
className={`nav-item ${pathname === item.href ? 'active' : ''}`}
>
<item.icon size={20} />
<span style={{ fontWeight: 500 }}>{item.name}</span>
</Link>
))}
</nav>
<div style={{ marginTop: 'auto', paddingTop: '1rem', borderTop: '1px solid rgba(255,255,255,0.1)' }}>
<div className="nav-item">
<UserCircle size={20} />
<span style={{ fontWeight: 500 }}>Kenan Karaer</span>
</div>
</div>
</aside>
);
};
export default Sidebar;
+53
View File
@@ -0,0 +1,53 @@
'use client';
import React from 'react';
import { LucideIcon } from 'lucide-react';
import { motion } from 'framer-motion';
interface StatsCardProps {
title: string;
value: string | number;
icon: LucideIcon;
trend?: string;
color: string;
}
const StatsCard = ({ title, value, icon: Icon, trend, color }: StatsCardProps) => {
return (
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
className="premium-card"
style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}
>
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'flex-start' }}>
<div style={{
background: `${color}15`,
padding: '0.6rem',
borderRadius: '0.75rem',
color: color
}}>
<Icon size={24} />
</div>
{trend && (
<span style={{
fontSize: '0.75rem',
fontWeight: 600,
color: trend.startsWith('+') ? '#10b981' : '#f43f5e',
background: trend.startsWith('+') ? '#10b98115' : '#f43f5e15',
padding: '0.2rem 0.5rem',
borderRadius: '9999px'
}}>
{trend}
</span>
)}
</div>
<div>
<p style={{ color: 'var(--muted-foreground)', fontSize: '0.85rem', fontWeight: 500 }}>{title}</p>
<h3 style={{ fontSize: '1.75rem', fontWeight: 700, marginTop: '0.25rem' }}>{value}</h3>
</div>
</motion.div>
);
};
export default StatsCard;
+56
View File
@@ -0,0 +1,56 @@
import { CapacitorSQLite, SQLiteConnection, SQLiteDBConnection } from '@capacitor-community/sqlite';
import { supabase } from './supabase';
class LocalDB {
private sqlite: SQLiteConnection | null = null;
private db: SQLiteDBConnection | null = null;
async init() {
if (this.db) return;
this.sqlite = new SQLiteConnection(CapacitorSQLite);
this.db = await this.sqlite.createConnection('asansor_db', false, 'no-encryption', 1, false);
await this.db.open();
// Tabloları oluştur
const schema = `
CREATE TABLE IF NOT EXISTS bakimlar (
id TEXT PRIMARY KEY,
asansor_id TEXT,
tarih TEXT,
notlar TEXT,
is_synced INTEGER DEFAULT 0
);
`;
await this.db.execute(schema);
}
async saveBakim(bakim: any) {
await this.init();
const query = `INSERT INTO bakimlar (id, asansor_id, tarih, notlar, is_synced) VALUES (?, ?, ?, ?, 0)`;
await this.db?.run(query, [bakim.id, bakim.asansor_id, bakim.tarih, bakim.notlar]);
}
async sync() {
await this.init();
// Senkronize edilmemiş kayıtları getir
const result = await this.db?.query('SELECT * FROM bakimlar WHERE is_synced = 0');
if (result && result.values && result.values.length > 0) {
for (const row of result.values) {
const { error } = await supabase.from('bakim_kayitlari').insert({
id: row.id,
asansor_id: row.asansor_id,
tarih: row.tarih,
notlar: row.notlar
});
if (!error) {
await this.db?.run('UPDATE bakimlar SET is_synced = 1 WHERE id = ?', [row.id]);
}
}
}
}
}
export const localDB = new LocalDB();
+37
View File
@@ -0,0 +1,37 @@
interface SMSResponse {
success: boolean;
message: string;
data?: any;
}
/**
* NETGSM SMS Gönderim Servisi
* Not: Bu servis sunucu tarafında (Server Side) çağrılmalıdır veya API rotası üzerinden yönlendirilmelidir.
*/
export async function sendSMS(target: string, message: string): Promise<SMSResponse> {
const user = process.env.NETGSM_USER;
const pass = process.env.NETGSM_PASS;
const title = process.env.NETGSM_TITLE;
if (!user || !pass) {
console.error('NETGSM credentials are missing');
return { success: false, message: 'SMS servis ayarları eksik.' };
}
try {
const url = `https://api.netgsm.com.tr/sms/send/get/?usercode=${user}&password=${pass}&gsm=${target}&message=${encodeURIComponent(message)}&msgheader=${title}`;
const response = await fetch(url);
const result = await response.text();
// NETGSM genellikle "00" ile başlayan bir kod dönerse başarılı sayılır
if (result.startsWith('00')) {
return { success: true, message: 'SMS başarıyla gönderildi.', data: result };
} else {
return { success: false, message: `SMS gönderilemedi. Hata kodu: ${result}` };
}
} catch (error) {
console.error('SMS sending error:', error);
return { success: false, message: 'Sunucu hatası oluştu.' };
}
}
+6
View File
@@ -0,0 +1,6 @@
import { createClient } from '@supabase/supabase-js';
const supabaseUrl = process.env.NEXT_PUBLIC_SUPABASE_URL || '';
const supabaseAnonKey = process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY || '';
export const supabase = createClient(supabaseUrl, supabaseAnonKey);