Skip to content

Instantly share code, notes, and snippets.

@Thanood
Created December 13, 2016 18:54
Show Gist options
  • Save Thanood/65a451de2e2d4a37602057c1af840ae8 to your computer and use it in GitHub Desktop.
Save Thanood/65a451de2e2d4a37602057c1af840ae8 to your computer and use it in GitHub Desktop.
Aurelia-Materialize bridge checkbox bind matcher
<template>
<p>
<md-checkbox md-model.bind="{ id: 0, name: 'Motherboard' }" md-matcher.bind="productMatcher" md-checked.bind="selectedProducts ">
Motherboard
</md-checkbox>
</p>
<p>
<md-checkbox md-model.bind="{ id: 1, name: 'CPU' }" md-matcher.bind="productMatcher" md-checked.bind="selectedProducts ">
CPU
</md-checkbox>
</p>
<p>
<md-checkbox md-model.bind="{ id: 2, name: 'Memory' }" md-matcher.bind="productMatcher" md-checked.bind="selectedProducts ">
Memory
</md-checkbox>
</p>
<p>
Selected products:
<ul>
<li repeat.for="product of selectedProducts">${product.name}</li>
</ul>
</p>
</template>
export class App {
selectedProducts = [
{ id: 1, name: 'CPU' },
{ id: 2, name: 'Memory' }
];
productMatcher = (a, b) => a.id === b.id;
}
export class StringifyValueConverter {
toView(value) {
return JSON.stringify(value);
}
}
<!doctype html>
<html>
<head>
<title>Aurelia</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body aurelia-app="main">
<h1>Loading...</h1>
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.6/system.js"></script>
<script src="https://rawgit.com/aurelia-ui-toolkits/aurelia-materialize-bundles/0.20.2/config2.js"></script>
<script>
System.import('aurelia-bootstrapper');
</script>
</body>
</html>
/*******************************************************************************
* The following two lines enable async/await without using babel's
* "runtime" transformer. Uncomment the lines if you intend to use async/await.
*
* More info here: https://github.com/jdanyow/aurelia-plunker/issues/2
*/
//import regeneratorRuntime from 'babel-runtime/regenerator';
//window.regeneratorRuntime = regeneratorRuntime;
/******************************************************************************/
import 'materialize';
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging()
.plugin('aurelia-materialize-bridge', bridge => bridge.useAll() );
aurelia.start().then(a => a.setRoot());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment