You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jade_gui/lib/functions/partitioning/auto.dart

256 lines
9.1 KiB
Dart

import 'dart:async';
import 'dart:io';
import 'package:flutter/material.dart';
Future<void> getDiskInfo(
currPartition, setState, runningInfo, setRunningInfo) async {
if (!runningInfo) {
final String partitionInfo = await Process.run(
"/opt/jade_gui/scripts/getDiskInfo.sh", ['$currPartition'])
.then((ProcessResult results) {
return results.stdout;
});
setState(partitionInfo);
setRunningInfo(true);
}
}
Future<void> getDisk(setState, runningDisk, setRunningDisk) async {
if (!runningDisk) {
final String disks = await Process.run(
"/opt/jade_gui/scripts/getDisks.sh", [],
runInShell: true)
.then((ProcessResult result) {
return result.stdout;
});
setState(disks);
setRunningDisk(true);
}
}
Widget diskTemplate(disk, setDisk, setDiskInfo, runningInfo, setRunningInfo) {
if (disk != "") {
return Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Container(
padding: const EdgeInsets.all(2),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(5),
border: Border.all(color: Colors.black45),
color: const Color.fromARGB(255, 30, 30, 30),
),
child: ElevatedButton(
onPressed: () {
setDisk(disk);
getDiskInfo(disk, setDiskInfo, runningInfo, setRunningInfo);
},
style: TextButton.styleFrom(
primary: Colors.white,
backgroundColor: const Color.fromARGB(0, 169, 0, 255),
shadowColor: const Color.fromARGB(0, 169, 0, 255),
padding: const EdgeInsets.all(10),
),
child: Text(
disk,
style: const TextStyle(
fontWeight: FontWeight.bold,
),
),
),
),
const SizedBox(height: 10),
],
);
} else {
return const SizedBox(height: 0);
}
}
Widget autoPartitioning(
disks,
setState,
setDisk,
next,
setDiskInfo,
selectedPartition,
diskInfo,
runningPart,
setRunningPart,
runningInfo,
setRunningInfo,
setManual) {
return FutureBuilder(
future: getDisk(setState, runningPart, setRunningPart),
builder: (BuildContext context, AsyncSnapshot snapshot) {
return Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
const Text(
'Please select a disk to install to',
style: TextStyle(
fontSize: 50,
fontWeight: FontWeight.bold,
color: Color.fromARGB(255, 169, 0, 255)),
),
const SizedBox(height: 20),
Expanded(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
const SizedBox(width: 100),
Expanded(
child: Container(
padding: const EdgeInsets.all(10),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(10),
border: Border.all(color: Colors.black),
color: const Color.fromARGB(255, 30, 30, 30),
boxShadow: const [
BoxShadow(
color: Colors.black,
blurRadius: 2,
offset: Offset(-2, 3),
),
],
),
child: SingleChildScrollView(
primary: false,
child: Column(
children: disks
.split('\n')
.map<Widget>(
(disk) => diskTemplate(disk, setDisk, setDiskInfo,
runningInfo, setRunningInfo),
)
.toList(),
),
),
),
),
const SizedBox(width: 100),
Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
Container(
padding: const EdgeInsets.all(20),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(10),
border: Border.all(color: Colors.black),
color: const Color.fromARGB(255, 30, 30, 30),
boxShadow: const [
BoxShadow(
color: Colors.black,
blurRadius: 2,
offset: Offset(-2, 3),
),
],
),
child: Column(
children: [
const Text(
'Currently chosen Disk: ',
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
color: Color.fromARGB(255, 169, 0, 255),
),
),
const SizedBox(height: 10),
Text(
selectedPartition,
style: const TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
color: Color.fromARGB(255, 169, 0, 255),
),
),
const SizedBox(height: 5),
Text(
'Size: $diskInfo',
style: const TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
color: Color.fromARGB(255, 169, 0, 255),
),
),
const SizedBox(height: 5),
const Image(image: AssetImage('assets/disk.png')),
const SizedBox(height: 10),
Container(
padding: const EdgeInsets.all(2),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(5),
border: Border.all(color: Colors.black45),
color: const Color.fromARGB(255, 30, 30, 30),
),
child: ElevatedButton(
onPressed: () {
setManual(true);
},
style: TextButton.styleFrom(
primary: Colors.white,
backgroundColor:
const Color.fromARGB(0, 169, 0, 255),
shadowColor:
const Color.fromARGB(0, 169, 0, 255),
padding: const EdgeInsets.all(10),
),
child: const Text(
"Manual Partitioning",
style: TextStyle(
fontWeight: FontWeight.bold,
),
),
),
),
],
),
),
],
),
const SizedBox(width: 40),
],
),
),
const SizedBox(height: 20),
const SizedBox(width: 60),
Column(
mainAxisAlignment: MainAxisAlignment.end,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.end,
children: [
Column(
children: [
TextButton(
onPressed: () {
next();
},
child: const Text(
'Next',
),
style: TextButton.styleFrom(
primary: Colors.white,
backgroundColor:
const Color.fromARGB(255, 169, 0, 255),
minimumSize: const Size(100, 50),
padding: const EdgeInsets.all(10),
),
),
const SizedBox(height: 10),
],
),
const SizedBox(width: 30),
],
),
const SizedBox(height: 7)
],
),
],
);
},
);
}